Skip to content

Latest commit

 

History

History
95 lines (63 loc) · 3.04 KB

File metadata and controls

95 lines (63 loc) · 3.04 KB
title PY: Reblog Post
position 11
description We will show how to reblog or repost post using Python, with username and posting private key.
layout full

Full, runnable src of Reblog Post can be downloaded as part of the PY tutorials repository.

Tutorial will also explain and show you how to sign/broadcast transaction on dPay blockchain using the dpay-python library.

Intro

dPay python library has built-in function to commit transaction and broadcast it to the network.

Steps

  1. App setup - Library install and import
  2. Post list - List of posts to select from trending filter
  3. Enter user credentials - Enter user credentails to sign transaction

1. App setup

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()

2. Post list

Next we will fetch and make list of accounts and setup pick properly.

    query = {
      "limit":5, #number of posts
      "tag":"" #tag of posts
    }
    # post list from trending post list
    posts = s.get_discussions_by_trending(query)

    title = 'Please choose post to reblog: '
    options = []
    # post list
    for post in posts:
      options.append('@'+post["author"]+'/'+post["permlink"])

This will show us list of posts to select in terminal/command prompt. And after selection we will get formatted post as an option variable.

3. Enter user credentials

Next in order to sign transaction, application asks for username and posting private key to sign transaction and broadcast it.

  # get index and selected post
  option, index = pick(options, title)
  pprint.pprint("You selected: "+option)

  account = input("Enter your username? ")
  wif = input("Enter your Posting private key? ")

  # commit or build transaction
  c = Commit(dpay=DPay(keys=[wif]))

  # broadcast transaction
  c.repost(option, account=account)

That's it, if transaction is successful you shouldn't see any error messages, otherwise you will be notified.

To Run the tutorial

  1. review dev requirements
  2. clone this repo
  3. cd tutorials/11_reblog_post
  4. pip install -r requirements.txt
  5. python index.py
  6. After a few moments, you should see output in terminal/command prompt screen.