mirror of
https://github.com/bellingcat/facebook-downloader.git
synced 2026-06-13 05:58:31 +03:00
13 lines
307 B
Python
13 lines
307 B
Python
from facebook_downloader.downloader import FacebookDownloader
|
|
|
|
def main():
|
|
try:
|
|
start = FacebookDownloader()
|
|
start.download_video()
|
|
|
|
except KeyboardInterrupt:
|
|
print('[WARNING] Process interrupted with Ctrl+C.')
|
|
|
|
except Exception as e:
|
|
print('[ERROR]', e)
|