Update README.md to enforce the use of pipx for installing

This commit is contained in:
Daniel Carrillo 2022-03-26 20:33:27 +01:00
parent b1f48d5534
commit 87618a960d
Signed by: dcarrillo
GPG Key ID: E4CD5C09DAED6E16
1 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,6 @@
# digaws
The digaws lookup tool displays information for a given IP address (v4 o v6) or a CIDR, sourced from the AWS official IP ranges.
The digaws lookup tool displays information for a given IP address (both v4 and v6) or a CIDR, sourced from the AWS official IP ranges.
In order to save bandwidth and time this tool requests the [AWS IP ranges](https://ip-ranges.amazonaws.com/ip-ranges.json) and keeps
a cached version until a new version is published.
@ -15,8 +15,16 @@ Tests are verified on Linux, macos and Windows.
## Install
### Using [pipx](https://pypa.github.io/pipx/#install-pipx) (this is the preferred way)
```bash
pip install digaws
pipx install digaws
```
### Using pip
```bash
pip install digaws --user
```
## Usage