- Takes two (usually random) wikipedia articles as input
- Finds a path between them, using only wiki links starting on those pages
- Prints the path between the two articles
- run
main.py - type in wikipedia links
- they can be either a wiki link or the title of an article
- quotes are necessary for command line args if the title has spaces
> python main.py
starting link: https://en.wikipedia.org/wiki/Avengers_(comics)
ending link: The Room
Searching...
Avengers_(comics)
Captain America: The First Avenger
Chris Evans (actor)
James Franco
The Room
> python main.py "Elon Musk" Muskrat
Searching...
Elon Musk
Mars Society
California
Utah
Muskrat
Include a file titled ".env" in your working directory with the token set like this:
TOKEN=<discord token>
> docker run -e TOKEN=<discord token> christullier/testbot
- this has only been tested on a Raspberry Pi 3b
Made using Python 3.9.2