41 lines
1.1 KiB
Python
Executable File
41 lines
1.1 KiB
Python
Executable File
#!/usr/bin/python3
|
|
# coding: utf-8
|
|
|
|
import os
|
|
import json
|
|
import sys
|
|
|
|
# getting the name of the directory
|
|
# where the this file is present.
|
|
current = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
# Getting the parent directory name
|
|
# where the current directory is present.
|
|
parent = os.path.dirname(current)
|
|
|
|
# adding the parent directory to
|
|
# the sys.path.
|
|
sys.path.append(parent)
|
|
|
|
from src.agenda_culturel.import_tasks.downloader import *
|
|
from src.agenda_culturel.import_tasks.extractor import *
|
|
from src.agenda_culturel.import_tasks.importer import *
|
|
from src.agenda_culturel.import_tasks.extractor_facebook import *
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
u2e = URL2Events(ChromiumHeadlessDownloader(), FacebookEventExtractor(single_event=True))
|
|
url="https://www.facebook.com/events/877079547620370/877079557620369/?active_tab=about"
|
|
|
|
events = u2e.process(url, cache = "fb.html", published = True)
|
|
|
|
exportfile = "event-facebook.json"
|
|
print("Saving events to file {}".format(exportfile))
|
|
with open(exportfile, "w") as f:
|
|
json.dump(events, f, indent=4, default=str)
|
|
|