- Notifications
You must be signed in to change notification settings - Fork8
Python script that generates a SQLite database from TibiaWiki articles
License
Galarzaa90/tibiawiki-sql
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Script that generates a sqlite database for the MMO Tibia.
Inspired inMytherin's Tibiaylzer TibiaWiki parsing script.
This script fetches data from TibiaWiki via its API, compared to relying ondatabase dumpsthat are not updated as frequently. By using the API, the data obtained is always fresh.
This script is not intended to be running constantly, it is meant to be run once, generate a sqlite database and use itexternally.
If you integrate this into your project or use the generated data, make sure to creditTibiaWiki and its contributors.
- Python 3.6 or higher
- requests module
- click module
- colorama module
To install the latest version on PyPi:
pip install tibiawikisql
or
Install the latest version from GitHub
pip install git+https://github.com/Galarzaa90/tibiawiki-sql.git
python -m tibiawikisql generate
OR
tibiawikisql
The process can be long, taking up to 10 minutes the first time. All images are saved to theimages
folder. Onsubsequent runs, images will be read from disk instead of being fetched from TibiaWiki again.If a newer version of the image has been uploaded, it will be updated.
When done, a database file calledtibiawiki.db
will be found on the folder.
The database can also be generated without installing the project, it's dependencies, or Python, by using Docker.Make sure to have Docker installed, then simply run:
generateWithDocker.sh
The script will build a Docker image and run the script inside a container. Thetibiawiki.db
file will end up inthe project's root directory as normal.
- Achievements
- Charms
- Creatures
- Creature drop statistics
- Houses
- Imbuements
- Items
- Mounts
- NPCs
- NPC offers
- Outfits
- Quests
- Spells
- Updates
- Worlds
Check out thedocumentation page.
Improvements and bug fixes are welcome, via pull requests
For questions, suggestions and bug reports, submit an issue.
The best way to contribute to this project is by contributing toTibiaWiki.
About
Python script that generates a SQLite database from TibiaWiki articles