https://github.com/neko-design/whoisrws
🐍 Python Client for the ARIN WHOIS Web Service
https://github.com/neko-design/whoisrws
api arin python whois whois-client
Last synced: 13 days ago
JSON representation
🐍 Python Client for the ARIN WHOIS Web Service
- Host: GitHub
- URL: https://github.com/neko-design/whoisrws
- Owner: Neko-Design
- Created: 2019-02-18T06:09:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-18T06:20:48.000Z (over 7 years ago)
- Last Synced: 2024-03-13T10:11:38.254Z (about 2 years ago)
- Topics: api, arin, python, whois, whois-client
- Language: Python
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ARIN WHOIS Webservice Client
A Python library for interacting with the ARIN WHOIS REST service.
## Installation
To install, simply run `pip install whoisrws`
## Usage
To perform a lookup, first create an instance of the webservice, then call one of the available methods:
```
from whoisrws import webservice
whois = webservice()
# Perform a Lookup for one of GitHub's IP Addresses
whois.ip('192.30.255.113')
>>>
```