homa 0.16__py3-none-any.whl → 0.18__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of homa might be problematic. Click here for more details.
- homa/helpers.py +17 -15
- homa/repositories/RandomNameRepository.py +6 -8
- homa/repositories/RandomTextRepository.py +2 -4
- homa/wordlists/feminine.txt +100 -0
- homa/wordlists/masculine.txt +100 -0
- homa/wordlists/surnames.txt +100 -0
- homa/wordlists/titles.txt +225 -0
- {homa-0.16.dist-info → homa-0.18.dist-info}/METADATA +3 -1
- homa-0.18.dist-info/RECORD +17 -0
- homa-0.16.dist-info/RECORD +0 -13
- {homa-0.16.dist-info → homa-0.18.dist-info}/LICENSE +0 -0
- {homa-0.16.dist-info → homa-0.18.dist-info}/WHEEL +0 -0
- {homa-0.16.dist-info → homa-0.18.dist-info}/top_level.txt +0 -0
homa/helpers.py
CHANGED
|
@@ -2,12 +2,28 @@ import random
|
|
|
2
2
|
import math
|
|
3
3
|
import re
|
|
4
4
|
import os
|
|
5
|
+
import pkg_resources
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
def resource(name: str):
|
|
9
|
+
"""
|
|
10
|
+
The function `resource` takes a string `name` as input and returns the filename of a resource in the
|
|
11
|
+
"homa" package.
|
|
12
|
+
|
|
13
|
+
:param name: The `name` parameter in the `resource` function is a string that represents the name of
|
|
14
|
+
the resource file you want to retrieve the filename for using `pkg_resources.resource_filename`
|
|
15
|
+
function
|
|
16
|
+
:type name: str
|
|
17
|
+
:return: The `resource` function is returning the filename of the specified resource within the
|
|
18
|
+
"homa" package using `pkg_resources.resource_filename`.
|
|
19
|
+
"""
|
|
20
|
+
return pkg_resources.resource_filename("homa", name)
|
|
5
21
|
|
|
6
22
|
|
|
7
23
|
def replaceVowels(raw: str) -> str:
|
|
8
24
|
"""
|
|
9
25
|
The function `replaceVowels` takes a string input and replaces all vowels with random vowels.
|
|
10
|
-
|
|
26
|
+
|
|
11
27
|
:param raw: The `replaceVowels` function takes a string `raw` as input and replaces all vowels (a,
|
|
12
28
|
o, i, e, u) in the string with a random vowel using the `randomVowel` function
|
|
13
29
|
:type raw: str
|
|
@@ -83,20 +99,6 @@ def oneOf(values: list) -> any:
|
|
|
83
99
|
return values[randint(0, len(values))]
|
|
84
100
|
|
|
85
101
|
|
|
86
|
-
def root(path="") -> str:
|
|
87
|
-
"""
|
|
88
|
-
The `root` function returns the absolute path of the directory containing the current script file,
|
|
89
|
-
with an optional additional path appended to it.
|
|
90
|
-
|
|
91
|
-
:param path: The `path` parameter in the `root` function is a string that represents the relative
|
|
92
|
-
path from the current file's directory to another directory or file. It is used to construct the
|
|
93
|
-
full absolute path by appending it to the directory of the current file
|
|
94
|
-
:return: The function `root(path)` returns the absolute path of the directory containing the current
|
|
95
|
-
Python script file (__file__) concatenated with the provided `path` argument.
|
|
96
|
-
"""
|
|
97
|
-
return os.path.dirname(os.path.abspath(__file__)) + "/" + path
|
|
98
|
-
|
|
99
|
-
|
|
100
102
|
def isVowel(letter: str) -> bool:
|
|
101
103
|
"""
|
|
102
104
|
This Python function checks if a given letter is a vowel.
|
|
@@ -2,21 +2,19 @@ from random import shuffle
|
|
|
2
2
|
|
|
3
3
|
from ..helpers import fileAsArray
|
|
4
4
|
from ..helpers import oneOf
|
|
5
|
-
from ..helpers import root
|
|
6
5
|
from ..helpers import replaceVowels
|
|
6
|
+
from ..helpers import resource
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
class RandomNameRepository:
|
|
10
10
|
def __init__(self) -> None:
|
|
11
11
|
self.__masculine_firstnames = fileAsArray(
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
resource("wordlists/masculine.txt"))
|
|
13
|
+
|
|
14
14
|
self.__feminine_firstnames = fileAsArray(
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
self.__surnames = fileAsArray(
|
|
18
|
-
root("wordlists/names/surnames.txt")
|
|
19
|
-
)
|
|
15
|
+
resource("wordlists/feminine.txt"))
|
|
16
|
+
|
|
17
|
+
self.__surnames = fileAsArray(resource("wordlists/surnames.txt"))
|
|
20
18
|
|
|
21
19
|
shuffle(self.__masculine_firstnames)
|
|
22
20
|
shuffle(self.__feminine_firstnames)
|
|
@@ -4,15 +4,13 @@ import random
|
|
|
4
4
|
from ..helpers import randint
|
|
5
5
|
from ..helpers import oneOf
|
|
6
6
|
from ..helpers import fileAsArray
|
|
7
|
-
from ..helpers import
|
|
7
|
+
from ..helpers import resource
|
|
8
8
|
from ..helpers import replaceVowels
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
class RandomTextRepository:
|
|
12
12
|
def __init__(self) -> None:
|
|
13
|
-
self.titles = fileAsArray(
|
|
14
|
-
root("wordlists/text/titles.txt")
|
|
15
|
-
)
|
|
13
|
+
self.titles = fileAsArray(resource("wordlists/titles.txt"))
|
|
16
14
|
random.shuffle(self.titles)
|
|
17
15
|
|
|
18
16
|
def token(self, lowerBound: int = 4, upperBound: int = 14):
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
Mary
|
|
2
|
+
Patricia
|
|
3
|
+
Jennifer
|
|
4
|
+
Linda
|
|
5
|
+
Elizabeth
|
|
6
|
+
Barbara
|
|
7
|
+
Susan
|
|
8
|
+
Jessica
|
|
9
|
+
Sarah
|
|
10
|
+
Karen
|
|
11
|
+
Lisa
|
|
12
|
+
Nancy
|
|
13
|
+
Betty
|
|
14
|
+
Sandra
|
|
15
|
+
Margaret
|
|
16
|
+
Ashley
|
|
17
|
+
Kimberly
|
|
18
|
+
Emily
|
|
19
|
+
Donna
|
|
20
|
+
Michelle
|
|
21
|
+
Carol
|
|
22
|
+
Amanda
|
|
23
|
+
Melissa
|
|
24
|
+
Deborah
|
|
25
|
+
Stephanie
|
|
26
|
+
Dorothy
|
|
27
|
+
Rebecca
|
|
28
|
+
Sharon
|
|
29
|
+
Laura
|
|
30
|
+
Cynthia
|
|
31
|
+
Amy
|
|
32
|
+
Kathleen
|
|
33
|
+
Angela
|
|
34
|
+
Shirley
|
|
35
|
+
Brenda
|
|
36
|
+
Emma
|
|
37
|
+
Anna
|
|
38
|
+
Pamela
|
|
39
|
+
Nicole
|
|
40
|
+
Samantha
|
|
41
|
+
Katherine
|
|
42
|
+
Christine
|
|
43
|
+
Helen
|
|
44
|
+
Debra
|
|
45
|
+
Rachel
|
|
46
|
+
Carolyn
|
|
47
|
+
Janet
|
|
48
|
+
Maria
|
|
49
|
+
Catherine
|
|
50
|
+
Heather
|
|
51
|
+
Diane
|
|
52
|
+
Olivia
|
|
53
|
+
Julie
|
|
54
|
+
Joyce
|
|
55
|
+
Victoria
|
|
56
|
+
Ruth
|
|
57
|
+
Virginia
|
|
58
|
+
Lauren
|
|
59
|
+
Kelly
|
|
60
|
+
Christina
|
|
61
|
+
Joan
|
|
62
|
+
Evelyn
|
|
63
|
+
Judith
|
|
64
|
+
Andrea
|
|
65
|
+
Hannah
|
|
66
|
+
Megan
|
|
67
|
+
Cheryl
|
|
68
|
+
Jacqueline
|
|
69
|
+
Martha
|
|
70
|
+
Madison
|
|
71
|
+
Teresa
|
|
72
|
+
Gloria
|
|
73
|
+
Sara
|
|
74
|
+
Janice
|
|
75
|
+
Ann
|
|
76
|
+
Kathryn
|
|
77
|
+
Abigail
|
|
78
|
+
Sophia
|
|
79
|
+
Frances
|
|
80
|
+
Jean
|
|
81
|
+
Alice
|
|
82
|
+
Judy
|
|
83
|
+
Isabella
|
|
84
|
+
Julia
|
|
85
|
+
Grace
|
|
86
|
+
Amber
|
|
87
|
+
Denise
|
|
88
|
+
Danielle
|
|
89
|
+
Marilyn
|
|
90
|
+
Beverly
|
|
91
|
+
Charlotte
|
|
92
|
+
Natalie
|
|
93
|
+
Theresa
|
|
94
|
+
Diana
|
|
95
|
+
Brittany
|
|
96
|
+
Doris
|
|
97
|
+
Kayla
|
|
98
|
+
Alexis
|
|
99
|
+
Lori
|
|
100
|
+
Marie
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
James
|
|
2
|
+
Robert
|
|
3
|
+
John
|
|
4
|
+
Michael
|
|
5
|
+
David
|
|
6
|
+
William
|
|
7
|
+
Richard
|
|
8
|
+
Joseph
|
|
9
|
+
Thomas
|
|
10
|
+
Christopher
|
|
11
|
+
Charles
|
|
12
|
+
Daniel
|
|
13
|
+
Matthew
|
|
14
|
+
Anthony
|
|
15
|
+
Mark
|
|
16
|
+
Donald
|
|
17
|
+
Steven
|
|
18
|
+
Andrew
|
|
19
|
+
Paul
|
|
20
|
+
Joshua
|
|
21
|
+
Kenneth
|
|
22
|
+
Kevin
|
|
23
|
+
Brian
|
|
24
|
+
George
|
|
25
|
+
Timothy
|
|
26
|
+
Ronald
|
|
27
|
+
Jason
|
|
28
|
+
Edward
|
|
29
|
+
Jeffrey
|
|
30
|
+
Ryan
|
|
31
|
+
Jacob
|
|
32
|
+
Gary
|
|
33
|
+
Nicholas
|
|
34
|
+
Eric
|
|
35
|
+
Jonathan
|
|
36
|
+
Stephen
|
|
37
|
+
Larry
|
|
38
|
+
Justin
|
|
39
|
+
Scott
|
|
40
|
+
Brandon
|
|
41
|
+
Benjamin
|
|
42
|
+
Samuel
|
|
43
|
+
Gregory
|
|
44
|
+
Alexander
|
|
45
|
+
Patrick
|
|
46
|
+
Frank
|
|
47
|
+
Raymond
|
|
48
|
+
Jack
|
|
49
|
+
Dennis
|
|
50
|
+
Jerry
|
|
51
|
+
Tyler
|
|
52
|
+
Aaron
|
|
53
|
+
Jose
|
|
54
|
+
Adam
|
|
55
|
+
Nathan
|
|
56
|
+
Henry
|
|
57
|
+
Zachary
|
|
58
|
+
Douglas
|
|
59
|
+
Peter
|
|
60
|
+
Kyle
|
|
61
|
+
Noah
|
|
62
|
+
Ethan
|
|
63
|
+
Jeremy
|
|
64
|
+
Walter
|
|
65
|
+
Christian
|
|
66
|
+
Keith
|
|
67
|
+
Roger
|
|
68
|
+
Terry
|
|
69
|
+
Austin
|
|
70
|
+
Sean
|
|
71
|
+
Gerald
|
|
72
|
+
Carl
|
|
73
|
+
Harold
|
|
74
|
+
Dylan
|
|
75
|
+
Arthur
|
|
76
|
+
Lawrence
|
|
77
|
+
Jordan
|
|
78
|
+
Jesse
|
|
79
|
+
Bryan
|
|
80
|
+
Billy
|
|
81
|
+
Bruce
|
|
82
|
+
Gabriel
|
|
83
|
+
Joe
|
|
84
|
+
Logan
|
|
85
|
+
Alan
|
|
86
|
+
Juan
|
|
87
|
+
Albert
|
|
88
|
+
Willie
|
|
89
|
+
Elijah
|
|
90
|
+
Wayne
|
|
91
|
+
Randy
|
|
92
|
+
Vincent
|
|
93
|
+
Mason
|
|
94
|
+
Roy
|
|
95
|
+
Ralph
|
|
96
|
+
Bobby
|
|
97
|
+
Russell
|
|
98
|
+
Bradley
|
|
99
|
+
Philip
|
|
100
|
+
Eugene
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
Smith
|
|
2
|
+
Johnson
|
|
3
|
+
Williams
|
|
4
|
+
Brown
|
|
5
|
+
Jones
|
|
6
|
+
Miller
|
|
7
|
+
Davis
|
|
8
|
+
Garcia
|
|
9
|
+
Rodriguez
|
|
10
|
+
Wilson
|
|
11
|
+
Martinez
|
|
12
|
+
Anderson
|
|
13
|
+
Taylor
|
|
14
|
+
Thomas
|
|
15
|
+
Hernandez
|
|
16
|
+
Moore
|
|
17
|
+
Martin
|
|
18
|
+
Jackson
|
|
19
|
+
Thompson
|
|
20
|
+
White
|
|
21
|
+
Lopez
|
|
22
|
+
Lee
|
|
23
|
+
Gonzalez
|
|
24
|
+
Harris
|
|
25
|
+
Clark
|
|
26
|
+
Lewis
|
|
27
|
+
Robinson
|
|
28
|
+
Walker
|
|
29
|
+
Perez
|
|
30
|
+
Hall
|
|
31
|
+
Young
|
|
32
|
+
Allen
|
|
33
|
+
Sanchez
|
|
34
|
+
Wright
|
|
35
|
+
King
|
|
36
|
+
Scott
|
|
37
|
+
Green
|
|
38
|
+
Baker
|
|
39
|
+
Adams
|
|
40
|
+
Nelson
|
|
41
|
+
Hill
|
|
42
|
+
Ramirez
|
|
43
|
+
Campbell
|
|
44
|
+
Mitchell
|
|
45
|
+
Roberts
|
|
46
|
+
Carter
|
|
47
|
+
Phillips
|
|
48
|
+
Evans
|
|
49
|
+
Turner
|
|
50
|
+
Torres
|
|
51
|
+
Parker
|
|
52
|
+
Collins
|
|
53
|
+
Edwards
|
|
54
|
+
Stewart
|
|
55
|
+
Flores
|
|
56
|
+
Morris
|
|
57
|
+
Nguyen
|
|
58
|
+
Murphy
|
|
59
|
+
Rivera
|
|
60
|
+
Cook
|
|
61
|
+
Rogers
|
|
62
|
+
Morgan
|
|
63
|
+
Peterson
|
|
64
|
+
Cooper
|
|
65
|
+
Reed
|
|
66
|
+
Bailey
|
|
67
|
+
Bell
|
|
68
|
+
Gomez
|
|
69
|
+
Kelly
|
|
70
|
+
Howard
|
|
71
|
+
Ward
|
|
72
|
+
Cox
|
|
73
|
+
Diaz
|
|
74
|
+
Richardson
|
|
75
|
+
Wood
|
|
76
|
+
Watson
|
|
77
|
+
Brooks
|
|
78
|
+
Bennett
|
|
79
|
+
Gray
|
|
80
|
+
James
|
|
81
|
+
Reyes
|
|
82
|
+
Cruz
|
|
83
|
+
Hughes
|
|
84
|
+
Price
|
|
85
|
+
Myers
|
|
86
|
+
Long
|
|
87
|
+
Foster
|
|
88
|
+
Sanders
|
|
89
|
+
Ross
|
|
90
|
+
Morales
|
|
91
|
+
Powell
|
|
92
|
+
Sullivan
|
|
93
|
+
Russell
|
|
94
|
+
Ortiz
|
|
95
|
+
Jenkins
|
|
96
|
+
Gutierrez
|
|
97
|
+
Perry
|
|
98
|
+
Butler
|
|
99
|
+
Barnes
|
|
100
|
+
Fisher
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
‘A landmark moment’: scientists use AI to design antibodies from scratch
|
|
2
|
+
How to stop ‘passing the harasser’: universities urged to join information-sharing scheme
|
|
3
|
+
Bird-flu threat disrupts Antarctic penguin studies
|
|
4
|
+
China’s giant underground neutrino lab prepares to probe cosmic mysteries
|
|
5
|
+
First US drug approved for a liver disease surging around the world
|
|
6
|
+
Ditching ‘Anthropocene’: why ecologists say the term still matters
|
|
7
|
+
More than 4000 plastic chemicals are hazardous report finds
|
|
8
|
+
Killer whales have menopause. Now scientists think they know why
|
|
9
|
+
Why are so many young people getting cancer? What the data say
|
|
10
|
+
Chatbot AI makes racist judgements on the basis of dialect
|
|
11
|
+
Did ‘alien’ debris hit Earth? Startling claim sparks row at scientific meeting
|
|
12
|
+
Ancient malaria genome from Roman skeleton hints at disease’s history
|
|
13
|
+
Deadly brain cancer shrinks after CAR-T therapy — but for how long is unclear
|
|
14
|
+
Massive public-health experiment sends vaccination rates soaring
|
|
15
|
+
How OpenAI’s text-to-video tool Sora could change science – and society
|
|
16
|
+
China–US climate collaboration concerns as Xie and Kerry step down
|
|
17
|
+
Biden seeks to boost science funding — but his budget faces an ominous future
|
|
18
|
+
First cell therapy for solid tumours heads to the clinic: what it means for cancer treatment
|
|
19
|
+
The science of Oppenheimer: meet the Oscar-winning movie’s specialist advisers
|
|
20
|
+
Blockbuster obesity drug leads to better health in people with HIV
|
|
21
|
+
Indigenous Australian fire-stick farming began at least 11000 years ago
|
|
22
|
+
Superconductivity scandal: the inside story of deception in a rising star’s physics lab
|
|
23
|
+
China promises more money for science in 2024
|
|
24
|
+
Could AI-designed proteins be weaponized? Scientists lay out safety guidelines
|
|
25
|
+
AI-generated images and video are here: how could they shape research?
|
|
26
|
+
Meet the real-life versions of Dune’s epic sandworms
|
|
27
|
+
Got milk? Meet the weird amphibian that nurses its young
|
|
28
|
+
‘Despair’: Argentinian researchers protest as president begins dismantling science
|
|
29
|
+
China has a list of suspect journals and it’s just been updated
|
|
30
|
+
These tiny fish combine electric pulses to probe the environment
|
|
31
|
+
Will these reprogrammed elephant cells ever make a mammoth?
|
|
32
|
+
Geologists reject the Anthropocene as Earth’s new epoch — after 15 years of debate
|
|
33
|
+
Trump versus Biden: what the rematch could mean for three key science issues
|
|
34
|
+
Landmark study links microplastics to serious health problems
|
|
35
|
+
Oldest stone tools in Europe hint at ancient humans’ route there
|
|
36
|
+
How five crucial elections in 2024 could shape climate action for decades
|
|
37
|
+
Meningitis could be behind ‘mystery illness’ reports in Nigeria
|
|
38
|
+
What science says about hybrid working — and how to make it a success
|
|
39
|
+
Genetics solves mystery of rare brown pandas after 40 years
|
|
40
|
+
Organoids grown from amniotic fluid could shed light on rare diseases
|
|
41
|
+
Millions of research papers at risk of disappearing from the Internet
|
|
42
|
+
Oldest known animal sex chromosome evolved in octopuses 380 million years ago
|
|
43
|
+
How heavy is a neutrino? Race to weigh mysterious particle heats up
|
|
44
|
+
Brazil’s record dengue surge: why a vaccine campaign is unlikely to stop it
|
|
45
|
+
This methane-sniffing satellite will leave climate polluters nowhere to hide
|
|
46
|
+
Giant plume of plasma on the Sun’s surface and more — February’s best science images
|
|
47
|
+
Two giant US telescopes threatened by funding cap
|
|
48
|
+
Is ChatGPT making scientists hyper-productive? The highs and lows of using AI
|
|
49
|
+
Could this one-time ‘epigenetic’ treatment control cholesterol?
|
|
50
|
+
Can non-profits beat antibiotic resistance and soaring drug costs?
|
|
51
|
+
‘Epigenetic’ editing cuts cholesterol in mice
|
|
52
|
+
How humans lost their tails — and why the discovery took 2.5 years to publish
|
|
53
|
+
How dwarf galaxies lit up the Universe after the Big Bang
|
|
54
|
+
Private Moon lander is dying — it scored some wins for science
|
|
55
|
+
Japanese Moon-lander unexpectedly survives the lunar night
|
|
56
|
+
Influential abortion-pill studies retracted: the science behind the decision
|
|
57
|
+
Audio long read: Chimpanzees are dying from our colds — these scientists are trying to save them
|
|
58
|
+
‘Breakthrough’ allergy drug: injection protects against severe food reactions
|
|
59
|
+
How to find meaning in your science career: six expert tips
|
|
60
|
+
Giant ‘bubble’ in space could be source of powerful cosmic rays
|
|
61
|
+
‘Incomprehensible’: scientists in France decry €900-million cut to research
|
|
62
|
+
The surprising link between gut bacteria and devastating eye diseases
|
|
63
|
+
Earthquakes are most deadly in these unexpected countries
|
|
64
|
+
Neuralink brain chip: advance sparks safety and secrecy concerns
|
|
65
|
+
First private Moon lander touches down on lunar surface to make history
|
|
66
|
+
‘All of Us’ genetics chart stirs unease over controversial depiction of race
|
|
67
|
+
How whales sing without drowning an anatomical mystery solved
|
|
68
|
+
CAR-T therapy for multiple sclerosis enters US trials for first time
|
|
69
|
+
Supernova mystery solved: JWST reveals the fate of an iconic stellar explosion
|
|
70
|
+
Why are we nice? Altruism’s origins are put to the test
|
|
71
|
+
Scientists under arrest: the researchers taking action over climate change
|
|
72
|
+
Buried microplastics complicate efforts to define the Anthropocene
|
|
73
|
+
Drug-resistant microbes: ‘brain drain’ is derailing the fight to stop them
|
|
74
|
+
The life and gruesome death of a bog man revealed after 5000 years
|
|
75
|
+
Why citizen scientists are gathering DNA from hundreds of lakes — on the same day
|
|
76
|
+
MEGA-CRISPR tool gives a power boost to cancer-fighting cells
|
|
77
|
+
Mind-reading devices are revealing the brain’s secrets
|
|
78
|
+
200 years of naming dinosaurs: scientists call for overhaul of antiquated system
|
|
79
|
+
The decimal point is 150 years older than historians thought
|
|
80
|
+
Ambitious survey of human diversity yields millions of undiscovered genetic variants
|
|
81
|
+
What the EU’s tough AI law means for research and ChatGPT
|
|
82
|
+
Just 5 women have won a top maths prize in the past 90 years
|
|
83
|
+
Move over CRISPR: RNA-editing therapies pick up steam
|
|
84
|
+
Smoking changes your immune system even years after quitting
|
|
85
|
+
The future of precision cancer therapy might be to try everything
|
|
86
|
+
This new map of the Universe suggests dark matter shaped the cosmos
|
|
87
|
+
Introducing meat–rice: grain with added muscles beefs up protein
|
|
88
|
+
Smoking scars the immune system for years after quitting
|
|
89
|
+
Why is Latin America on fire? It’s not just climate change scientists say
|
|
90
|
+
Largest post-pandemic survey finds trust in scientists is high
|
|
91
|
+
Culture wars are raging on US campuses. Will they affect research?
|
|
92
|
+
Indonesian election promises boost to research funding — no matter who wins
|
|
93
|
+
Private Moon launch a success! But will the craft land safely on the lunar surface?
|
|
94
|
+
How journals are fighting back against a wave of questionable images
|
|
95
|
+
China conducts first nationwide review of retractions and research misconduct
|
|
96
|
+
Early dementia diagnosis: blood proteins reveal at-risk people
|
|
97
|
+
Apple Vision Pro: what does it mean for scientists?
|
|
98
|
+
Why we need to rethink how we talk about cancer
|
|
99
|
+
‘Geometry can be very simple but totally deep’: meet top maths prizewinner Claire Voisin
|
|
100
|
+
Glow way! Bioluminescent houseplant hits US market for first time
|
|
101
|
+
Climatologist Michael Mann wins defamation case: what it means for scientists
|
|
102
|
+
How to test a Moon landing from Earth
|
|
103
|
+
Mirror-image molecules separated using workhorse of chemistry
|
|
104
|
+
US and China likely to delay renewal of key science pact again
|
|
105
|
+
Why a cheap effective treatment for diarrhoea is underused
|
|
106
|
+
The new car batteries that could power the electric vehicle revolution
|
|
107
|
+
Cancer’s power harnessed — lymphoma mutations supercharge T cells
|
|
108
|
+
Turbocharged CAR-T cells melt tumours in mice — using a trick from cancer cells
|
|
109
|
+
The Solar System has a new ocean — it’s buried in a small Saturn moon
|
|
110
|
+
Fake research papers flagged by analysing authorship trends
|
|
111
|
+
Santorini’s volcanic past: underwater clues reveal giant prehistoric eruption
|
|
112
|
+
EU unveils controversial climate target: what scientists think
|
|
113
|
+
CERN’s supercollider plan: $17-billion ‘Higgs factory’ would dwarf LHC
|
|
114
|
+
AI chatbot shows surprising talent for predicting chemical properties and reactions
|
|
115
|
+
The world has warmed 1.5 °C according to 300-year-old sponges
|
|
116
|
+
JWST is most in-demand telescope ever — leaving many astronomers in the cold
|
|
117
|
+
First passages of rolled-up Herculaneum scroll revealed
|
|
118
|
+
Cervical cancer could be eliminated: here’s how
|
|
119
|
+
Elon Musk’s Neuralink brain chip: what scientists think of first human trial
|
|
120
|
+
Israel is flooding Gaza’s tunnel network: scientists assess the risks
|
|
121
|
+
Crackdown on skin-colour bias by fingertip oxygen sensors is coming hints FDA
|
|
122
|
+
Building used by Marie Curie will be dismantled to erect cancer centre
|
|
123
|
+
Number of Black UK professors rises by 25% in one year
|
|
124
|
+
This AI learnt language by seeing the world through a baby’s eyes
|
|
125
|
+
Why autoimmune disease is more common in women: X chromosome holds clues
|
|
126
|
+
Measles outbreaks cause alarm: what the data say
|
|
127
|
+
Ancient DNA solves the mystery of who made a set of stone tools
|
|
128
|
+
How cancer hijacks the nervous system to grow and spread
|
|
129
|
+
How do otters protect salt marshes from erosion? Shellfishly
|
|
130
|
+
Deepfakes trolls and cybertroopers: how social media could sway elections in 2024
|
|
131
|
+
Mysterious exploding star and more — January’s best science images
|
|
132
|
+
New genetic variants found in large Chinese mother–baby study
|
|
133
|
+
Brazil’s deforestation ‘police’ on strike — threatening climate goals
|
|
134
|
+
Indian forest act faces challenge in Supreme Court
|
|
135
|
+
How to make academic hiring fair: database lists innovative policies
|
|
136
|
+
A giant fund for climate disasters will soon open. Who should be paid first?
|
|
137
|
+
Trump’s presidential push renews fears for US science
|
|
138
|
+
Near death experience — Japan’s Moon lander makes a comeback
|
|
139
|
+
Signs of ‘transmissible’ Alzheimer’s seen in people who received growth hormone
|
|
140
|
+
‘Wildly weird’ RNA bits discovered infesting the microbes in our guts
|
|
141
|
+
Audio long read: Long COVID is a double curse in low-income nations — here’s why
|
|
142
|
+
‘Sci-fi instrument’ will hunt for giant gravitational waves in space
|
|
143
|
+
Obesity drugs have another superpower: taming inflammation
|
|
144
|
+
First aircraft to fly on Mars dies — but leaves a legacy of science
|
|
145
|
+
This fast-living marsupial chooses sex over sleep — and dies young
|
|
146
|
+
Black-hole observations solve cosmic-ray mystery
|
|
147
|
+
CRISPR-edited crops break new ground in Africa
|
|
148
|
+
Canada’s oil sands spew massive amounts of unmonitored polluting gases
|
|
149
|
+
Dana-Farber retractions: meet the blogger who spotted problems in dozens of cancer papers
|
|
150
|
+
Toxic red mud could be turned into ‘green’ steel
|
|
151
|
+
Unethical studies on Chinese minority groups are being retracted — but not fast enough critics say
|
|
152
|
+
Leading US particle-physics lab faces uncertain future
|
|
153
|
+
Syphilis microbe’s family has plagued humans for millennia
|
|
154
|
+
Can autoimmune diseases be cured? Scientists see hope at last
|
|
155
|
+
How does chronic stress harm the gut? New clues emerge
|
|
156
|
+
All arabica coffee is genetically similar: how can beans taste so different?
|
|
157
|
+
Two-faced AI language models learn to hide deception
|
|
158
|
+
China’s new dark-matter lab is biggest and deepest yet
|
|
159
|
+
Japan’s successful Moon landing was the most precise ever
|
|
160
|
+
Pioneering nuclear-fusion reactor shuts down: what scientists will learn
|
|
161
|
+
Science’s fake-paper problem: high-profile effort will tackle paper mills
|
|
162
|
+
This robot grows like a vine — and could help navigate disaster zones
|
|
163
|
+
Medical AI could be ‘dangerous’ for poorer nations WHO warns
|
|
164
|
+
AlphaFold found thousands of possible psychedelics. Will its predictions help drug discovery?
|
|
165
|
+
Fingertip oxygen sensors can fail on dark skin — now a physician is suing
|
|
166
|
+
Long-COVID signatures identified in huge analysis of blood proteins
|
|
167
|
+
The consciousness wars: can scientists ever agree on how the mind works?
|
|
168
|
+
This AI just figured out geometry — is this a step towards artificial reasoning?
|
|
169
|
+
Could giant underwater curtains slow ice-sheet melting?
|
|
170
|
+
Potent new pill provides COVID relief for the masses
|
|
171
|
+
Piracy at sea is waning — but hotspots remain
|
|
172
|
+
DeepMind AI solves geometry problems at star-student level
|
|
173
|
+
Did the Black Death shape the human genome? Study challenges bold claim
|
|
174
|
+
Scientists fear tough UK immigration rules will deter talent
|
|
175
|
+
Chimpanzees are dying from our colds — these scientists are trying to save them
|
|
176
|
+
Largest genetic database of marine microbes could aid drug discovery
|
|
177
|
+
Cloned rhesus monkey lives to adulthood for first time
|
|
178
|
+
New NIH chief opens up about risky pathogens postdoc salaries and the year ahead
|
|
179
|
+
In pictures: lava flows into Icelandic town during volcanic eruption
|
|
180
|
+
Can foreign coral save a dying reef? Radical idea sparks debate
|
|
181
|
+
Ancient DNA reveals first known case of sex-development disorder
|
|
182
|
+
Earth boiled in 2023 — will it happen again in 2024?
|
|
183
|
+
Google AI has better bedside manner than human doctors — and makes better diagnoses
|
|
184
|
+
‘Set it and forget it’: automated lab uses AI and robotics to improve proteins
|
|
185
|
+
Oceans break heat records five years in a row
|
|
186
|
+
This is the oldest fossilized reptile skin ever found — it pre-dates the dinosaurs
|
|
187
|
+
What counts as plagiarism? Harvard president’s resignation sparks debate
|
|
188
|
+
Medical AI falters when assessing patients it hasn’t seen
|
|
189
|
+
The science stories you missed over the holiday period
|
|
190
|
+
Why did the world’s biggest ape go extinct?
|
|
191
|
+
First approval for controversial sea-bed mining worries scientists
|
|
192
|
+
Ancient DNA reveals origins of multiple sclerosis in Europe
|
|
193
|
+
How CRISPR could yield the next blockbuster crop
|
|
194
|
+
Mission failure feared for private US Moon lander — what’s next?
|
|
195
|
+
Antibiotic resistance is a growing threat — is climate change making it worse?
|
|
196
|
+
Tasmanian devil die-off is shifting another predator’s genetics
|
|
197
|
+
Private US Moon mission launches — will it open a new era for science?
|
|
198
|
+
Potent psychedelic drug banishes PTSD small study finds
|
|
199
|
+
Japan earthquakes: the science behind the deadly tremors
|
|
200
|
+
Science in 2024: what to expect this year
|
|
201
|
+
Long COVID is a double curse in low-income nations — here’s why
|
|
202
|
+
Harvard president’s resignation amid plagiarism allegations leaves academics reeling
|
|
203
|
+
The AI–quantum computing mash-up: will it revolutionize science?
|
|
204
|
+
Audio long read: A new kind of solar cell is coming — is it the future of green energy?
|
|
205
|
+
The Nature Podcast highlights of 2023
|
|
206
|
+
How AI works is often a mystery — that's a problem
|
|
207
|
+
Reindeer can activate sleep mode while eating
|
|
208
|
+
Will superintelligent AI sneak up on us? New study offers reassurance
|
|
209
|
+
Citations show gender bias — and the reasons are surprising
|
|
210
|
+
What were some of the biggest stories of 2023? Join us for the Nature Podcast quiz!
|
|
211
|
+
Polar bear fur-inspired sweater is thinner than a down jacket — and just as warm
|
|
212
|
+
AI consciousness: scientists say we urgently need answers
|
|
213
|
+
The Nature Podcast festive spectacular 2023
|
|
214
|
+
Vaccines reduce the risk of long COVID in children
|
|
215
|
+
Cancer-fighting CAR T cells could be made inside body with viral injection
|
|
216
|
+
This GPT-powered robot chemist designs reactions and makes drugs — on its own
|
|
217
|
+
Surge in extreme forest fires fuels global emissions
|
|
218
|
+
Scientists question cancer tests that use microscopic nematode worms
|
|
219
|
+
Humans might have driven 1500 bird species to extinction — twice previous estimates
|
|
220
|
+
Has your research influenced policy? Use this free tool to check
|
|
221
|
+
These scientists aren’t using ChatGPT — here’s why
|
|
222
|
+
Inhaled COVID vaccines stop infection in its tracks in monkey trials
|
|
223
|
+
The science events to watch for in 2024
|
|
224
|
+
Navigating planets plays and prejudice — a conversation with Aomawa Shields
|
|
225
|
+
US nuclear-fusion lab enters new era: achieving ‘ignition’ over and over
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
homa/__init__.py,sha256=iPxn6CB50Dt59fYKMBO8yGlAwgFy5HscFPx786CVpSA,69
|
|
2
|
+
homa/helpers.py,sha256=9S9qZ0jvzpkd-QiuTcn_XNAFamuciPgRAEQx3RI30ck,5503
|
|
3
|
+
homa/main.py,sha256=2TvPspiYUi-eCJUbXRCWnFtbPNCYIcneSFBtnz65zNc,936
|
|
4
|
+
homa/repositories/RandomDateRepository.py,sha256=1fK_oPJ1ln-3Zs4O3eOhh427LeM48PNvXeGDJYV8d4o,1659
|
|
5
|
+
homa/repositories/RandomImageRepository.py,sha256=YxWP1hjDXk8yncBivINq2WTSXI1bNQ5zvHI2ckcrXLw,38
|
|
6
|
+
homa/repositories/RandomNameRepository.py,sha256=QiWDD_ed0-q66wFeKs5KWchDXbKIHtc5jjLYJSOYMiw,1847
|
|
7
|
+
homa/repositories/RandomTextRepository.py,sha256=2rXZNfpMRMXjCMGOKeXIJLfDLbMJN_5vfaeNBYsdj6Y,635
|
|
8
|
+
homa/repositories/__init__.py,sha256=11Dv_PG1H9sEy0SdxdYzisXegnjoVrZBPFJ3wNrZnzc,221
|
|
9
|
+
homa/wordlists/feminine.txt,sha256=lAxmPmUGlYv0gdpjSXPYPCoe8kmZ71jKqBO6V9n1C_c,713
|
|
10
|
+
homa/wordlists/masculine.txt,sha256=9aN-INCNQrnn4dwbQU6cEzUXw6rU24E9Jh111GcNDt0,673
|
|
11
|
+
homa/wordlists/surnames.txt,sha256=M3kiBxyExH7wqdEDGRUy6X2oEIvyqW3xChRY-uq0D9A,690
|
|
12
|
+
homa/wordlists/titles.txt,sha256=Am60g2qxACSZSaQwNFbfXxDAF6JxrFo8RXv5f-0Fv4c,15335
|
|
13
|
+
homa-0.18.dist-info/LICENSE,sha256=js3WDbJn9k5EN6sy1uuP2QBXxyPgS5DjO4Bf5yE35hQ,1072
|
|
14
|
+
homa-0.18.dist-info/METADATA,sha256=ROl7Ic5O7iL2oDDgBcfGQbJbCRiYQk8BUA3fHR_99kM,964
|
|
15
|
+
homa-0.18.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
16
|
+
homa-0.18.dist-info/top_level.txt,sha256=tmOfy2tuaAwc3W5-i6j61_vYJsXgR4ivBWkhJ3ZtJDc,5
|
|
17
|
+
homa-0.18.dist-info/RECORD,,
|
homa-0.16.dist-info/RECORD
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
homa/__init__.py,sha256=iPxn6CB50Dt59fYKMBO8yGlAwgFy5HscFPx786CVpSA,69
|
|
2
|
-
homa/helpers.py,sha256=iE_0H0iePqqVjc1iOgozf0mKOXb9XHH44bg0jyX9xLg,5596
|
|
3
|
-
homa/main.py,sha256=2TvPspiYUi-eCJUbXRCWnFtbPNCYIcneSFBtnz65zNc,936
|
|
4
|
-
homa/repositories/RandomDateRepository.py,sha256=1fK_oPJ1ln-3Zs4O3eOhh427LeM48PNvXeGDJYV8d4o,1659
|
|
5
|
-
homa/repositories/RandomImageRepository.py,sha256=YxWP1hjDXk8yncBivINq2WTSXI1bNQ5zvHI2ckcrXLw,38
|
|
6
|
-
homa/repositories/RandomNameRepository.py,sha256=12DgWKNT6SyZgpj52CNd-_Z6tT7AxEVcQ9KVPLpuMBQ,1899
|
|
7
|
-
homa/repositories/RandomTextRepository.py,sha256=OHWLSTUftYZT-NaOUlkN4uI1JQW4KRwrmSuFs27su9A,654
|
|
8
|
-
homa/repositories/__init__.py,sha256=11Dv_PG1H9sEy0SdxdYzisXegnjoVrZBPFJ3wNrZnzc,221
|
|
9
|
-
homa-0.16.dist-info/LICENSE,sha256=js3WDbJn9k5EN6sy1uuP2QBXxyPgS5DjO4Bf5yE35hQ,1072
|
|
10
|
-
homa-0.16.dist-info/METADATA,sha256=jpr0KfLgoDfmZAnmWN506cwq2SZRqrSVFkLyPLOT5IQ,893
|
|
11
|
-
homa-0.16.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92
|
|
12
|
-
homa-0.16.dist-info/top_level.txt,sha256=tmOfy2tuaAwc3W5-i6j61_vYJsXgR4ivBWkhJ3ZtJDc,5
|
|
13
|
-
homa-0.16.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|