From: Hugo Date: Mon, 9 Feb 2015 07:55:19 +0000 (+0200) Subject: Update docs to reflect current Twitter API X-Git-Tag: twitter-1.16.0~1^2~2 X-Git-Url: https://jfr.im/git/z_archive/twitter.git/commitdiff_plain/fec0468d0b12564f0642194a3d3949c2195f16b3 Update docs to reflect current Twitter API https://dev.twitter.com/rest/reference/get/lists/members Fixes #277. [CI skip] --- diff --git a/README b/README index afb587c..f1be25e 100644 --- a/README +++ b/README @@ -105,11 +105,11 @@ t.direct_messages.new( text="I think yer swell!") # Get the members of tamtar's list "Things That Are Rad" -t._("tamtar")._("things-that-are-rad").members() +t._("lists")._("members")(owner_screen_name="tamtar", slug="things-that-are-rad") # Note how the magic `_` method can be used to insert data # into the middle of a call. You can also use replacement: -t.user.list.members(user="tamtar", list="things-that-are-rad") +t.lists.members(owner_screen_name="tamtar", slug="things-that-are-rad") # An *optional* `_timeout` parameter can also be used for API # calls which take much more time than normal or twitter stops