Skip to content

Commit 08de471

Browse files
Update README.md
1 parent 07238d5 commit 08de471

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
# awsip
22

3-
A simple python library to check if an ip, a list of ips or a list of ip ranges
3+
A simple python library to check if an IP address, a list of IP addresses or a list of IP address ranges
44
exist inside Amazon (AWS) infrastructure.
55
```
66
pip install awsip
77
```
8-
After installation, you can make use of `awsip` utility to check for ips.
8+
After installation, you can make use of `awsip` utility to check for IP addresses.
99
```
1010
awsip 1.1.1.1 2.2.2.2 5.4.3.0/28
1111
```
12-
You can provide a white-spaced list of ip addresses / ranges. You can also provide a filename containing ip address / range on each line. For example, you have a file `myips.txt` with following format.
12+
You can provide a white-spaced list of IP addresses / ranges. You can also provide a filename containing IP address / range on each line. For example, you have a file `myips.txt` with following format.
1313
```
1414
192.0.0.1
1515
7.7.7.0/28
1616
9.9.9.0/30
1717
```
18-
You can pass the ips to utility while providing extra ips on the go like this:
18+
You can pass the IP addresses to utility while providing extra ips on the go like this:
1919
```
2020
awsip myips.txt 1.1.1.1 2.2.2.0/24
2121
```
@@ -25,4 +25,4 @@ from awsip import AWSIPChecker
2525
checker = AWSIPChecker()
2626
checker.get_aws_range(['18.208.0.0', '18.208.0.0/16'])
2727
```
28-
You can provide a list of ip address, ip ranges or a mixture of both and program will check if they belong to AWS and return appropriate data if they do belong.
28+
You can provide a list of IP address, IP address ranges or a mixture of both and program will check if they belong to AWS and return appropriate data if they do belong.

0 commit comments

Comments
 (0)