Metadata-Version: 2.1
Name: pyteledantic
Version: 0.0.16
Summary: Pydantic models for Telegram Bot API
Home-page: https://github.com/isys35/pyteledantic
Author: isys35
Author-email: isysbas@gmail.com
License: UNKNOWN
Project-URL: Source, https://github.com/isys35/pyteledantic
Keywords: pydantic telegram api bot
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.9, <4
Description-Content-Type: text/markdown


<a href="https://codecov.io/gh/isys35/pyteledantic">
  <img src="https://codecov.io/gh/isys35/pyteledantic/branch/master/graph/badge.svg?token=OJ3FYTM2TE"/>
</a>
<a href="https://pypi.org/project/pyteledantic/">
  <img src="https://img.shields.io/pypi/dm/pyteledantic"/>
</a>
<a href="https://pypi.org/project/pyteledantic/">
  <img src="https://img.shields.io/pypi/v/pyteledantic"/>
</a>
<a href="https://github.com/isys35/pyteledantic">
  <img src="https://img.shields.io/github/last-commit/isys35/pyteledantic"/>
</a>
<h1>Pydantic models for Telegram Bot API</h1>


Install:

```pip install pyteledantic```


<h3>How to use</h3>

<h4>FastAPI</h4>


````python
from fastapi import FastAPI
from pyteledantic.models import Update


app = FastAPI()


@app.post("/")
async def root(update: Update):
    return update
````

