mirror of
https://github.com/C5H12O5/syno-videoinfo-plugin.git
synced 2025-07-23 02:55:35 +00:00
11 lines
273 B
Python
11 lines
273 B
Python
"""Entry point for this plugin."""
|
|
from pathlib import Path
|
|
|
|
import scraper
|
|
|
|
if __name__ == "__main__":
|
|
# Prints the output of the scraper to the console.
|
|
root_dir = Path(__file__).resolve().parent
|
|
plugin_id = root_dir.name
|
|
print(scraper.scrape(plugin_id))
|