Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nkrumahthis/getting-to-philosophy
Does every recursive first link on wikipedia lead to philosophy?
https://github.com/nkrumahthis/getting-to-philosophy
Last synced: about 2 months ago
JSON representation
Does every recursive first link on wikipedia lead to philosophy?
- Host: GitHub
- URL: https://github.com/nkrumahthis/getting-to-philosophy
- Owner: nkrumahthis
- Created: 2024-04-04T02:27:48.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-05-19T13:16:03.000Z (8 months ago)
- Last Synced: 2024-05-19T14:29:02.425Z (8 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Getting to Philosophy
I read/heard somewhere years ago that if you click on the first link of any Wikipedia article long enough, you get to either the article on Mathematics or Philosophy.
I wrote this scraper to test that.
## Requirements
- Python 3+
- BeautifulSoup 4+
- requests## Usage
```bash
python3 -m venv .venv
. .venv/bin/activate
pip install -r requirements.txt
./gtp
```## UI
```bash
cd ui
bun install
bun run dev
```## Example
```text
Exploring Wikipedia to reach Philosophy page...
Starting from a random Wikipedia article...Exploring: André Green (psychoanalyst)
Following the first link: https://en.wikipedia.org/wiki/Cairo
Exploring: Cairo
Following the first link: https://en.wikipedia.org/wiki/Capital_city
Exploring: Capital city
Following the first link: https://en.wikipedia.org/wiki/Municipality
Exploring: Municipality
Following the first link: https://en.wikipedia.org/wiki/Administrative_division
Exploring: Administrative division
Following the first link: https://en.wikipedia.org/wiki/Sovereign_state
Exploring: Sovereign state
Following the first link: https://en.wikipedia.org/wiki/State_(polity)
Exploring: State (polity)
Following the first link: https://en.wikipedia.org/wiki/Politics
Exploring: Politics
Following the first link: https://en.wikipedia.org/wiki/Decision-making
Exploring: Decision
Following the first link: https://en.wikipedia.org/wiki/Psychology
Exploring: Psychology
Following the first link: https://en.wikipedia.org/wiki/Mind
Exploring: Mind
Following the first link: https://en.wikipedia.org/wiki/Thought
Exploring: Thought
Following the first link: https://en.wikipedia.org/wiki/Consciousness
Exploring: Consciousness
Following the first link: https://en.wikipedia.org/wiki/Awareness
Exploring: Awareness
Following the first link: https://en.wikipedia.org/wiki/Philosophy
You have reached the Wikipedia page for Philosophy!
```