We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f918618 commit e68e40cCopy full SHA for e68e40c
README.md
@@ -8,22 +8,24 @@ Get IPv4 and IPv6 addresses of hostnames using [socket.getaddrinfo()](https://do
8
9
## Requirements
10
11
-Python 3.8
+Python 3.8+
12
13
## Setup
14
15
```shell
16
-pip install -r requirements.txt
+python3 -m venv venv
17
+venv/bin/python3 -m pip install --upgrade pip
18
+venv/bin/python3 -m pip install -r requirements.txt
19
```
20
21
## Testing
22
23
-pytest --cov --cov-report html
24
+venv/bin/python3 -m pytest --cov --cov-report html
25
26
27
## Usage
28
29
-python main.py --input-file sample_urls.txt --output-file output.txt
30
+venv/bin/python3 main.py --input-file sample_urls.txt --output-file output.txt
31
0 commit comments