mirror of
https://github.com/mewtek/i2ME-Legacy.git
synced 2025-05-11 00:57:31 -05:00
Init.
This commit is contained in:
commit
1c9ba13401
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
# Python Virtual Environment
|
||||
venv/
|
||||
|
10
main.py
Normal file
10
main.py
Normal 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
3
py2Lib/README.md
Normal file
@ -0,0 +1,3 @@
|
||||
# py2Lib
|
||||
|
||||
A python implementation of i2Lib from the original i2MessageEncoder.
|
Loading…
x
Reference in New Issue
Block a user