pathl 2.1.3__tar.gz → 2.1.5__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pathl
3
- Version: 2.1.3
3
+ Version: 2.1.5
4
4
  Summary: General-purpose cybersecurity toolkit
5
5
  Author: Alicja
6
6
  License-Expression: MIT
@@ -0,0 +1,8 @@
1
+ """
2
+ Pathl - General-purpose cybersecurity toolkit
3
+ """
4
+ __version__ = "2.1.4"
5
+ __author__ = "Alicja"
6
+ from pathl import dns, scaner, hello
7
+ from pathl.cli import main
8
+ __all__ = ["dns", "scaner", "hello", "main", "World", "say_hello", "greet_user"]
@@ -0,0 +1,3 @@
1
+ from pathl.hello.welcome import say_hello, greet_user
2
+ from pathl.hello.world import World
3
+ __all__ = ["say_hello", "greet_user", "World"]
@@ -0,0 +1,5 @@
1
+ class World:
2
+ def __init__(self):
3
+ self.msg = "Hello Its My Packeg"
4
+ def main(self):
5
+ print(self.msg)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pathl
3
- Version: 2.1.3
3
+ Version: 2.1.5
4
4
  Summary: General-purpose cybersecurity toolkit
5
5
  Author: Alicja
6
6
  License-Expression: MIT
@@ -1,7 +1,6 @@
1
1
  README.md
2
2
  pyproject.toml
3
- hello/__init__.py
4
- hello/welcome.py
3
+ pathl/__init__.py
5
4
  pathl/cli.py
6
5
  pathl.egg-info/PKG-INFO
7
6
  pathl.egg-info/SOURCES.txt
@@ -9,4 +8,7 @@ pathl.egg-info/dependency_links.txt
9
8
  pathl.egg-info/entry_points.txt
10
9
  pathl.egg-info/top_level.txt
11
10
  pathl/dns/dns.py
11
+ pathl/hello/__init__.py
12
+ pathl/hello/welcome.py
13
+ pathl/hello/world.py
12
14
  pathl/scaner/scaner.py
@@ -1,2 +1 @@
1
- hello
2
1
  pathl
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pathl"
7
- version = "2.1.3"
7
+ version = "2.1.5"
8
8
  description = "General-purpose cybersecurity toolkit"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes