Metadata-Version: 2.1
Name: argparse-types
Version: 0.1.0
Summary: addition types to use with argparse
Home-page: https://github.com/tech-chad/argparse_types
Author: Chad Larson
Author-email: techchad2@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6.1
Description-Content-Type: text/markdown

### argparse_types

Special argparse types

### How to install

```to add```

### description

Adds addition types to the argparse library.


###  how to use

```python
# to add
```

### types

- **pos_int** - Positive int value not including 0
- **neg_int** - Negative int value not including 0
- **zero_int** - Zero int value
- **pos_float** - Positive float value not including 0
- **neg_float** - Negative float value not including 0
- **zero_float** - Zero float value
- **bool_none** - True, False, None value
- **ip4** - ip address 0.0.0.0 to 255.255.255.255 not including port


