Spaces:
Sleeping
Sleeping
File size: 247 Bytes
12d8c76 | 1 2 3 4 5 6 7 8 9 10 11 12 | import asyncio
from client import CsvCleanerEnv
async def main():
env = CsvCleanerEnv(base_url='http://localhost:8000')
await env.connect()
print('Connected!')
await env.close()
if __name__ == "__main__":
asyncio.run(main())
|