random-port 0.0.4__py3-none-any.whl → 0.0.5__py3-none-any.whl
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.
Potentially problematic release.
This version of random-port might be problematic. Click here for more details.
- {random_port-0.0.4.dist-info → random_port-0.0.5.dist-info}/METADATA +3 -3
- random_port-0.0.5.dist-info/RECORD +7 -0
- {random_port-0.0.4.dist-info → random_port-0.0.5.dist-info}/WHEEL +1 -1
- random_port-0.0.4.dist-info/RECORD +0 -7
- {random_port-0.0.4.dist-info → random_port-0.0.5.dist-info}/licenses/LICENSE.txt +0 -0
- {random_port-0.0.4.dist-info → random_port-0.0.5.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: random_port
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: Generate a free TCP or UDP random port
|
|
5
5
|
Author-email: Fabrício Barros Cabral <fabriciofx@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -37,7 +37,7 @@ in your project folder.
|
|
|
37
37
|
- To use a TCP random port:
|
|
38
38
|
|
|
39
39
|
```python
|
|
40
|
-
from random_port.
|
|
40
|
+
from random_port.pool import TcpRandomPort
|
|
41
41
|
|
|
42
42
|
port = TcpRandomPort().value()
|
|
43
43
|
```
|
|
@@ -45,7 +45,7 @@ port = TcpRandomPort().value()
|
|
|
45
45
|
- To use a UDP random port:
|
|
46
46
|
|
|
47
47
|
```python
|
|
48
|
-
from random_port.
|
|
48
|
+
from random_port.pool import UdpRandomPort
|
|
49
49
|
|
|
50
50
|
port = UdpRandomPort().value()
|
|
51
51
|
```
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
random_port/__init__.py,sha256=WnbD7VqLlKdJ81-K8BGjxrmQLXEu_g-czd-Y73OAezQ,1129
|
|
2
|
+
random_port/pool.py,sha256=uzh051hXfHpcZalg6HaoxDIdGgU9ttXzZ35BU2eTL1g,2756
|
|
3
|
+
random_port-0.0.5.dist-info/licenses/LICENSE.txt,sha256=SrFTda5sgSB9hkS5IK7GpSHxGMawR9F_6099TboKYXk,1091
|
|
4
|
+
random_port-0.0.5.dist-info/METADATA,sha256=LDpGJrkqezQ5w-Yz8-57UmwDpfxK7_8OIVf4es43Gvc,2248
|
|
5
|
+
random_port-0.0.5.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
|
6
|
+
random_port-0.0.5.dist-info/top_level.txt,sha256=wypEHVVFuk5I-FKJUMe84GL6xu7FPBEa8iRY_oyqxfw,12
|
|
7
|
+
random_port-0.0.5.dist-info/RECORD,,
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
random_port/__init__.py,sha256=WnbD7VqLlKdJ81-K8BGjxrmQLXEu_g-czd-Y73OAezQ,1129
|
|
2
|
-
random_port/pool.py,sha256=uzh051hXfHpcZalg6HaoxDIdGgU9ttXzZ35BU2eTL1g,2756
|
|
3
|
-
random_port-0.0.4.dist-info/licenses/LICENSE.txt,sha256=SrFTda5sgSB9hkS5IK7GpSHxGMawR9F_6099TboKYXk,1091
|
|
4
|
-
random_port-0.0.4.dist-info/METADATA,sha256=mc85HoW-ocYaAsiiKVJhRUByS-c9Mpg-_TqvkDuf-Gc,2248
|
|
5
|
-
random_port-0.0.4.dist-info/WHEEL,sha256=1tXe9gY0PYatrMPMDd6jXqjfpz_B-Wqm32CPfRC58XU,91
|
|
6
|
-
random_port-0.0.4.dist-info/top_level.txt,sha256=wypEHVVFuk5I-FKJUMe84GL6xu7FPBEa8iRY_oyqxfw,12
|
|
7
|
-
random_port-0.0.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|