Get an available port. Checks first for preferred port in case its available, if not returns random.
Project description
get-port
Get an available port. Checks first for preferred port in case its available, if not returns random. Python implementation of the get-port idea by @sindresorhus.
Installation.
Available via PyPI.
pip install get-port
Usage.
Available in terminal:
get-port [preferred-port-optional]
Usage in code:
# Gets the actual port. Send preferred_port to pick if available.
from get_port import get_port
port = get_port(preferred_port)
# Check if port is available. Returns tuple: (Boolean, Dict)
from get_port import port_available
is_available = port_available(your_port)
# Find random free port. Returns tuple: (Port, Dict)
from get_port import find_free_port
port = find_free_port()
License
MIT.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
get-port-0.0.5.tar.gz
(3.7 kB
view details)
File details
Details for the file get-port-0.0.5.tar.gz
.
File metadata
- Download URL: get-port-0.0.5.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 194daa34c41b54b72b5f630ce660e12f4a22116f7e76dfd4f7da0e42c820c198 |
|
MD5 | 1651b60ee3e726e40bd2cc92f3d2cb44 |
|
BLAKE2b-256 | 227a72aea74216f79b6177a887c2a006a788b0d1ae43c6674c31a9cd706f37e8 |