mmohades / Venmo

Venmo API client for Python
GNU General Public License v3.0
145 stars 43 forks source link

Unexpected Keyword "Page" #42

Closed damanc7 closed 3 years ago

damanc7 commented 3 years ago

users = venmo.user.search_for_users(query="Peter", page=2) Traceback (most recent call last): File "<input>", line 3, in <module> TypeError: search_for_users() got an unexpected keyword argument 'page'

mmohades commented 3 years ago

The API has been updated but the doc is still outdated. You may just call it like users = venmo.user.search_for_users(query="Peter") There is no page function argument anymore.