torbot 3.0.2__tar.gz → 3.0.4__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.
Files changed (29) hide show
  1. torbot-3.0.4/.env +4 -0
  2. {torbot-3.0.2 → torbot-3.0.4}/PKG-INFO +1 -1
  3. {torbot-3.0.2 → torbot-3.0.4}/pyproject.toml +2 -1
  4. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/config.py +1 -0
  5. {torbot-3.0.2 → torbot-3.0.4}/LICENSE.md +0 -0
  6. {torbot-3.0.2 → torbot-3.0.4}/torbot/__init__.py +0 -0
  7. {torbot-3.0.2 → torbot-3.0.4}/torbot/__main__.py +0 -0
  8. {torbot-3.0.2 → torbot-3.0.4}/torbot/main.py +0 -0
  9. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/__init__.py +0 -0
  10. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/api.py +0 -0
  11. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/collect_data.py +0 -0
  12. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/color.py +0 -0
  13. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/info.py +0 -0
  14. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/link_io.py +0 -0
  15. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/linktree.py +0 -0
  16. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/log.py +0 -0
  17. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/nlp/README.md +0 -0
  18. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/nlp/__init__.py +0 -0
  19. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/nlp/gather_data.py +0 -0
  20. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/nlp/main.py +0 -0
  21. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/nlp/website_classification.csv +0 -0
  22. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/savefile.py +0 -0
  23. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/tests/TESTING.md +0 -0
  24. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/tests/__init__.py +0 -0
  25. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/tests/test_pagereader.py +0 -0
  26. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/tests/test_savetofile.py +0 -0
  27. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/updater.py +0 -0
  28. {torbot-3.0.2 → torbot-3.0.4}/torbot/modules/validators.py +0 -0
  29. {torbot-3.0.2 → torbot-3.0.4}/torbot/version.py +0 -0
torbot-3.0.4/.env ADDED
@@ -0,0 +1,4 @@
1
+ export TORBOT_DATA_DIR=${PWD}/data
2
+ export HOST='localhost'
3
+ export PORT=8081
4
+ export LOG_LEVEL="info" # OPTIONS - info, debug, fatal
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: torbot
3
- Version: 3.0.2
3
+ Version: 3.0.4
4
4
  Summary: OSINT for the dark web
5
5
  License: GNU GPL
6
6
  Author: Akeem King
@@ -1,9 +1,10 @@
1
1
  [tool.poetry]
2
2
  name = "torbot"
3
- version = "3.0.2"
3
+ version = "3.0.4"
4
4
  description = "OSINT for the dark web"
5
5
  authors = ["Akeem King <akeemtlking@gmail.com>"]
6
6
  license = "GNU GPL"
7
+ include = [".env"]
7
8
 
8
9
  [tool.poetry.dependencies]
9
10
  python = ">=3.9,<=3.11.4"
@@ -4,6 +4,7 @@ import logging
4
4
  from dotenv import load_dotenv
5
5
 
6
6
  load_dotenv()
7
+ print(os.getcwd())
7
8
  port = os.getenv("PORT")
8
9
  host = os.getenv("HOST")
9
10
 
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