From 1c9ba1340109e5b32ab509160bc9f24445316e47 Mon Sep 17 00:00:00 2001 From: April Date: Fri, 7 Oct 2022 22:54:12 -0700 Subject: [PATCH] Init. --- .gitignore | 3 +++ README.md | 0 main.py | 10 ++++++++++ py2Lib/README.md | 3 +++ 4 files changed, 16 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 main.py create mode 100644 py2Lib/README.md 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