Skip to content

Commit

Permalink
Merge pull request #5 from shivammathur/develop
Browse files Browse the repository at this point in the history
Fix emojis in setup.py and bump version to 0.3.7
  • Loading branch information
shivammathur authored Oct 2, 2019
2 parents 1287bdf + 71dc8fc commit e543254
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion ippy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

__author__ = """Shivam Mathur"""
__email__ = '[email protected]'
__version__ = '0.3.6'
__version__ = '0.3.7'

from .ippy import Ippy
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.6
current_version = 0.3.7
commit = True
tag = True

Expand Down
22 changes: 11 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

setup(
name='ippy',
version='0.3.6',
version='0.3.7',
description="Parallel testing of IP addresses and domains in python.",
long_description='''[![PyPI version](https://badge.fury.io/py/ippy.svg)](https://pypi.python.org/pypi/ippy)
[![Build Status](https://travis-ci.org/shivammathur/IPpy.svg?branch=master)](https://travis-ci.org/shivammathur/IPpy)
Expand All @@ -38,21 +38,21 @@
<img src="https://shivammathur.com/IPpy.png" align="right" width="250">
# :rocket: IPpy
# 🚀 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](#memo-usage) to see how to use this.
## :tada: About
## 🎉 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
## 🆎 Modes
- verbose - if true, ping output will be displayed.
- output - `json` or `csv`
## :sparkles: Support
## Support
- Windows, Linux and macOS are supported.
- Supports both IPv4 and IPv6 IPs, and domain names.
Expand All @@ -63,13 +63,13 @@
localhost
```
## :zap: Install
## ⚡️ Install
```bash
$ pip install ippy
```
## :memo: Usage
## 📝 Usage
```python
# Create IPpy instance
Expand All @@ -90,7 +90,7 @@
output = ippy_obj.result()
print(output)
```
## :rotating_light: Tests
## 🚨 Tests
To run the tests, first install tox.
```bash
Expand All @@ -103,15 +103,15 @@
$ tox
```
## :scroll: License
## 📜 License
The scripts and documentation in this project are released under the [MIT License](LICENSE). This project has multiple [dependencies](https://github.com/shivammathur/ippy/network/dependencies) and their licenses can be found in their respective repositories.
## :+1: Contributions
## 👍 Contributions
Contributions are welcome! See [Contributor's Guide](.github/CONTRIBUTING.md).
## :sparkling_heart: Support this project
## 💖 Support this project
- Please star the project and share it among your developer friends.
- Consider supporting on <a href="https://www.patreon.com/shivammathur"><img alt="Support me on Patreon" src="https://shivammathur.com/badges/patreon.svg"></a> and <a href="https://www.paypal.me/shivammathur"><img alt="Support me on Paypal" src="https://shivammathur.com/badges/paypal.svg"></a>.
Expand Down

0 comments on commit e543254

Please sign in to comment.