Metadata-Version: 2.1
Name: isHex
Version: 0.0.2
Summary: Simple Python package to check if string is valid hexadecimal.
Home-page: https://github.com/xhelphin/ishex
Author: Jack Greenacre
Author-email: jaxk.programmer@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: check-manifest (>=0.48) ; extra == 'dev'
Requires-Dist: pytest (>=3.7) ; extra == 'dev'
Requires-Dist: twine (>=3.8.0) ; extra == 'dev'

# ✅ isHex

Simple Python package to check if string is valid hexadecimal.  

## 🚀 Usage

```python
from isHex import isHex

# Check invalid hexadecimal
isHex('abcg7') # Returns False

#Check valid hexadecimal
isHex('aBcDeF1234567890') # Returns True
```

## 📦 Installation

Run the following to install:  

```bash
$ pip install isHex
```

## 👨‍💻 Developing isHex

To install isHex, along with the tools you will need to develop and run tests, run the following in your virtualenv:  

```bash
$ pip install -e .[dev]
```

## 🚦 Development Progress

Unstable Development

