Uman Shahzad
Uman Shahzad
Right now we don't support looking up ASNs in bulk, but it's a useful feature to have. In the process, we should actually support mixing together IPs & ASNs in...
Flags like `ipinfo --help` or `ipinfo -h` are not getting suggested in auto-completion; only the subcommands are. This is a bug in the completion fork we made: fix it to...
There's actually so many features in the CLI so far for different commands that it's not reasonable to lay everything out in the README or in the inlined `-h`/`--help` output....
The user should be allowed, via some option during client initialization, to set custom HTTP headers for all requests.
It was discovered in https://github.com/ipinfo/python/issues/40 that a [call to `requests.posts` in the sync handler](https://github.com/ipinfo/python/blob/master/ipinfo/handler.py#L189) was throwing an exception even when `raise_on_fail=False`. This behavior can cause the loss of data from...
Create an iterator-based batch function, so that the user can loop over the batch call and get results per IP 1-by-1 rather than all at once, which is probably necessary...
We use 3.9.0 which looks pretty old now and this may make some users not want to install the library if it takes on too old of a subdependency from...
Right now for bogon IPs we need to make requests to the API even though technically it's possible to determine a bogon IP statically fully locally. Additionally bogon IPs come...
We actually don't have a way in this SDK currently to even see if the IP was bogon. There should atleast be a field for it.
We have several files like `eu.json`, `countries.json`, `continents.json` and so on, which are loaded during initialization / startup of the client. Instead of loading these as such, which has risks...