Currently YouTube is the only supported site, but that might change.
Contributions are welcome!
## CLI tool
Currently no documentation exists for the CLI tool.
## Usage as a module
There are docstrings included in the module (it is contained in `lostmediafinder`), but no `setup.py` or PyPI package is currently included. This is because it is not yet 100% stable (and I plan on adding support for more websites soon).
## Frontend
### Running in Docker(recommended):
There is an included Dockerfile that should work 100% fine.
If it doesn't work that is considered a bug, as it is the only supported method of running the site.
keys (list[Service]): An array with all the server responses. THIS IS DIFFERENT THAN BEFORE! Before, this would be an array of strings. You'd use the strings as keys. Now, this array has the data directly!
keys (list[YouTubeService]): An array with all the server responses. THIS IS DIFFERENT THAN BEFORE! Before, this would be an array of strings. You'd use the strings as keys. Now, this array has the data directly!
api_version (int): The API version. Currently set to %s. Breaking API changes are made by incrementing this. There may be a way to request a specific version in the future.
"""
id:str
status:str
keys:list[Service]
keys:list[YouTubeService]
api_version:int=2
@classmethod
def_get_services(cls):
returnService.__subclasses__()
returnYouTubeService.__subclasses__()
@classmethod
defgenerate(cls,id,asyncio=False):
@@ -176,5 +179,8 @@ class Response(JSONDataclass):