docs: use markdown

This commit is contained in:
2023-07-19 04:13:08 -03:00
parent 7c5c92f27a
commit 2b1a63c98d

24
README.md Normal file
View File

@@ -0,0 +1,24 @@
# Example:
```python
import asyncio
import logging
from ppgee import PPGEE
logging.basicConfig(level=logging.INFO)
async def main() -> None:
cpf = "00011122233"
async with PPGEE(user=cpf, password=cpf) as ppgee:
attendency_page = await ppgee.attendency()
print(attendency_page.history())
await attendency_page.confirm()
await asyncio.sleep(5)
if __name__ == "__main__":
asyncio.run(main())
```