2022-09-16 19:19:12 -03:00
2022-10-03 22:11:14 -03:00
2022-09-16 19:19:12 -03:00
2022-10-03 21:35:45 -03:00
2022-09-16 19:19:12 -03:00
2022-09-16 19:19:12 -03:00
2022-10-03 21:42:52 -03:00

.. code:: python

  import asyncio
  from ppgee import PPGEE


  async def main():
      cpf = "00011122233"
      async with PPGEE(user=cpf, password=cpf) as ppgee:
          response = await ppgee.frequency()
          if "Opção não disponível" in response:
              print("Not ready yet")
          await asyncio.sleep(5)


  if __name__ == "__main__":
      asyncio.run(main())
Description
No description provided
Readme 111 KiB
Languages
Python 92.8%
Dockerfile 7.2%