gitextract_yyr6quhs/ ├── .github/ │ ├── actions/ │ │ └── get-events-action/ │ │ ├── Dockerfile │ │ ├── action.yml │ │ └── entrypoint.sh │ └── workflows/ │ └── main.yml ├── .gitignore ├── .readthedocs.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── HISTORY.md ├── LICENSE ├── README.md ├── conrad/ │ ├── __init__.py │ ├── __main__.py │ ├── __version__.py │ ├── cli.py │ ├── db.py │ ├── models.py │ ├── schema.py │ └── utils.py ├── crawlers/ │ ├── __init__.py │ ├── base.py │ ├── confs_tech/ │ │ ├── __init__.py │ │ └── confs_tech_crawler.py │ ├── italy/ │ │ ├── __init__.py │ │ └── italy_crawler.py │ ├── papercall/ │ │ ├── __init__.py │ │ └── papercall_crawler.py │ ├── pycon/ │ │ ├── __init__.py │ │ └── pycon_crawler.py │ ├── pydata/ │ │ ├── __init__.py │ │ └── pydata_crawler.py │ └── python/ │ ├── __init__.py │ └── python_crawler.py ├── data/ │ ├── confstech.json │ ├── events.json │ ├── events_v2.json │ ├── italy.json │ ├── pycon.json │ ├── pydata.json │ └── python.json ├── docs/ │ ├── Makefile │ ├── _templates/ │ │ ├── hacks.html │ │ ├── sidebarintro.html │ │ └── sidebarlogo.html │ ├── _themes/ │ │ ├── .gitignore │ │ ├── LICENSE │ │ └── flask_theme_support.py │ ├── conf.py │ ├── dev/ │ │ ├── adding-crawlers.rst │ │ └── adding-events.rst │ ├── index.rst │ └── make.bat ├── setup.py └── tests/ ├── test_conrad.py └── test_geocoding.py