homa 0.18__tar.gz → 0.19__tar.gz
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-0.18 → homa-0.19}/PKG-INFO +1 -1
- {homa-0.18 → homa-0.19}/homa/main.py +4 -4
- {homa-0.18 → homa-0.19}/homa/repositories/RandomDateRepository.py +2 -2
- {homa-0.18 → homa-0.19}/homa.egg-info/PKG-INFO +1 -1
- {homa-0.18 → homa-0.19}/setup.py +1 -1
- {homa-0.18 → homa-0.19}/LICENSE +0 -0
- {homa-0.18 → homa-0.19}/README.md +0 -0
- {homa-0.18 → homa-0.19}/homa/__init__.py +0 -0
- {homa-0.18 → homa-0.19}/homa/helpers.py +0 -0
- {homa-0.18 → homa-0.19}/homa/repositories/RandomImageRepository.py +0 -0
- {homa-0.18 → homa-0.19}/homa/repositories/RandomNameRepository.py +0 -0
- {homa-0.18 → homa-0.19}/homa/repositories/RandomTextRepository.py +0 -0
- {homa-0.18 → homa-0.19}/homa/repositories/__init__.py +0 -0
- {homa-0.18 → homa-0.19}/homa/wordlists/feminine.txt +0 -0
- {homa-0.18 → homa-0.19}/homa/wordlists/masculine.txt +0 -0
- {homa-0.18 → homa-0.19}/homa/wordlists/surnames.txt +0 -0
- {homa-0.18 → homa-0.19}/homa/wordlists/titles.txt +0 -0
- {homa-0.18 → homa-0.19}/homa.egg-info/SOURCES.txt +0 -0
- {homa-0.18 → homa-0.19}/homa.egg-info/dependency_links.txt +0 -0
- {homa-0.18 → homa-0.19}/homa.egg-info/top_level.txt +0 -0
- {homa-0.18 → homa-0.19}/setup.cfg +0 -0
{homa-0.18 → homa-0.19}/PKG-INFO
RENAMED
|
@@ -9,10 +9,10 @@ from .repositories.RandomImageRepository import RandomImageRepository
|
|
|
9
9
|
class Homa:
|
|
10
10
|
def __init__(self) -> None:
|
|
11
11
|
self.repositories = {
|
|
12
|
-
"
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
12
|
+
"name_repository": RandomNameRepository(),
|
|
13
|
+
"date_repository": RandomDateRepository(),
|
|
14
|
+
"text_repository": RandomTextRepository(),
|
|
15
|
+
"image_repository": RandomImageRepository()
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
def __getattr__(self, name: string):
|
{homa-0.18 → homa-0.19}/setup.py
RENAMED
{homa-0.18 → homa-0.19}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|