'wikipediaapi and "Special:Random"

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?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source