This is a webpage where you can find every Wikipedia article dated between two dates.
You can't find every article, only the ones I was able to scrape.
You can check it out at jonny.sytes.net/wikipedia
This works by scraping all the possible wikipedia articles and getting their dates. After that, everything else is storing it on a database and looking it up. The scraping is done by scraper.py.
In order to host this webpage yourself:
- Clone this repository:
git clone https://github.com/Jonny-exe/wiki-timeline
- Install all requirements:
pip install -r requirements.txt
- Run the website with:
python3 manage.py runserver 8080
- You will see the website on: 127.0.0.1
If you want to use pre-scraped articles, download the sqlite database, in the releases, and move it to the root directory.
- Database: sqlite
- Language: python
- Web-framework: django
If you are interested in improving or modifying anything, PR's are welcome.