An open API service indexing awesome lists of open source software.

https://github.com/danmichaelo/flfbot

Maintains a list of requested page moves and merges at Norwegian Bokmål Wikipedia
https://github.com/danmichaelo/flfbot

Last synced: about 2 months ago
JSON representation

Maintains a list of requested page moves and merges at Norwegian Bokmål Wikipedia

Awesome Lists containing this project

README

        

**FLFBot** (FLytteForslagBot) or FFBOT maintains [a list](https://no.wikipedia.org/wiki/Wikipedia:Flytteforslag) of requested page moves and merges at Norwegian Bokmål Wikipedia.

DB Setup: sqlite3 ffbot.db and
````
CREATE TABLE moves (
page TEXT NOT NULL,
target TEXT NOT NULL,
target2 TEXT NOT NULL,
date DATE NOT NULL,
revid INT NOT NULL,
parentid INT NOT NULL,
user TEXT NOT NULL,
comment TEXT NOT NULL,
reason TEXT NOT NULL,
PRIMARY KEY(page)
);
````