mediawiki-utilities / python-mwapi

Simple Python Wrapper around MediaWiki API
http://pythonhosted.org/mwapi
MIT License
30 stars 11 forks source link

Add support for auto-converting iterable parameters to "|" separated strings #8

Closed halfak closed 8 years ago

halfak commented 9 years ago

This is one I think is worth discussion. I imagine that it would look something like this:

sess = mwapi.MWApi(...)
doc = sess.get(action='query',
               prop='revisions',
               revids=[123,456,789])