:param cursor: |cursor|
:rtype: list of :class:`User` objects
-.. method:: API.search_users(q, [per_page], [page])
+.. method:: API.search_users(q, [count], [page])
Run a search for users similar to Find People button on Twitter.com;
the same results returned by people search on Twitter.com will be
this API.
:param q: The query to run against people search.
- :param per_page: Specifies the number of statuses to retrieve. May not be greater than 20.
+ :param count: Specifies the number of statuses to retrieve. May not be greater than 20.
:param page: |page|
:rtype: list of :class:`User` objects
:rtype: list of :class:`List` objects
-.. method:: API.list_timeline(owner, slug, [since_id], [max_id], [per_page], [page])
+.. method:: API.list_timeline(owner, slug, [since_id], [max_id], [count], [page])
Show tweet timeline for members of the specified list.
:param slug: |slug|
:param since_id: |since_id|
:param max_id: |max_id|
- :param per_page: Number of results per a page
+ :param count: Number of results per a page
:param page: |page|
:rtype: list of :class:`Status` objects