This commit is contained in:
April 2022-10-07 22:54:12 -07:00
commit 1c9ba13401
No known key found for this signature in database
GPG Key ID: 17A9A017FAA4DE5E
4 changed files with 16 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Python Virtual Environment
venv/

0
README.md Normal file
View File

10
main.py Normal file
View File

@ -0,0 +1,10 @@
import asyncio
async def main():
print("Hello...")
await asyncio.sleep(1)
print("World!")
if __name__ == "__main__":
asyncio.run(main())

3
py2Lib/README.md Normal file
View File

@ -0,0 +1,3 @@
# py2Lib
A python implementation of i2Lib from the original i2MessageEncoder.