| title | PY: Get Post Replies |
|---|---|
| position | 4 |
| description | Fetch comments made on each content or post using Python. |
| layout | full |
Full, runnable src of Get Post Replies can be downloaded as part of the PY tutorials repository.
This tutorial will explain and show you how to access the dPay blockchain using the dpay-python library to fetch list of posts and get replies info on selected post.
dPay python library has built-in function to get active voters information if post with author and permlink as an argument. Since we don't have predefined post or author/permlink. We will fetch post list from previous tutorial and give option to choose one post to get its active voters. get_content_replies function fetches list of replies on content. Note that get_discussions_by_hot filter is used for fetching 5 posts and after selection of post tutorial uses author and permlink of the post to fetch replies.
- App setup - Library install and import
- Post list - List of posts to select from created filter
- Replies list - Get replies list for selected post
- Print output - Print results in output
In this tutorial we use 3 packages, pick - helps us to select filter interactively. dpay - dpay-python library, interaction with Blockchain. pprint - print results in better format.
First we import all three library and initialize DPay class
import pprint
from pick import pick
# initialize DPay class
from dpay import DPay
s = DPay()Next we will fetch and make list of posts and setup pick properly.
query = {
"limit":5, #number of posts
"tag":"" #tag of posts
}
#post list for selected query
posts = s.get_discussions_by_hot(query)
title = 'Please choose post: '
options = []
#posts list options
for post in posts:
options.append(post["author"]+'/'+post["permlink"])
# get index and selected filter name
option, index = pick(options, title)This will show us list of posts to select in terminal/command prompt. And after selection we will get index and post name to index and option variables.
Next we will replies on selected post with get_content_replies.
# get replies for given post
replies = s.get_content_replies(posts[index]["author"],posts[index]["permlink"])Next, we will print result, replies on selected post, selected post details and number of replies.
# print post details for selected post
pprint.pprint(replies)
pprint.pprint("Selected: "+option)
pprint.pprint("Number of replies: "+str(len(replies)))The example of result returned from the service is a JSON object with the following properties:
[{'abs_rshares': 0,
'active': '2018-06-15T10:43:36',
'active_votes': [],
'allow_curation_rewards': True,
'allow_replies': True,
'allow_votes': True,
'author': 'sarcasms',
'author_reputation': 1086863019,
'author_rewards': 0,
'beneficiaries': [],
'body': 'follow us for news, media, memes, sports updates and lots '
'more...',
'body_length': 0,
'cashout_time': '2018-06-22T10:43:36',
'category': 'fiction',
'children': 0,
'children_abs_rshares': 0,
'created': '2018-06-15T10:43:36',
'curator_payout_value': '0.000 BBD',
'depth': 1,
'id': 53110589,
'json_metadata': '{"tags":["fiction"],"users":["sarcasms"],"app":"dsite/0.1"}',
'last_payout': '1970-01-01T00:00:00',
'last_update': '2018-06-15T10:43:36',
'max_accepted_payout': '1000000.000 BBD',
'max_cashout_time': '1969-12-31T23:59:59',
'net_rshares': 0,
'net_votes': 0,
'parent_author': 'muratkbesiroglu',
'parent_permlink': 'short-sci-fi-story-the-android-that-sell-meaning',
'pending_payout_value': '0.000 BBD',
'percent_dpay_dollars': 10000,
'permlink': 're-muratkbesiroglu-short-sci-fi-story-the-android-that-sell-meaning-20180615t104323737z',
'promoted': '0.000 BBD',
'reblogged_by': [],
'replies': [],
'reward_weight': 10000,
'root_author': 'muratkbesiroglu',
'root_permlink': 'short-sci-fi-story-the-android-that-sell-meaning',
'root_title': 'Short Sci-Fi Story: The Android That Sell Meaning',
'title': '',
'total_payout_value': '0.000 BBD',
'total_pending_payout_value': '0.000 BEX',
'total_vote_weight': 0,
'url': '/fiction/@muratkbesiroglu/short-sci-fi-story-the-android-that-sell-meaning#@sarcasms/re-muratkbesiroglu-short-sci-fi-story-the-android-that-sell-meaning-20180615t104323737z',
'vote_rshares': 0},
{'abs_rshares': 0,
'active': '2018-06-15T11:26:15',
'active_votes': [],
'allow_curation_rewards': True,
'allow_replies': True,
'allow_votes': True,
'author': 'vicky3585',
'author_reputation': 40338001,
'author_rewards': 0,
'beneficiaries': [],
'body': 'lovely story keep it up...',
'body_length': 0,
'cashout_time': '2018-06-22T11:26:15',
'category': 'fiction',
'children': 0,
'children_abs_rshares': 0,
'created': '2018-06-15T11:26:15',
'curator_payout_value': '0.000 BBD',
'depth': 1,
'id': 53114015,
'json_metadata': '{"tags":["fiction"],"app":"dsite/0.1"}',
'last_payout': '1970-01-01T00:00:00',
'last_update': '2018-06-15T11:26:15',
'max_accepted_payout': '1000000.000 BBD',
'max_cashout_time': '1969-12-31T23:59:59',
'net_rshares': 0,
'net_votes': 0,
'parent_author': 'muratkbesiroglu',
'parent_permlink': 'short-sci-fi-story-the-android-that-sell-meaning',
'pending_payout_value': '0.000 BBD',
'percent_dpay_dollars': 10000,
'permlink': 're-muratkbesiroglu-short-sci-fi-story-the-android-that-sell-meaning-20180615t112615204z',
'promoted': '0.000 BBD',
'reblogged_by': [],
'replies': [],
'reward_weight': 10000,
'root_author': 'muratkbesiroglu',
'root_permlink': 'short-sci-fi-story-the-android-that-sell-meaning',
'root_title': 'Short Sci-Fi Story: The Android That Sell Meaning',
'title': '',
'total_payout_value': '0.000 BBD',
'total_pending_payout_value': '0.000 BEX',
'total_vote_weight': 0,
'url': '/fiction/@muratkbesiroglu/short-sci-fi-story-the-android-that-sell-meaning#@vicky3585/re-muratkbesiroglu-short-sci-fi-story-the-android-that-sell-meaning-20180615t112615204z',
'vote_rshares': 0}]
'Selected: muratkbesiroglu/short-sci-fi-story-the-android-that-sell-meaning'
'Number of replies: 18'From this result you have access to everything associated to the replies including content of reply, author, timestamp, etc., so that you can be use in further development of application with Python.
That's it!
- review dev requirements
- clone this repo
cd tutorials/04_get_post_repliespip install -r requirements.txtpython index.py- After a few moments, you should see output in terminal/command prompt screen.