Login
Discover
Waves
Communities
Login
Signup
Topics
#da-learnpythonwithsteem
Global
Trending
Hot
New
Top
#da-learnpythonwithsteem
New
Top communities
Create your community
latest #da-learnpythonwithsteem created topics on internet
deanliu
da-learnpythonwithsteem
2018-09-10 12:46
[DA series - Learn Python with Steem #13] Steem 小工具DIY #5 交易紀錄查詢
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #12] Steem 小工具DIY #4 - 投票幫手
$ 12.992
125
8
8
deanliu
da-learnpythonwithsteem
2018-09-06 15:57
[DA series - Learn Python with Steem #12] Steem 小工具DIY #4 投票幫手
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #11] Steem 小工具DIY #3 - 我的文章列表(二)
$ 25.645
143
9
10
yjcps
blog
2018-08-26 07:24
Learn Python with Steem #10 #11 笔记
Learn Python with Steem #10 #11 笔记 [toc] 划重点 获取用户的文章列表 通过 steem.Steem.get_account_history 获取用户的动态,从中筛选出文章的 permlink。 再用 steem.Steem.get_content 方法获取每篇文章的详细信息。 其实也可以用 steem.blog.Blog 获取用户所有的文章信息。 编程练习
deanliu
da-learnpythonwithsteem
2018-08-24 01:30
[DA series - Learn Python with Steem #11] Steem 小工具DIY #3 - 我的文章列表(二)
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #10] Steem 小工具DIY #2 - 我的文章列表(一)
darth-cryptic
genealogy
2026-06-26 22:43
Promoted
Genealogy: Roger de Boson (~1020)
I am posting some random bits of my genealogy research here with the goal of eventually creating a linked family tree on Hive. Subject: Roger de Boson I (~1020)
yjcps
blog
2018-08-19 22:00
Learn Python with Steem #09 笔记
Learn Python with Steem #09 笔记 [toc] 划重点 遍历字典 利用dict.items()方法,用一个循环语句遍历整个字典的所有元素。 转换 Reputation 和 Voting Power 的原始数据 直接获取的某些数据是生的,需要煮(转换)一下才能吃。 解析时间 使用Python的dateutil和datetime模块来解析和处理时间数据。 编程练习 from steem
deanliu
da-learnpythonwithsteem
2018-08-18 00:54
[DA series - Learn Python with Steem #10] Steem 小工具DIY #2 - 我的文章列表(一)
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #09] Steem 小工具DIY #1 - 我的Steem小偵探
yjcps
blog
2018-08-15 22:41
Learn Python with Steem #08 笔记
Learn Python with Steem #08 笔记 [toc] 划重点 模块、包 模块是一个XXX.py文件,Python中以模块的方式组织代码片段(函数,类,变量)。 包是一个目录,里面有一些模块或者子目录,Python中以包的方式管理模块。 使用模块 要使用模块,需要先导入模块,使用关键字import来导入模块。 这是我们使用Python标准库和第三方库的方式。 安装模块
yjcps
blog
2018-08-11 06:03
在Windows导入python-steem遇到的问题
我以为成功安装python-steem库就可以愉快地玩耍了,这个想法还是太单纯,谁知道在导入steem模块的时候又出现问题了:无法导入winrandom模块。 from steem import Steem s = Steem() balance = s.get_account('yjcps')['sbd_balance'] print(balance)
whose
Nature Observer
2026-06-27 02:38
Promoted
Genus Rhene | A Wonderful Little Beauty In Green Nature
Latin NameObservation DateLocation Genus RheneJun 26, 2026Vodrochol, Ullapara, Bangladesh Greetings to everyone, the picture that I am going to share today is a best moment taken yesterday afternoon. When
deanliu
da-learnpythonwithsteem
2018-08-10 00:56
[DA series - Learn Python with Steem #09] Steem 小工具DIY #1 - 我的Steem小偵探
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #08] 函式庫(Modules)
deanliu
da-learnpythonwithsteem
2018-08-08 05:02
[DA series - Learn Python with Steem #08] 函式庫(Modules)的安裝與使用,準備好玩Steem!
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #07] 類別 第#08堂課,今天我們來學習Python的~~函式庫 !準備進入玩Steem的階段囉~~
yjcps
blog
2018-08-07 02:27
Learn Python with Steem #07 笔记
Learn Python with Steem #07 笔记 [toc] 划重点 类与对象 把一些具有共同特征的对象的属性和行为(方法)抽取出来,将其抽象化,定义为类。 也就是说类是对象的模板,按照模板(类)实例化(具体化),这就是对象。 类是抽象的概念,而对象是具体的东西。 类的属性与方法 类的属性和方法都是一群对象的共同特征。 属性是那些对象的静态特征,在类中定义的变量。
deanliu
steem
2018-08-07 02:09
[閒聊] 寒冬未離,春天猶遠
image - pixabay 最近,看到收入裡面,SBD的佔比竟然已經下降到5%左右了... 有點驚訝,似乎預告著0 SBD時代又要來臨了? 我印象中,收入裡都只有Steem跟SP的日子,是好久好久以前了。那段時間,Steem是一把一把地收,都是Steem,讓人感覺像是要下市的股票一樣,似乎也是收好玩兒的...
senses18
Hive Learners
2026-06-18 06:40
Promoted
THE BIGGEST INVESTMENT MISTAKE OF MY LIFE AND HOW I REBUILT AFTER LOSING MY SAVINGS
A SINGLE DECISION WIPED OUT YEARS OF HARD WORK AND SAVINGS …. !! Have you ever watched your life savings disappear while feeling completely helpless or powerless to stop it ? Many years ago, I thought
deanliu
da-learnpythonwithsteem
2018-08-06 06:13
[DA series - Learn Python with Steem #07] 類別
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #06] 函式 第#07堂課,今天我們來學習Python的~~類別 ! Python的類別(Class)
yjcps
blog
2018-08-03 16:10
Learn Python with Steem #06 笔记
Learn Python with Steem #06 笔记 [toc] 划重点 函数 函数是实现某个特定功能的一段代码。 将同一类相对独立的功能写成一个个函数,放到同一个py文件里,这就是一个模块。 你可以试试输入 help(math) 看是不是这样的。 函数的结构 函数由输入参数、函数体、输出参数组成。 通过输入参数接收要处理的数据, 在函数体里实现要完成的功能, 最后将计算结果通过输出参数返回给使用者。
deanliu
da-learnpythonwithsteem
2018-08-03 02:03
[DA series - Learn Python with Steem #06] 函式
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #05] 基本資料結構 第#06堂課,今天我們來學習Python的~~函式 ! Python的函式
deanliu
da-learnpythonwithsteem
2018-08-02 01:27
[DA series - Learn Python with Steem #05] 基本資料結構
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #04] 迴圈 第#05堂課,今天我們來學習Python的~~基本資料結構 !
idea-make-rich
Shadow Hunters
2026-06-29 15:29
Promoted
👉 Guess The Shadow Contest - Round 103
Namaste🙏, Shadow Hunters family! 🎺 Announcement 🎺! Guess The Shadow Contest Round-102 is now closed. Winners will be announced and rewards will be given within the next 24 hours. Guess The Shadow Contest
yjcps
blog
2018-07-31 12:45
Learn Python with Steem #04 笔记
Learn Python with Steem #04 笔记 [toc] 划重点 循环 人做重复性的事情很低效和枯燥,相比之下让机器来完成这些事更适合,所以在大鹏的《学R》中说,循环是个救世主。 循环由循环条件和循环体组成:满足条件,程序就重复做一类事情,要重复做的事情就是循环体,用缩进体现。 循环的类型 循环可分两类:已知重复次数,用 for
yjcps
blog
2018-07-31 12:30
Learn Python with Steem #03 笔记
Learn Python with Steem #03 笔记 [toc] 划重点 分支结构 Python的分支结构用if、elif、else关键字来构造,可以是多分支,也可以嵌套。 代码块 Python中用缩进的方式构造代码块,程序的层次结构一目了然。 交互 使用input()函数输入数据,实现人与程序的交互。 编程练习 # 写作业 a = float(input('Please enter the
deanliu
da-learnpythonwithsteem
2018-07-31 02:21
[DA series - Learn Python with Steem #04] 迴圈
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #03] 邏輯判斷 第#04堂課,今天我們來學習另一個也是非常重要的主題:迴圈 。 Python的迴圈
deanliu
da-learnpythonwithsteem
2018-07-30 02:13
[DA series - Learn Python with Steem #03] 邏輯判斷
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #02] 變數與資料型態 新的一週開始了!讓我們繼續學習吧!