SnakeScan 1.4.5__tar.gz → 1.4.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.
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: SnakeScan
3
+ Version: 1.4.7
4
+ Summary: Module SnakeScan using to scan port or ports in you device or other devices
5
+ Author: Den*Ram
6
+ Description-Content-Type: text/markdown
7
+ License-Expression: MIT
8
+ License-File: LICENSE
9
+ Requires-Dist: art
10
+ Requires-Dist: tqdm
11
+ Requires-Dist: termcolor
12
+ Project-URL: Homepage, https://github.com/Den-Ram/SnakeScan
13
+ Project-URL: Repository, https://github.com/Den-Ram/SnakeScan
14
+
15
+ # SnakeScan
16
+ Scanner to scan devices or watch if you server down or up in time work
17
+
18
+ ![PyPI version](https://badge.fury.io/py/SnakeScan.svg)
19
+ ![Requires-python](https://img.shields.io/badge/requires--python-3.6+-red)
20
+ ![License](https://img.shields.io/badge/License-MIT-blue.svg)
21
+ ```
22
+ import SnakeScan
23
+ SnakeScan.run()
24
+ ```
25
+ ## Help
26
+
27
+ - --l need internet to view public ip you device
28
+ - --t threading port search
29
+ - --d dos
30
+ - --s single port search
31
+ - --i information about host
32
+ - --h in host /--h port in host
33
+
34
+ ## Added class Watcher:
35
+ ```
36
+ for SnakeScan import Watcher
37
+ Watcher(host:str,port:int)
38
+ ```
@@ -0,0 +1,24 @@
1
+ # SnakeScan
2
+ Scanner to scan devices or watch if you server down or up in time work
3
+
4
+ ![PyPI version](https://badge.fury.io/py/SnakeScan.svg)
5
+ ![Requires-python](https://img.shields.io/badge/requires--python-3.6+-red)
6
+ ![License](https://img.shields.io/badge/License-MIT-blue.svg)
7
+ ```
8
+ import SnakeScan
9
+ SnakeScan.run()
10
+ ```
11
+ ## Help
12
+
13
+ - --l need internet to view public ip you device
14
+ - --t threading port search
15
+ - --d dos
16
+ - --s single port search
17
+ - --i information about host
18
+ - --h in host /--h port in host
19
+
20
+ ## Added class Watcher:
21
+ ```
22
+ for SnakeScan import Watcher
23
+ Watcher(host:str,port:int)
24
+ ```
@@ -1,5 +1,5 @@
1
1
  """Module SnakeScan using to scan port or ports in you device or other devices"""
2
- __version__="1.4.5"
2
+ __version__="1.4.7"
3
3
  import socket
4
4
  from art import tprint
5
5
  from datetime import datetime
@@ -94,7 +94,14 @@ def run():
94
94
  print(f"Build_{__version__}")
95
95
  continue
96
96
  if "--h" in host:
97
- print("Host:|--l,host --i,host --d|")
97
+ host=host.strip("--h")
98
+ host=host.strip()
99
+ if host == "port":
100
+ print("Port:|--s port,--t|")
101
+ if host:
102
+ pass
103
+ else:
104
+ print("Host:|--l,host --i,host --d|")
98
105
  continue
99
106
  if "--i" in host:
100
107
  host=host.strip("--i").strip()
@@ -210,12 +217,6 @@ def run():
210
217
  print(local)
211
218
  continue
212
219
  port_user=input(f"{colored('[$]','green')}Port-->")
213
- if "--v" in port_user:
214
- print(f"Build_{__version__}")
215
- continue
216
- if "--h" in port_user:
217
- print("Port:|--s port,--t|")
218
- continue
219
220
  if port_user == "":
220
221
  while True:
221
222
  print(f"{colored('Port','green')}{colored('[X]:Empty value','red')}")
snakescan-1.4.5/PKG-INFO DELETED
@@ -1,32 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: SnakeScan
3
- Version: 1.4.5
4
- Summary: Module SnakeScan using to scan port or ports in you device or other devices
5
- Author: Den*Ram
6
- Description-Content-Type: text/markdown
7
- License-Expression: MIT
8
- License-File: LICENSE
9
- Requires-Dist: art
10
- Requires-Dist: tqdm
11
- Requires-Dist: termcolor
12
- Project-URL: Homepage, https://github.com/Den-Ram/SnakeScan
13
- Project-URL: Repository, https://github.com/Den-Ram/SnakeScan
14
-
15
- import SnakeScan
16
-
17
- and use module to scan port
18
-
19
- --l need internet connection
20
- --h help
21
- --t threading port search
22
- --d dos
23
- --s single port search
24
- --i information about host
25
- Port or Host:--h to watch help
26
- Added class Watcher:
27
- for SnakeScan import Watcher
28
- Watcher(host:str,port:int)
29
- SnakeScan now run for command and import SnakeScan not run him
30
- import SnakeScan
31
- SnakeScan.run()
32
-
snakescan-1.4.5/README.md DELETED
@@ -1,18 +0,0 @@
1
- import SnakeScan
2
-
3
- and use module to scan port
4
-
5
- --l need internet connection
6
- --h help
7
- --t threading port search
8
- --d dos
9
- --s single port search
10
- --i information about host
11
- Port or Host:--h to watch help
12
- Added class Watcher:
13
- for SnakeScan import Watcher
14
- Watcher(host:str,port:int)
15
- SnakeScan now run for command and import SnakeScan not run him
16
- import SnakeScan
17
- SnakeScan.run()
18
-
File without changes
File without changes