Skip to content
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)

Contribution

It's open source and contributions are welcome via pull requests.

Clone this wiki locally