├── .gitattributes ├── .gitignore ├── README.md ├── add_matches.py ├── database_creation.py ├── scraping.py └── user_agents.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamculligan/football-data-scraper/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamculligan/football-data-scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamculligan/football-data-scraper/HEAD/README.md -------------------------------------------------------------------------------- /add_matches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamculligan/football-data-scraper/HEAD/add_matches.py -------------------------------------------------------------------------------- /database_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamculligan/football-data-scraper/HEAD/database_creation.py -------------------------------------------------------------------------------- /scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamculligan/football-data-scraper/HEAD/scraping.py -------------------------------------------------------------------------------- /user_agents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liamculligan/football-data-scraper/HEAD/user_agents.py --------------------------------------------------------------------------------