-
Notifications
You must be signed in to change notification settings - Fork 0
Home
bpph edited this page May 25, 2025
·
2 revisions
Welcome to the KEGScraper wiki!
KEGScraper is a Python library for webscraping/using a bot for various services used by KEGS. It's split into various sub-modules for dealing with each different service.
e.g. A script to view various web articles on https://it.kegs.org.uk/
from kegscraper import it, exceptions
for i in range(1000):
try:
article = it.get_article_by_id(i)
print(article.title, article)
except exceptions.NotFound as e:
...
Documentation is ('soon' going to be) available for each sub-module of KEGScraper
- Bromcom
- IT
- Oliver
- Papercut
- Site
- VLE (KEGSNet)
It's open source and contributions are welcome via pull requests.