commit 1c9ba1340109e5b32ab509160bc9f24445316e47 Author: April Date: Fri Oct 7 22:54:12 2022 -0700 Init. diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2125718 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Python Virtual Environment +venv/ + diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..55bd3d6 --- /dev/null +++ b/main.py @@ -0,0 +1,10 @@ +import asyncio + +async def main(): + print("Hello...") + await asyncio.sleep(1) + print("World!") + + +if __name__ == "__main__": + asyncio.run(main()) \ No newline at end of file diff --git a/py2Lib/README.md b/py2Lib/README.md new file mode 100644 index 0000000..46486d3 --- /dev/null +++ b/py2Lib/README.md @@ -0,0 +1,3 @@ +# py2Lib + +A python implementation of i2Lib from the original i2MessageEncoder. \ No newline at end of file