2022-10-04 00:38:55 -03:00
2022-10-04 02:15:39 -03:00
2022-10-04 02:15:39 -03:00
2022-10-04 02:16:27 -03:00
2022-10-04 00:38:55 -03:00
2022-10-04 02:15:39 -03:00
2022-10-04 00:39:12 -03:00

.. code:: 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:
          frequency_page = await ppgee.frequency()
          print(frequency_page.history())
          await frequency_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%