No description
Find a file
2025-05-06 08:30:51 +02:00
.forgejo/workflows chore(deps): update node.js to v22 2025-05-02 12:16:34 +00:00
.vscode refactor: restructure project for PyPI packaging 2024-07-16 09:58:18 +02:00
src/wikimore fix: Dark mode issues 2025-05-02 13:36:39 +02:00
.dockerignore chore: Add SudoVanilla instance (#55), some clarifications in README 2025-05-05 11:44:38 +02:00
.gitignore feat: Caching fetched text content 2025-04-13 13:59:51 +02:00
docker-compose-example.yml feat(ci): migrate to Forgejo Docker registry 2025-02-27 14:19:32 +01:00
Dockerfile chore: Add missing environment variable to Dockerfile 2025-05-02 13:21:13 +02:00
entrypoint.sh feat: Refactors Docker setup to improve security and efficiency 2025-01-31 09:22:29 +01:00
instances.json fix: Capitalization of instance name (#55) 2025-05-06 08:30:51 +02:00
LICENSE feat: initial setup of Wikimore Flask app with basic features 2024-07-11 12:25:19 +02:00
pyproject.toml chore: Version bump 2025-05-02 13:37:25 +02:00
README.md fix: Capitalization of instance name (#55) 2025-05-06 08:30:51 +02:00
renovate.json Add renovate.json 2025-03-04 16:12:03 +00:00
requirements-dev.txt chore: Add SudoVanilla instance (#55), some clarifications in README 2025-05-05 11:44:38 +02:00

Wikimore - A simple frontend for Wikimedia projects

Support Private.coffee! Matrix PyPI PyPI - Python Version PyPI - License Latest Git Commit

Wikimore is a simple frontend for Wikimedia projects. It uses the MediaWiki API to fetch data from Wikimedia projects and display it in a user-friendly way. It is built using Flask.

This project is still in development and more features will be added in the future. It is useful for anyone who wants to access Wikimedia projects with a more basic frontend, or to provide access to Wikimedia projects to users who cannot access them directly, for example due to state censorship.

Features

  • Supports all Wikimedia projects in all languages
  • Search functionality
  • Proxy support for Wikimedia images

Instances

URL Provided by Country Notes
wikimore.private.coffee Private.coffee Austria 🇦🇹 🇪🇺 Main instance
wm.bloat.cat Bloat.cat Germany 🇩🇪 🇪🇺
wm2.bloat.cat Bloat.cat Germany 🇩🇪 🇪🇺
wikimore.blitzw.in Blitzw.in Denmark 🇩🇰 🇪🇺
wikimore.lumaeris.com Lumaeris Germany 🇩🇪 🇪🇺
wikimore.darkness.services Darkness.services United States 🇺🇸
wp.dc09.ru dc09.ru Russian Federation 🇷🇺
wikipedia.sudovanilla.org SudoVanilla United States 🇺🇸

Tor Hidden Services

URL Provided by Country Notes
wikimore.coffee2m3bjsrrqqycx6ghkxrnejl2q6nl7pjw2j4clchjj6uk5zozad.onion Private.coffee Austria 🇦🇹 🇪🇺
wikimore.darknessrdor43qkl2ngwitj72zdavfz2cead4t5ed72bybgauww5lyd.onion Darkness.services United States 🇺🇸

Adding Your Instance

To add your own instance to this list, please modify instances.json, run ilgen, and open a pull request, or just open an issue letting us know about your instance, see below.

Opening Issues

If you're having problems using Wikimore, or if you have ideas or feedback for us, feel free to open an issue in the Private.coffee Git or on Github.

Of course, you can also join our Matrix room to discuss your ideas with us.

Installation

Production

  1. Create a virtual environment and activate it
python3 -m venv venv
source venv/bin/activate
  1. Install the package from PyPI
pip install wikimore
  1. Run the application
wikimore
  1. Open your browser and navigate to http://localhost:8109

Docker

Notice: The current Docker image is now only hosted on the Private.coffee Git. Please update your Docker Compose file to use git.private.coffee/privatecoffee/wikimore:latest instead of privatecoffee/wikimore:latest.

For your convenience, we also provide a Docker image. Note however that this is not the recommended way to run Wikimore.

You can use the bundled docker-compose-example.yml file to run Wikimore with Docker Compose.

cp docker-compose-example.yml docker-compose.yml
docker compose up -d

This will start a container with Wikimore on port 8109. You can change the port in your docker-compose.yml file.

Development

  1. Clone the repository
git clone https://git.private.coffee/privatecoffee/wikimore.git
cd wikimore
  1. Create a virtual environment and activate it
python3 -m venv venv
source venv/bin/activate
  1. Install the package in editable mode
pip install -e .
  1. Run the application
flask --app wikimore run
  1. Open your browser and navigate to http://localhost:5000

License

This project is licensed under the MIT License - see the LICENSE file for details.