Service that enables to run RcGcDw on bigger scale
Find a file
2020-07-29 00:25:49 +02:00
locale Added code 2020-07-20 01:40:20 +02:00
src Merge remote-tracking branch 'origin/newusers' 2020-07-29 00:25:49 +02:00
.gitignore Fix for python 3.7 2020-07-29 00:21:31 +02:00
README.md Buggy as hell non crashy version 2020-07-25 15:27:15 +02:00
requirements.txt Made it easier to setup 2020-07-23 21:12:07 +02:00
settings.json.example handle unknown events 2020-07-28 11:28:39 +02:00
start.py Init 2020-07-10 00:24:23 +02:00

Introduction

RcGcDb is a backend for handling webhooks to which recent changes of MediaWiki wikis are being pushed to.

Dependencies

  • Python 3.6>
  • requests 2.18.4>
  • beautifulsoup 4.6.0>
  • aiohttp 3.6.2>
  • lxml 4.2.1>

Installation

$ git clone git@gitlab.com:chicken-riders/rcgcdb.git #clone repo
$ cd RcGcDb
$ python3 -m venv . #(optional, if you want to contain everything (you should!))
$ source bin/activate #(optional, see above)
$ pip3 install -r requirements.txt #install requirements (lxml may require additional distro packages, more on that here https://lxml.de/build.html)
$ nano settings.json.example #edit the configuration file
$ mv settings.json.example settings.json
$ python3 start.py