Files
instagram-location-search/instagram_locations/main.py
2023-01-10 21:34:28 +02:00

11 lines
252 B
Python

from instagram_locations.instagram_locations import main
def start():
try:
main()
except KeyboardInterrupt as ctrlc:
raise KeyboardInterrupt(ctrlc) from ctrlc
except Exception as err:
raise Exception(err) from err