Metadata-Version: 2.4
Name: lottypes
Version: 1.0.3
Summary: A lot more types!
Home-page: https://pypi.org/project/lottypes/
Author: kanderusss
Author-email: kanderusss.dev@gmail.com
Project-URL: Documentation, https://pypi.org/project/lottypes/
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# Lottypes 1.0.3

# A lot more types!
# Installation:
## Main:
```bash
pip install lottypes==1.0.3
```
## Or:
```bash
pip3 install lottypes==1.0.3
```

# Examples:
```python
from lottypes import *

mystr = 'String'
mybytes = b'Bytes'
myint = 13
myfloat = 13.13
fruits = {'Banana': 15.5, 'Apple': 14.3}
fruitsName = ['Banana', 'Apple']
user = ('Bob', 32, 'bobgmail@gmail.com')

isinstance(mystr, String) # True
isinstance(mybytes, String) # True
isinstance(myint, String) # False
isinstance(mystr, Number) # False
isinstance(myint, Number) # True
isinstance(myfloat, Number) # True
isinstance(fruits, Massive) # True
isinstance(fruitsName, Massive) # True
isinstance(user, Massive) # True
```

# Changelog
## [1.0.3]
- **Development status is now stable.**

# Github
## [My github account](https://www.youtube.com/watch?v=dQw4w9WgXcQ)

# Enjoy it!

![PyPI - Version](https://img.shields.io/pypi/v/lottypes)
![PyPI - Downloads](https://img.shields.io/pypi/dm/lottypes)
![PyPI - License](https://img.shields.io/pypi/l/lottypes)
![PyPi - Badge](https://img.shields.io/pypi/v/lottypes?color=blue&style=for-the-badge&logo=python)
![PyPi - Status](https://img.shields.io/pypi/status/lottypes)
![PyPi - Format](https://img.shields.io/pypi/format/lottypes)
![PyPi - PyVersions](https://img.shields.io/pypi/pyversions/lottypes)
