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
- Host: GitHub
- URL: https://github.com/danmichaelo/flfbot
- Owner: danmichaelo
- License: unlicense
- Created: 2012-11-30T23:27:49.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-08-06T21:19:01.000Z (over 2 years ago)
- Last Synced: 2025-02-15T08:47:21.758Z (2 months ago)
- Language: Python
- Homepage: https://no.wikipedia.org/wiki/Wikipedia:Flytteforslag
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
);
````