├── Data ├── orgs │ ├── 2005.json │ ├── 2006.json │ ├── 2007.json │ ├── 2008.json │ ├── 2009-2013.json │ ├── 2014-2015.json │ ├── 2016-2017.json │ ├── 2018.json │ └── orgs_2019.json └── projects │ ├── 2005.json │ ├── 2006.json │ ├── 2007.json │ ├── 2008.json │ ├── 2009-2013.json │ ├── 2014-2015.json │ ├── 2016-2017.json │ └── 2018.json ├── README.md └── Scrapers ├── common.py ├── developer-scraper.py ├── melange-scraper.py └── summerofcode-scraper.py /Data/orgs/2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/orgs/2005.json -------------------------------------------------------------------------------- /Data/orgs/2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/orgs/2006.json -------------------------------------------------------------------------------- /Data/orgs/2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/orgs/2007.json -------------------------------------------------------------------------------- /Data/orgs/2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/orgs/2008.json -------------------------------------------------------------------------------- /Data/orgs/2009-2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/orgs/2009-2013.json -------------------------------------------------------------------------------- /Data/orgs/2014-2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/orgs/2014-2015.json -------------------------------------------------------------------------------- /Data/orgs/2016-2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/orgs/2016-2017.json -------------------------------------------------------------------------------- /Data/orgs/2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/orgs/2018.json -------------------------------------------------------------------------------- /Data/orgs/orgs_2019.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/orgs/orgs_2019.json -------------------------------------------------------------------------------- /Data/projects/2005.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/projects/2005.json -------------------------------------------------------------------------------- /Data/projects/2006.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/projects/2006.json -------------------------------------------------------------------------------- /Data/projects/2007.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/projects/2007.json -------------------------------------------------------------------------------- /Data/projects/2008.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/projects/2008.json -------------------------------------------------------------------------------- /Data/projects/2009-2013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/projects/2009-2013.json -------------------------------------------------------------------------------- /Data/projects/2014-2015.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/projects/2014-2015.json -------------------------------------------------------------------------------- /Data/projects/2016-2017.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/projects/2016-2017.json -------------------------------------------------------------------------------- /Data/projects/2018.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Data/projects/2018.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/README.md -------------------------------------------------------------------------------- /Scrapers/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Scrapers/common.py -------------------------------------------------------------------------------- /Scrapers/developer-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Scrapers/developer-scraper.py -------------------------------------------------------------------------------- /Scrapers/melange-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Scrapers/melange-scraper.py -------------------------------------------------------------------------------- /Scrapers/summerofcode-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzfr/GSoC-Data/HEAD/Scrapers/summerofcode-scraper.py --------------------------------------------------------------------------------