molybdenum-99/mediawiktory

Better API for multivalue params

Opened this issue · 0 comments

For example: https://en.wikipedia.org/w/api.php?action=help&modules=query%2Bgeosearch
gscoord param is

Format: Latitude and longitude separated by pipe ("|").

Current usage:

api.query.geosearch('50.004444|36.231389')....

Should be:

api.query.geosearch(50.004444, 36.231389)....