14 lines
209 B
Python
Executable file
14 lines
209 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import asyncio
|
|
from nio import AsyncClient
|
|
|
|
def main():
|
|
asyncio.get_event_loop().run_until_complete(loop())
|
|
|
|
async def loop():
|
|
print(123)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|