├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── requirements.txt ├── scraper ├── __init__.py ├── __main__.py ├── datatypes.py ├── exceptions.py ├── scraper.py └── utils.py └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/requirements.txt -------------------------------------------------------------------------------- /scraper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/scraper/__init__.py -------------------------------------------------------------------------------- /scraper/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/scraper/__main__.py -------------------------------------------------------------------------------- /scraper/datatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/scraper/datatypes.py -------------------------------------------------------------------------------- /scraper/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/scraper/exceptions.py -------------------------------------------------------------------------------- /scraper/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/scraper/scraper.py -------------------------------------------------------------------------------- /scraper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/scraper/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lesander/fbgs/HEAD/setup.py --------------------------------------------------------------------------------