Description
Parallel testing of IP addresses and domains in python. Reads IP addresses and domains from a CSV file and gives two lists of accessible and inaccessible ones. Refer to Usage to see how to use this.
๐ IPpy alternatives and similar packages
Based on the "Networking" category.
Alternatively, view ๐ IPpy alternatives based on common mentions on social networks and blogs.
-
IVRE
Network recon framework. Build your own, self-hosted and fully-controlled alternatives to Shodan / ZoomEye / Censys and GreyNoise, run your Passive DNS service, build your taylor-made EASM tool, collect and analyse network intelligence from your sensors, and much more! Uses Nmap, Masscan, Zeek, p0f, ProjectDiscovery tools, etc. -
LDAP3
a strictly RFC 4510 conforming LDAP V3 pure Python client. The same codebase works with Python 2. Python 3, PyPy and PyPy3 -
RocketHTTP
RocketHTTP is a high-performance HTTP client library written in Go and designed to handle up to 1000,000 concurrent requests.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ๐ IPpy or a related project?
Popular Comparisons
README
:rocket: IPpy
Parallel testing of IP addresses and domains in python. Reads IP addresses and domains from a CSV file and gives two lists of accessible and inaccessible ones. Refer to Usage to see how to use this.
:tada: About
- Compatible with both Python 2 and 3.
- Testing of IPs and domains is done in parallel.
- By default there are 4 Workers.
- All Workers work on an input Queue and a output Queue.
:ab: Modes
- verbose - if true, ping output will be displayed.
- output -
json
orcsv
:sparkles: Support
- Windows, Linux and macOS are supported.
- Supports both IPv4 and IPv6 IPs, and domain names.
# Examples
127.0.0.1
::1
localhost
:zap: Install
$ pip install ippy
:memo: Usage
# Create IPpy instance
ippy_obj = ippy.Ippy()
# Set config - verbose, output, num_workers
# verbose - True or False
# output - csv or json
ippy_obj.set_config(True, 'csv', 4)
# Set Input File
ippy_obj.set_file(file='ip_list.csv')
# Run IPpy
ippy_obj.run()
# Get Results
output = ippy_obj.result()
print(output)
:rotating_light: Tests
To run the tests, first install tox.
$ pip install tox
then run tox from the project root directory.
$ tox
:scroll: License
The scripts and documentation in this project are released under the [MIT License](LICENSE). This project has multiple dependencies and their licenses can be found in their respective repositories.
:+1: Contributions
Contributions are welcome! See [Contributor's Guide](.github/CONTRIBUTING.md).
:sparkling_heart: Support this project
- Please star the project and share it among your developer friends.
- Consider supporting on and .
*Note that all licence references and agreements mentioned in the ๐ IPpy README section above
are relevant to that project's source code only.