[Python #3] Learning Python with Selenium - Dictionary [CN] by june0620

View this thread on steempeak.com
· @june0620 · (edited)
$7.61
[Python #3] Learning Python with Selenium - Dictionary [CN]
dictionary(以下称dict)是由key和value组成的collection。类似于java的Map
因key是固定值,所以一般都是字符转类型,value可容纳python所有的对象。(tuple也可以用于key)

控制steemit网站不太好使用dict。以后学steemit python库的时候再详细学习下dict。
这次就简单学习, 就从帖子目录获取标题,作者,URL,名声,发帖日期,点赞状态,收益保存到dict。

### Scenario

1. 登录Steemit
2. 获取帖子目录并保存为list
3. 循环目录并把信息保存到dict输出到控制台

### Source
```
from selenium import webdriver
import time
from selenium.common.exceptions import NoSuchElementException
import pprint

def login():
    # Click the login button
    chrome.find_element_by_xpath('//Header/descendant::a[text()="로그인"]').click()
    # Enter username
    chrome.find_element_by_xpath('//input[contains(@name,"username")]').send_keys('june0620')
    # Get posting key from file
    with open('C:/Users/USER/Desktop/python/june0620.txt') as pw:
        for postingKey in pw:
            # Enter posting key
            chrome.find_element_by_xpath('//input[contains(@name,"password")]').send_keys(postingKey)
            # Click the login button
            chrome.find_element_by_xpath('//button[text()="로그인"]').click()
    # Waiting for N seconds
    time.sleep(3)

# Set chromedriver
chrome = webdriver.Chrome('C:/Users/USER/Desktop/python/chromedriver/chromedriver.exe')
steemit = 'https://steemit.com'
# Set window maximum
chrome.maximize_window()
# chrome.implicitly_wait(2)
chrome.get(steemit)
# Call function 'login'
login()

chrome.get('https://steemit.com/trending/kr')
posts_list = chrome.find_elements_by_xpath('//ul[contains(@class,"PostsList")]/li')

post_info_list = []
for post in posts_list:
    post_info = {
        "title": post.find_element_by_xpath('descendant::h2').text,
        'url': post.find_element_by_xpath('descendant::h2/a').get_attribute('href'),
        'username': post.find_element_by_xpath('descendant::span[@class="author"]/strong').text,
        'reputation': post.find_element_by_xpath('descendant::span[@class="Reputation"]').text,
        'post_date': post.find_element_by_xpath('descendant::span[@class="updated"]').text,
        'upvoting_status': post.find_element_by_xpath('descendant::span[@class="Voting__inner"]/span[1]').get_attribute('class'),
        'rewards': post.find_element_by_xpath('descendant::span[@class="FormattedAsset "]').text
    }
    post_info_list.append(post_info)
pprint.pprint(post_info_list)
chrome.quit()
```

### 演示视频
https://youtu.be/x2z6ifOEJAg

### 本次内容

**Python:**

1. dict不支持顺序类似于set。两者都用中括号{},所以初始化的时候要注意,特别是在创建空集合的时候不能以a = {} 这样的方式写入,因为python会识别为dict。要创建空集合应以a = set()形式定义。
2. 在控制台输出的时候,最好用pprint()module的pprint()函数来改装dict。

**Reference:**
[[Python #2] Learning Python with Selenium - List and set [CN]](https://steemit.com/cn/@june0620/python-2-learning-python-with-selenium-list-and-set-cn)
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 127 others
👎  
properties (23)
post_id80,898,330
authorjune0620
permlinkpython-3-learning-python-with-selenium-dictionary-cn
categorycn
json_metadata{"tags":["cn","zzan","jjm","sct","sct-cn","sct-freeboard","palnet","liv","lifestyle","dblog","python","coding","partiko"],"links":["https:\/\/youtu.be\/x2z6ifOEJAg","https:\/\/steemit.com\/cn\/@june0620\/python-2-learning-python-with-selenium-list-and-set-cn"],"app":"partiko","format":"markdown","canonical_url":"https:\/\/www.steemcoinpan.com\/@june0620\/python-3-learning-python-with-selenium-dictionary-cn"}
created2019-10-15 08:35:27
last_update2019-10-15 16:25:18
depth0
children32
net_rshares25,566,074,515,836
last_payout2019-10-22 08:35:27
cashout_time1969-12-31 23:59:59
total_payout_value3.933 SBD
curator_payout_value3.674 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length2,692
author_reputation219,336,602,045,061
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars0
author_curate_reward""
vote details (192)
@lovelemon ·
@tipu curate

Posted using [Partiko Android](https://partiko.app/referral/lovelemon)
properties (22)
post_id80,898,418
authorlovelemon
permlinklovelemon-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084014887z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 08:40:15
last_update2019-10-15 08:40:15
depth1
children2
net_rshares0
last_payout2019-10-22 08:40:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length84
author_reputation33,971,217,438,318
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@tipu ·
<a href="https://tipu.online/curator?lovelemon" target="_blank">Upvoted &#128076;</a>
properties (22)
post_id80,898,431
authortipu
permlinkre-lovelemon-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084014887z-20191015t084033
categorycn
json_metadata{}
created2019-10-15 08:40:36
last_update2019-10-15 08:40:36
depth2
children0
net_rshares0
last_payout2019-10-22 08:40:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length85
author_reputation55,804,171,747,699
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@june0620 ·
谢谢你的tipiu 😀

Posted using [Partiko Android](https://partiko.app/referral/june0620)
properties (22)
post_id80,898,536
authorjune0620
permlinkjune0620-re-lovelemon-lovelemon-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084547076z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 08:45:48
last_update2019-10-15 08:45:48
depth2
children0
net_rshares0
last_payout2019-10-22 08:45:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length82
author_reputation219,336,602,045,061
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ravenkim ·
!shop
properties (22)
post_id80,898,444
authorravenkim
permlinkre-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084115253z
categorycn
json_metadata{"community":"busy","app":"busy\/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[]}
created2019-10-15 08:41:18
last_update2019-10-15 08:41:18
depth1
children1
net_rshares0
last_payout2019-10-22 08:41:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5
author_reputation244,843,674,682,222
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@june0620 ·
감사합니다^^

Posted using [Partiko Android](https://partiko.app/referral/june0620)
properties (22)
post_id80,898,593
authorjune0620
permlinkjune0620-re-ravenkim-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084723599z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 08:47:24
last_update2019-10-15 08:47:24
depth2
children0
net_rshares0
last_payout2019-10-22 08:47:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length78
author_reputation219,336,602,045,061
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamcn-shop ·
你好鸭,june0620!
@ravenkim赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 33枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
post_id80,898,448
authorteamcn-shop
permlinkre-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084115253z
categorycn
json_metadata"{"app":"teamcn-shop bot\/1.0"}"
created2019-10-15 08:41:30
last_update2019-10-15 08:41:30
depth1
children6
net_rshares0
last_payout2019-10-22 08:41:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length290
author_reputation65,900,527,192,856
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bluengel ·
Scissors

Posted using [Partiko Android](https://partiko.app/referral/bluengel)
properties (22)
post_id80,898,518
authorbluengel
permlinkbluengel-re-teamcn-shop-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084510171z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 08:45:09
last_update2019-10-15 08:45:09
depth2
children5
net_rshares0
last_payout2019-10-22 08:45:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length79
author_reputation487,279,092,618,993
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamcn-shop ·
https://3.bp.blogspot.com/-5H1CgvU1VD8/WoGwGhtQe6I/AAAAAAATXJU/KY0eCFjyWT02REouDSyRz-o2Pf-Q0OEHwCLcBGAs/s1600/AW785125_21.gif 
 It’s a tie! 平局!想不到你也出鸡爪!
properties (22)
post_id80,898,528
authorteamcn-shop
permlinkbluengel-re-teamcn-shop-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084510171z
categorycn
json_metadata"{"app":"teamcn-shop bot\/1.0"}"
created2019-10-15 08:45:18
last_update2019-10-15 08:45:18
depth3
children4
net_rshares0
last_payout2019-10-22 08:45:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length152
author_reputation65,900,527,192,856
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bluengel ·
!shop

@tipu nominate

항상 행복한 💙 오늘 보내셔용~*^^*

Posted using [Partiko Android](https://partiko.app/referral/bluengel)
properties (22)
post_id80,898,506
authorbluengel
permlinkbluengel-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084452450z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 08:44:54
last_update2019-10-15 08:44:54
depth1
children4
net_rshares0
last_payout2019-10-22 08:44:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length115
author_reputation487,279,092,618,993
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@june0620 ·
감사합니다^^
행복한 하루 보내셔요~
!shop

Posted using [Partiko Android](https://partiko.app/referral/june0620)
properties (22)
post_id80,898,611
authorjune0620
permlinkjune0620-re-bluengel-bluengel-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084803229z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 08:48:03
last_update2019-10-15 08:48:03
depth2
children0
net_rshares0
last_payout2019-10-22 08:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length97
author_reputation219,336,602,045,061
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamcn-shop ·
你好鸭,bluengel!
@june0620赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 40枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
post_id80,898,616
authorteamcn-shop
permlinkjune0620-re-bluengel-bluengel-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084803229z
categorycn
json_metadata"{"app":"teamcn-shop bot\/1.0"}"
created2019-10-15 08:48:18
last_update2019-10-15 08:48:18
depth2
children2
net_rshares0
last_payout2019-10-22 08:48:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length290
author_reputation65,900,527,192,856
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ravenkim ·
剪刀
properties (22)
post_id80,908,108
authorravenkim
permlinkre-teamcn-shop-june0620-re-bluengel-bluengel-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t152619899z
categorycn
json_metadata{"community":"busy","app":"busy\/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[]}
created2019-10-15 15:26:21
last_update2019-10-15 15:26:21
depth3
children1
net_rshares0
last_payout2019-10-22 15:26:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length2
author_reputation244,843,674,682,222
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamcn-shop ·
你好鸭,june0620!

@bluengel给您叫了一份外卖!

由 @hertz300 小Q 迎着闪电 开着拖拉机 给您送来
**水果月饼** <br> ![](https://cdn.steemitimages.com/DQmbehnYCVJ1D78CZu8tAtxpuFiaTr5qziuG6hh87VD1nm6/WeChat%20Image_20190912222432.jpg)
吃饱了吗?跟我猜拳吧! **石头,剪刀,布~**

如果您对我的服务满意,请不要吝啬您的点赞~
@onepagex
properties (22)
post_id80,898,516
authorteamcn-shop
permlinkbluengel-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084452450z
categorycn
json_metadata"{"app":"teamcn-shop bot\/1.0"}"
created2019-10-15 08:45:03
last_update2019-10-15 08:45:03
depth1
children2
net_rshares0
last_payout2019-10-22 08:45:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length255
author_reputation65,900,527,192,856
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@bluengel ·
Rock

Posted using [Partiko Android](https://partiko.app/referral/bluengel)
properties (22)
post_id80,898,539
authorbluengel
permlinkbluengel-re-teamcn-shop-bluengel-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084554439z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 08:45:54
last_update2019-10-15 08:45:54
depth2
children1
net_rshares0
last_payout2019-10-22 08:45:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length75
author_reputation487,279,092,618,993
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamcn-shop ·
https://4.bp.blogspot.com/-rZ6b2iEusuQ/WoGwDTYIzLI/AAAAAAATXIg/w-t43zysT6wBBKcJwnYuVNnNEe4f1syOwCLcBGAs/s1600/AW785125_08.gif 
You lose! 你输了!愿赌服输,请给我点赞~
properties (22)
post_id80,898,543
authorteamcn-shop
permlinkbluengel-re-teamcn-shop-bluengel-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084554439z
categorycn
json_metadata"{"app":"teamcn-shop bot\/1.0"}"
created2019-10-15 08:46:03
last_update2019-10-15 08:46:03
depth3
children0
net_rshares0
last_payout2019-10-22 08:46:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length152
author_reputation65,900,527,192,856
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ravenkim ·
石头

Posted using [Partiko Android](https://partiko.app/referral/ravenkim)
properties (22)
post_id80,898,606
authorravenkim
permlinkravenkim-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t084754252z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 08:47:54
last_update2019-10-15 08:47:54
depth1
children0
net_rshares0
last_payout2019-10-22 08:47:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length73
author_reputation244,843,674,682,222
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@also.einstein ·
来晚了。!shop

Posted using [Partiko Android](https://partiko.app/referral/also.einstein)
properties (22)
post_id80,898,751
authoralso.einstein
permlinkalso-einstein-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t085331161z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 08:53:30
last_update2019-10-15 08:53:30
depth1
children4
net_rshares0
last_payout2019-10-22 08:53:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length85
author_reputation6,709,137,099,554
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@june0620 ·
tipu 竞争太激烈 😄
!shop

Posted using [Partiko Android](https://partiko.app/referral/june0620)
properties (22)
post_id80,899,080
authorjune0620
permlinkjune0620-re-also-einstein-also-einstein-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t090840219z
categorycn
json_metadata{"app":"partiko","client":"android"}
created2019-10-15 09:08:42
last_update2019-10-15 09:08:42
depth2
children0
net_rshares0
last_payout2019-10-22 09:08:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length89
author_reputation219,336,602,045,061
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamcn-shop ·
你好鸭,亦亦!
@june0620赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 103枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
post_id80,899,085
authorteamcn-shop
permlinkjune0620-re-also-einstein-also-einstein-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t090840219z
categorycn
json_metadata"{"app":"teamcn-shop bot\/1.0"}"
created2019-10-15 09:08:57
last_update2019-10-15 09:08:57
depth2
children2
net_rshares0
last_payout2019-10-22 09:08:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length285
author_reputation65,900,527,192,856
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ravenkim ·
石头
properties (22)
post_id80,908,126
authorravenkim
permlinkre-teamcn-shop-june0620-re-also-einstein-also-einstein-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t152647694z
categorycn
json_metadata{"community":"busy","app":"busy\/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[]}
created2019-10-15 15:26:48
last_update2019-10-15 15:26:48
depth3
children1
net_rshares0
last_payout2019-10-22 15:26:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length2
author_reputation244,843,674,682,222
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamcn-shop ·
你好鸭,june0620!
@also.einstein赠送1枚SHOP币给你!
![](https://cdn.steemitimages.com/DQmadPZSURDoChgXH9xMdFHEHApQBacDnDK1oUJy5MwVgGF/shop.jpg)

目前你总共有: 34枚SHOP币
<p><sup>查看或者交易 <code>SHOP币</code> 请到 <a href="https://steem-engine.com/?p=market&t=SHOP">steem-engine.com</a>.</sup></p>
无聊吗?跟我猜拳吧! **石头,剪刀,布~**
properties (22)
post_id80,898,760
authorteamcn-shop
permlinkalso-einstein-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t085331161z
categorycn
json_metadata"{"app":"teamcn-shop bot\/1.0"}"
created2019-10-15 08:53:42
last_update2019-10-15 08:53:42
depth1
children4
net_rshares0
last_payout2019-10-22 08:53:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length295
author_reputation65,900,527,192,856
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ravenkim ·
properties (22)
post_id80,908,141
authorravenkim
permlinkre-teamcn-shop-also-einstein-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t152705578z
categorycn
json_metadata{"community":"busy","app":"busy\/2.5.6","format":"markdown","tags":["cn"],"users":[],"links":[]}
created2019-10-15 15:27:06
last_update2019-10-15 15:27:06
depth2
children3
net_rshares0
last_payout2019-10-22 15:27:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1
author_reputation244,843,674,682,222
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamcn-shop ·
https://1.bp.blogspot.com/-ybKPpyROWMo/WoGwGWLKLzI/AAAAAAATXJQ/TXzssjwogX0z4ek-AM4-mK1LZ3LlJTt0wCLcBGAs/s1600/AW785125_20.gif 
 It’s a tie! 平局!再来!在猜拳界,我还没有输过!
properties (22)
post_id80,908,148
authorteamcn-shop
permlinkre-teamcn-shop-also-einstein-re-june0620-python-3-learning-python-with-selenium-dictionary-cn-20191015t152705578z
categorycn
json_metadata"{"app":"teamcn-shop bot\/1.0"}"
created2019-10-15 15:27:15
last_update2019-10-15 15:27:15
depth3
children2
net_rshares0
last_payout2019-10-22 15:27:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length158
author_reputation65,900,527,192,856
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@partiko ·
Thank you so much for participating in the Partiko Delegation Plan Round 1! We really appreciate your support! As part of the delegation benefits, we just gave you a 3.00% upvote! Together, let’s change the world!
👍  
properties (23)
post_id80,899,447
authorpartiko
permlinkre-python-3-learning-python-with-selenium-dictionary-cn-20191015t093011
categorycn
json_metadata{"app":"partiko"}
created2019-10-15 09:30:12
last_update2019-10-15 09:30:12
depth1
children0
net_rshares24,676,131
last_payout2019-10-22 09:30:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length213
author_reputation39,204,266,552,701
root_title"[Python #3] Learning Python with Selenium - Dictionary [CN]"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)