generated from PlexSheep/baserepo
12 lines
223 B
Python
12 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
|
|
"""
|
|
...
|