An open API service indexing awesome lists of open source software.

https://github.com/danmichaelo/mwcats

Simple tools to work with an article's category tree using mwclient
https://github.com/danmichaelo/mwcats

Last synced: 9 days ago
JSON representation

Simple tools to work with an article's category tree using mwclient

Awesome Lists containing this project

README

          

Example:
````
import mwclient, mwcats
site = mwclient.Site('en.wikipedia.org')
a = mwcats.Article(site, 'Cake')
a.get_path('Subjects taught in medical school')
````
returns
````
['Subjects taught in medical school',
u'Neurology',
u'Intelligence',
u'Skills',
u'Food and drink preparation',
u'Cooking',
u'Cooking techniques',
u'Foods by cooking technique',
u'Baked goods',
u'Cakes']
````