generated from PlexSheep/baserepo
13 lines
223 B
Python
13 lines
223 B
Python
|
"""
|
||
|
# libpt python bindings
|
||
|
|
||
|
`libpt` is originally implemented in rust, but offers a python module too.
|
||
|
"""
|
||
|
from . import logger
|
||
|
|
||
|
def is_loaded() -> bool:
|
||
|
"""
|
||
|
returns true if `libpt` has been loaded
|
||
|
"""
|
||
|
...
|