From b9aa2b35c8d21662a7b145f8064e851b62fac2d1 Mon Sep 17 00:00:00 2001 From: guitar9 Date: Sat, 28 Apr 2018 15:29:35 +0200 Subject: [PATCH] Update README.rst --- README.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index b7fbcf5..644ffc5 100644 --- a/README.rst +++ b/README.rst @@ -134,9 +134,9 @@ respective responses): .. code:: python # API methods for reading posts: - >>> j.get_posts_recent(skip=0, limit=60, after=None, mine=False, hashtag=None, channel=None) - >>> j.get_posts_popular(skip=0, limit=60, after=None, mine=False, hashtag=None, channel=None) - >>> j.get_posts_discussed(skip=0, limit=60, after=None, mine=False, hashtag=None, channel=None) + >>> j.get_posts_recent(skip=0, limit=60, after=None, mine=False, hashtag=None, channel='Main') + >>> j.get_posts_popular(skip=0, limit=60, after=None, mine=False, hashtag=None, channel='Main') + >>> j.get_posts_discussed(skip=0, limit=60, after=None, mine=False, hashtag=None, channel='Main') >>> j.get_pictures_recent(skip=0, limit=60, after=None) >>> j.get_pictures_popular(skip=0, limit=60, after=None) >>> j.get_pictures_discussed(skip=0, limit=60, after=None) @@ -146,7 +146,7 @@ respective responses): >>> j.post_search(message, skip=0, limit=60) # API methods for interacting with single posts: - >>> j.create_post(message=None, imgpath=None, b64img=None, color=None, ancestor=None, channel="") + >>> j.create_post(message=None, imgpath=None, b64img=None, color=None, ancestor=None, channel='Main') >>> j.get_post_details(post_id) # This endpoint has been deprecated. Use get_post_details_v3. >>> # This api endpoint implements paging and returns at most 50 replies, >>> # use the skip parameter to page through the thread: