Metadata-Version: 2.1
Name: wumpy-models
Version: 0.1.0
Summary: Fully typed, memory efficient Discord object representations
Keywords: wumpy,wumpus,wrapper,discord,discord-api,discord-bot,discord-api-wrapper,python-3
Author-email: Bluenix <bluenixdev@gmail.com>
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: AnyIO
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
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: Topic :: Internet
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Dist: typing_extensions >= 4, <5
Requires-Dist: discord-typings >= 0.4.0, <1
Project-URL: Documentation, https://wumpy.rtfd.io
Project-URL: Homepage, https://github.com/wumpyproject/wumpy
Project-URL: Repository, https://github.com/wumpyproject/wumpy/tree/main/library/wumpy-models

# Wumpy-models

Fully typed, memory efficient Discord object representations.

```python
from wumpy.models import User


user = User.from_data({ ... })

print(f'{user.name}#{user.discriminator}')
```

