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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pathl
3
- Version: 2.1.5
3
+ Version: 2.1.7
4
4
  Summary: General-purpose cybersecurity toolkit
5
5
  Author: Alicja
6
6
  License-Expression: MIT
@@ -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", "say_hello", "greet_user"]
9
+ __all__ = ["dns", "scaner", "hello", "main", "World"]
@@ -1,6 +1,8 @@
1
1
  import argparse
2
- from scaner.scaner import run_scan
3
- from dns.dns import run_dns
2
+ from pathl.scaner.scaner import run_scan
3
+ from pathl.dns.dns import run_dns
4
+
5
+ # reszta kodu bez zmian
4
6
 
5
7
  def cmd_hello(args):
6
8
  print("Hello from pathl 🔐")
@@ -0,0 +1,3 @@
1
+ from pathl.hello.welcome import World
2
+ from pathl.hello.world import World
3
+ __all__ = ["World"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pathl
3
- Version: 2.1.5
3
+ Version: 2.1.7
4
4
  Summary: General-purpose cybersecurity toolkit
5
5
  Author: Alicja
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pathl"
7
- version = "2.1.5"
7
+ version = "2.1.7"
8
8
  description = "General-purpose cybersecurity toolkit"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -1,3 +0,0 @@
1
- from pathl.hello.welcome import say_hello, greet_user
2
- from pathl.hello.world import World
3
- __all__ = ["say_hello", "greet_user", "World"]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes