2024-07-11 10:25:19 +00:00
# Wikimore - A simple frontend for Wikimedia projects
2024-07-16 07:58:18 +00:00
[![Support Private.coffee! ](https://shields.private.coffee/badge/private.coffee-support%20us!-pink?logo=coffeescript )](https://private.coffee)
[![Matrix ](https://shields.private.coffee/badge/Matrix-join%20us!-blue?logo=matrix )](https://matrix.pcof.fi/#/#wikimore:private.coffee)
[![PyPI ](https://shields.private.coffee/pypi/v/wikimore )](https://pypi.org/project/wikimore/)
[![PyPI - Python Version ](https://shields.private.coffee/pypi/pyversions/wikimore )](https://pypi.org/project/wikimore/)
[![PyPI - License ](https://shields.private.coffee/pypi/l/wikimore )](https://pypi.org/project/wikimore/)
[![Latest Git Commit ](https://shields.private.coffee/gitea/last-commit/privatecoffee/wikimore?gitea_url=https://git.private.coffee )](https://git.private.coffee/privatecoffee/wikimore)
2024-07-11 10:25:19 +00:00
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
2024-07-16 07:58:18 +00:00
- Supports all Wikimedia projects in all languages
2024-07-11 10:25:19 +00:00
- Search functionality
- Proxy support for Wikimedia images
2024-07-16 07:58:18 +00:00
## Instances
| URL | Provided by | Country | Comments |
| ----------------------------------------------------------- | ----------------------------------------- | ------- | -------- |
| [wikimore.private.coffee ](https://wikimore.private.coffee/ ) | [Private.coffee ](https://private.coffee/ ) | Austria | |
If you operate a public instance of Wikimore and would like to have it listed here, please open an issue or a pull request.
2024-07-11 10:25:19 +00:00
## Installation
2024-07-16 07:58:18 +00:00
### Production
1. Create a virtual environment and activate it
```bash
python3 -m venv venv
source venv/bin/activate
```
2. Install the package from PyPI
```bash
pip install wikimore
```
3. Run the application
```bash
wikimore
```
4. Open your browser and navigate to `http://localhost:8109`
## Development
2024-07-11 10:25:19 +00:00
1. Clone the repository
2024-07-16 07:58:18 +00:00
```bash
git clone https://git.private.coffee/privatecoffee/wikimore.git
cd wikimore
```
2. Create a virtual environment and activate it
```bash
python3 -m venv venv
source venv/bin/activate
```
3. Install the package in editable mode
```bash
pip install -e .
```
4. Run the application
```bash
flask --app wikimore run
```
2024-07-11 10:25:19 +00:00
2024-07-16 07:58:18 +00:00
5. Open your browser and navigate to `http://localhost:5000`
2024-07-11 10:25:19 +00:00
## License
This project is licensed under the MIT License - see the [LICENSE ](LICENSE ) file for details.