Use fire for CLI

This commit is contained in:
Felix Blanke 2023-08-17 22:21:08 +02:00
parent 2e91f30d7f
commit f34e5faecc

View File

@ -1,5 +1,6 @@
from pathlib import Path from pathlib import Path
import fire
import pandas as pd import pandas as pd
from selenium import webdriver from selenium import webdriver
from selenium.webdriver.firefox.options import Options from selenium.webdriver.firefox.options import Options
@ -113,4 +114,4 @@ def main(
if __name__ == "__main__": if __name__ == "__main__":
main() fire.Fire(main)