This repository has been archived on 2024-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
Bebop/bebop/__main__.py

36 lines
953 B
Python
Raw Normal View History

2021-02-12 19:01:42 +01:00
import argparse
2021-03-28 18:28:35 +02:00
from bebop.browser.browser import Browser
from bebop.config import load_config
2021-04-19 02:04:18 +02:00
from bebop.fs import ensure_bebop_files_exist, get_config_path
from bebop.tofu import get_cert_stash_path, load_cert_stash, save_cert_stash
2021-02-12 19:01:42 +01:00
def main():
argparser = argparse.ArgumentParser()
2021-04-16 19:30:14 +02:00
argparser.add_argument("url", nargs="?", default=None)
2021-02-12 19:01:42 +01:00
args = argparser.parse_args()
if args.url:
start_url = args.url
else:
start_url = None
config_path = get_config_path()
config = load_config(config_path)
bebop_files_error = ensure_bebop_files_exist()
if bebop_files_error:
print("Bebop could not create local files:", bebop_files_error)
return
2021-03-13 16:33:04 +01:00
2021-04-19 02:04:18 +02:00
cert_stash_path = get_cert_stash_path()
2021-03-28 18:28:54 +02:00
cert_stash = load_cert_stash(cert_stash_path) or {}
2021-03-13 16:33:04 +01:00
try:
Browser(config, cert_stash).run(start_url=start_url)
2021-03-13 16:33:04 +01:00
finally:
save_cert_stash(cert_stash, cert_stash_path)
2021-02-12 19:01:42 +01:00
main()