KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
ipi
★ 17
Open GitHub ↗
A tiny set of helper scripts for ipinfo
Download README (.md)
Explore Similar Repositories
gengen
:
Tool for generating models and Angular services based on OpenAPIs and Swagger's JSON.
kubernetes-nginx-for-react-frontend-app-and-nodejs-backend
:
No description available.
add-tracks-to-spotify
:
No description available.
retinanetv1
:
pytorch implement of retinanet,37.4 mAp(coco) at 640px(max side) ,44.24fps(RTX2080TI)
DescribingTextures
:
"Describing Textures using Natural Language" code and data, ECCV 2020 Oral.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ipi
?
Download (.md)
# ipi I wrote this utility to help me more efficiently utilize the ipinfo.io API - especially the premium aspects. # Installation Sign in with Google or Github to obtain a free API key with 50k requests! https://ipinfo.io/account ``` wget -O /tmp/install https://raw.githubusercontent.com/pry0cc/ipi/master/bin/iptools-install && chmod +x /tmp/install /tmp/install <your token> ``` # Example  # Basic Usage Look up a single IP ``` ipi 8.8.8.8 ``` Parse an item from the results ``` ipi 8.8.8.8 .city ``` Make a CSV of a single IP ``` ipi 104.238.184.224 '[.city, .region, .hostname] | @csv' ``` Or you can read from stdin ``` cat ips.txt | ipi '.asn.asn' ``` You can do the exact same with ipr too, which is for ranges: ``` ipr AS7922 # Get all IP ranges for a given ASN ipr AS7922 '.prefixes[].netblock' ```