Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgebg/devip
Find a suitable IP host to access local network-based applications.
https://github.com/jorgebg/devip
ip python python3
Last synced: about 2 months ago
JSON representation
Find a suitable IP host to access local network-based applications.
- Host: GitHub
- URL: https://github.com/jorgebg/devip
- Owner: jorgebg
- License: mit
- Created: 2018-09-14T16:09:32.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-14T16:42:54.000Z (over 6 years ago)
- Last Synced: 2024-10-12T04:23:39.890Z (3 months ago)
- Topics: ip, python, python3
- Language: Python
- Homepage: https://pypi.org/project/dev-ip/
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# DevIP
Find a suitable IP host to access local network-based applications.
Inspired on [dev-ip](https://github.com/shakyShane/dev-ip) by @shakyShane.
## Installation
```
pip install dev-ip
```## Usage
```
$ devip --help
Usage: devip [OPTIONS]Find a suitable IP host to access local network-based applications.
Options:
-a, --all List all IP addresses.
-r, --reverse List in reverse order.
-l, --loopback Include loopback.
--help Show this message and exit.
```## Examples
```
$ devip
192.168.1.45
``````
$ devip -la
127.0.0.1
192.168.1.45
``````
python -m http.server --bind $(devip)
```