-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: oneTimeDownload for E621 and E926 #1 feat: selection for desired site feat: new pretty logo feat: auto updater fix: spelling mistakes docs: ReadMe updated and cleaned refactor: config manager refactor: __init__.py
- Loading branch information
1 parent
a4ec09d
commit cb7fccb
Showing
13 changed files
with
249 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,18 @@ | ||
|
||
config.json | ||
|
||
modules/__pycache__/ | ||
|
||
__pycache__/ | ||
*.spec | ||
|
||
dist/ | ||
|
||
build/ | ||
|
||
media/ | ||
|
||
.nn-d/ | ||
.env/ | ||
testing_accounts.txt | ||
config.json.bak | ||
old_config.json | ||
testing_accounts.txt.bak | ||
db/ | ||
outdated | ||
modules/updateManager.old | ||
modules/auto_update.py | ||
runtime.log | ||
delete-exe.bat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
pyinstaller --onefile --icon "icon.ico" --console --name "NN-Downloader" --upx-dir "Z:\Projects\Python\### UPX ###" --add-data="Z:/Projects/Python/NN-Downloader/.nn-d/Lib/site-packages/grapheme/data/*;grapheme/data/" main.py | ||
".\.env\Scripts\activate" && pyinstaller --onefile --icon "icon.ico" --console --name "NN-Downloader" --upx-dir "Z:\Projects\Python\### UPX ###" --add-data="Z:/Projects/Python/NN-Downloader/.env/Lib/site-packages/grapheme/data/*;grapheme/data/" main.py | ||
|
||
rmdir /s /q .\build | ||
rmdir /s /q .\__pycache__ | ||
del ".\NN-Downloader.spec" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
".\.env\Scripts\activate" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
from .proxyScraper import ProxyScraper | ||
from .configManager import Config_Manager | ||
from .auto_update import AutoUpdate | ||
from .logger import Logger | ||
from .pretty_print import * | ||
|
||
|
||
# Here are all modules for the sites that are supported | ||
from .e621 import E621 | ||
from .e926 import E926 | ||
from .rule34 import RULE34 | ||
from .proxyscraper import ProxyScraper | ||
from .furbooru import FURBOORU | ||
from .e926 import E926 | ||
from .multporn import Multporn | ||
from .yiffer import Yiffer | ||
from .luscious import Luscious |
Oops, something went wrong.