├── .gitignore ├── .travis.yml ├── LICENSE ├── Procfile ├── README.md ├── __init__.py ├── models.py ├── out ├── .gitkeep ├── sessions.json ├── speakers.json └── tracks.json ├── package.json ├── parser.py ├── requirements.txt ├── run.sh ├── schedule ├── generator.js └── schedule.tpl ├── scraper.py └── web └── hook.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: node web/hook.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/models.py -------------------------------------------------------------------------------- /out/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /out/sessions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/out/sessions.json -------------------------------------------------------------------------------- /out/speakers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/out/speakers.json -------------------------------------------------------------------------------- /out/tracks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/out/tracks.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/package.json -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/parser.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | jsonpickle 2 | simplejson 3 | validators 4 | pytz 5 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | python ./scraper.py 2 | -------------------------------------------------------------------------------- /schedule/generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/schedule/generator.js -------------------------------------------------------------------------------- /schedule/schedule.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/schedule/schedule.tpl -------------------------------------------------------------------------------- /scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/scraper.py -------------------------------------------------------------------------------- /web/hook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/open-event-scraper/HEAD/web/hook.js --------------------------------------------------------------------------------