pathl 2.1.5__tar.gz → 2.1.7__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.
- {pathl-2.1.5 → pathl-2.1.7}/PKG-INFO +1 -1
- {pathl-2.1.5 → pathl-2.1.7}/pathl/__init__.py +2 -1
- {pathl-2.1.5 → pathl-2.1.7}/pathl/cli.py +4 -2
- pathl-2.1.7/pathl/hello/__init__.py +3 -0
- {pathl-2.1.5 → pathl-2.1.7}/pathl.egg-info/PKG-INFO +1 -1
- {pathl-2.1.5 → pathl-2.1.7}/pyproject.toml +1 -1
- pathl-2.1.5/pathl/hello/__init__.py +0 -3
- {pathl-2.1.5 → pathl-2.1.7}/README.md +0 -0
- {pathl-2.1.5 → pathl-2.1.7}/pathl/dns/dns.py +0 -0
- {pathl-2.1.5 → pathl-2.1.7}/pathl/hello/welcome.py +0 -0
- {pathl-2.1.5 → pathl-2.1.7}/pathl/hello/world.py +0 -0
- {pathl-2.1.5 → pathl-2.1.7}/pathl/scaner/scaner.py +0 -0
- {pathl-2.1.5 → pathl-2.1.7}/pathl.egg-info/SOURCES.txt +0 -0
- {pathl-2.1.5 → pathl-2.1.7}/pathl.egg-info/dependency_links.txt +0 -0
- {pathl-2.1.5 → pathl-2.1.7}/pathl.egg-info/entry_points.txt +0 -0
- {pathl-2.1.5 → pathl-2.1.7}/pathl.egg-info/top_level.txt +0 -0
- {pathl-2.1.5 → pathl-2.1.7}/setup.cfg +0 -0
|
@@ -4,5 +4,6 @@ Pathl - General-purpose cybersecurity toolkit
|
|
|
4
4
|
__version__ = "2.1.4"
|
|
5
5
|
__author__ = "Alicja"
|
|
6
6
|
from pathl import dns, scaner, hello
|
|
7
|
+
from pathl.hello import World
|
|
7
8
|
from pathl.cli import main
|
|
8
|
-
__all__ = ["dns", "scaner", "hello", "main", "World"
|
|
9
|
+
__all__ = ["dns", "scaner", "hello", "main", "World"]
|
|
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
|