Wikipedia for WAP devices - Access Wikipedia content on WAP-enabled mobile phones.
WAPipedia is a server that uses Wikipedia ZIM files to serve articles in WML format, making them accessible on WAP 1.0 devices. Bridging the knowledge gap to old mobile devices and very low bandwidth connections.
This project is part of Bevelgacom a Retro ISP focussed on re-building the WPA internet.
The project uses Kiwix ZIM files for offline Wikipedia content to not put load on Wikipedia servers and allow for building an off-internet WAP server box.
You can try this out on http://wiki.bevelgacom.be/
First, download a Wikipedia dump. For testing, use the "top100" dump (~313MB):
./wapipedia download -lang top100 -dest ./data./wapipedia serve --zim ./data/wikipedia_en_100_2025-10-01.zim -port 8080Open your WAP browser and navigate to:
http://your-server:8080/
# Start the server
wapipedia serve [-zim path/to/file.zim] [-port 8080]
# Download a Wikipedia dump
wapipedia download -lang <language> -dest <directory>
# List available dumps
wapipedia list
# Show help
wapipedia helpWAPIPEDIA_ZIM- Path to the ZIM file to use
go build ./cmd/wapipediadocker build -t wapipedia .
docker run -p 8080:8080 -v ./data:/data -e WAPIPEDIA_ZIM=/data/wikipedia_en_100_2025-10.zim wapipedia