2025-01-03 17:56:26 -03:00
2023-07-19 03:49:56 -03:00
2025-01-03 17:53:45 -03:00
2023-07-19 03:49:56 -03:00
2022-10-04 02:16:27 -03:00
2025-01-03 17:56:26 -03:00
2025-01-03 17:54:17 -03:00

Example:


  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())
Description
No description provided
Readme 111 KiB
Languages
Python 92.8%
Dockerfile 7.2%