mirror of
https://github.com/bellingcat/instagram-location-search.git
synced 2026-06-11 20:18:27 +03:00
11 lines
252 B
Python
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
|