利用 Requests 、 requests_toolbelt 等库模拟浏览器操作,实现锤子便签网页版的基本功能。
GitHub 地址:https://github.com/caspartse/Python-SmartisanNotes
# 新建图文便签
from SmartisanNotes import *
s = SmartisanNotes('username', 'password')
imageFile = 'http://image.wufazhuce.com/FjAigjxaOFb3fo4oDBftwh5Ne2Es'
describe = '花草繁盛&linali 作品'
text = '我们最终都要远行,最终都要跟稚嫩的自己告别。 by 海子\n\n[「 ONE · 一个」 VOL.1266]'
s.imageUpload(imageFile, describe=describe, text=text, mkd='1', note2Img='1')
更多示例请戳 => https://github.com/caspartse/Python-SmartisanNotes
# 新增长图文便签,支持 Markdown 语法式的图片插入,长图文排版更加灵活。
from SmartisanNotes import *
s = SmartisanNotes('username', 'password')
article = '''
#生物股长(いきものがかり)
![生物股长(いきものがかり)](http://t.cn/Rqxv82C)
生物股长,日本当红流行乐团,由吉冈圣恵、水野良树、山下穗尊三人组成于2002年2月1日。\
所属事务所为 CUBE Group,所属唱片公司为EPIC Records(日本 SONY 唱片旗下厂牌)。
![](album.jpg)
'''
s.noteArticle(detail=article, mkd='1', note2Img='1')
1
gogobody 2016-04-08 10:52:50 +08:00
好厉害(ง •̀_•́)ง
|