I'm using wikipedia-api on Python (also known as wikipediaapi). This is the following code that I use:
import wikipediaapi
wiki_wiki = wikipediaapi.Wikipedia('en')
page = wiki_wiki.page('Special:Random')
title = page.title
I'm expecting the output to be a random article name. How do I do this, or this repository didn't have anything for random articles?