Use 'per_page' instead of 'count' paramter for list_timeline() method.
authorJoshua Roesslein <jroesslein@gmail.com>
Fri, 23 Apr 2010 20:09:30 +0000 (15:09 -0500)
committerJoshua Roesslein <jroesslein@gmail.com>
Fri, 23 Apr 2010 20:09:30 +0000 (15:09 -0500)
Fixes issue #27

doc/api.rst
tweepy/api.py

index 11a3b20d98acf8913fb01642babaafdbf393781b..8f05a2cb4e981089b1301fcc0aa93a914816f567 100644 (file)
@@ -706,7 +706,7 @@ List Methods
    :rtype: list of :class:`List` objects
 
 
-.. method:: API.list_timeline(owner, slug, [since_id], [max_id], [count], [page])
+.. method:: API.list_timeline(owner, slug, [since_id], [max_id], [per_page], [page])
 
    Show tweet timeline for members of the specified list.
 
@@ -714,7 +714,7 @@ List Methods
    :param slug: |slug|
    :param since_id: |since_id|
    :param max_id: |max_id|
-   :param count: |count|
+   :param per_page: Number of results per a page
    :param page: |page|
    :rtype: list of :class:`Status` objects
 
index 734e1ca4b1a0d0b209ffa30a96e7e8dbf26bf1c4..27460e80c8269f4768e91a4ffd05655f38fb21a9 100644 (file)
@@ -548,7 +548,7 @@ class API(object):
     list_timeline = bind_api(
         path = '/{owner}/lists/{slug}/statuses.json',
         payload_type = 'status', payload_list = True,
-        allowed_param = ['owner', 'slug', 'since_id', 'max_id', 'count', 'page']
+        allowed_param = ['owner', 'slug', 'since_id', 'max_id', 'per_page', 'page']
     )
 
     get_list = bind_api(