This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
pt/python/libpt/__init__.pyi
PlexSheep 0f2b62c999
theoretical pyhton stubs and bindings
but they are not usable for some reason
2023-07-09 19:08:55 +02:00

14 lines
269 B
Python

"""
# libpt python bindings
`libpt` is originally implemented in rust, but offers a python module too.
"""
from . import logger
from . import networking
from . import common
def is_loaded() -> bool:
"""
returns true if `libpt` has been loaded
"""
...