<center> <a href="https://www.coogger.com/@hakancelik/python-client-of-steemconnect-update-steem-connect"> <img alt="coogger post" src="https://cdn.steemitimages.com/DQmV7q45hYaS1TugkYDmR4NtUuLXjMGDEnN2roxGGXJeYgs"> </a> <a href="https://www.coogger.com/@hakancelik/python-client-of-steemconnect-update-steem-connect">Read this content on coogger</a> </center>
author | hakancelik |
---|---|
permlink | python-client-of-steemconnect-update-steem-connect |
category | coogger |
json_metadata | "{"format": "markdown", "tags": ["python", "steem-connect", "development", "coogger", "english"], "app": "coogger/1.7.1", "ecosystem": {"version": "1.7.1", "body": "### Before starting\r\nInstallation or Update the package:\r\n```python\r\npip install steem-connect\r\npip install steem-connect -U\r\n```\r\n\r\nYou can include each class in our project, as below.\r\n```python\r\nfrom steemconnect.client import Client\r\nfrom steemconnect.steemconnect import SteemConnect\r\nfrom steemconnect.operations import Vote\r\nfrom steemconnect.operations import CustomJson\r\nfrom steemconnect.operations import Unfollow\r\nfrom steemconnect.operations import Follow\r\nfrom steemconnect.operations import Mute\r\nfrom steemconnect.operations import Reblog\r\nfrom steemconnect.operations import DeleteComment\r\nfrom steemconnect.operations import ClaimRewardBalance\r\nfrom steemconnect.operations import Comment\r\nfrom steemconnect.operations import CommentOptions\r\n```\r\n\r\n### SteemConnect V0.7.3\r\n#### Commit:\r\n\r\n- [V0.7.2](https://github.com/hakancelik96/steemconnect/commit/776a5b44966a0d65ef749958b33e188f7c4a5dce)\r\n- [V0.7.3](https://github.com/hakancelik96/steemconnect/commit/78949686520b4e8150ab3ac3dacb123e9feb13f6)\r\n\r\n\r\n### CustomJson\r\n#### Commit:\r\n\r\n- [CustomJson](https://github.com/hakancelik96/steemconnect/commit/4a2b699abcce5a3101c645ee00e441776961c88f)\r\n\r\n#### CustomJson\r\nThe **CustomJson** class provides to Unfollow operation, Follow operation, Mute operation and whatever do you want.\r\n\r\n```python\r\nfrom steemconnect.operations import CustomJson\r\nfrom steemconnect.steemconnect import SteemConnect\r\n\r\ntoken = \"{your_access_token}\"\r\njson_ = [\r\n \"test\",\r\n {\r\n \"tester\": \"{your_username}\",\r\n \"test_class\": \"CustomJson class\",\r\n \"what\": [\"test\"]\r\n }]\r\n\r\ncustom_json = CustomJson(required_posting_auths=\"{your_username}\", custom_json_id=\"test\" ,structure=json_)\r\nresponse = SteemConnect(token=token, data=custom_json .operation).run\r\nif response.status_code != 200:\r\n print(\"Your operation is success\")\r\n```\r\n\r\n### New syntax\r\n#### Commit:\r\n- [Operations class improved](https://github.com/hakancelik96/steemconnect/commit/776a5b44966a0d65ef749958b33e188f7c4a5dce)\r\n\r\nThanks to this commit, It was made more elegant syntax and easy to use.\r\n#### Let's check old and new\r\n\r\n##### Old syntax\r\n- include each class\r\n```python\r\nfrom sc2py.client import Client\r\nfrom sc2py.sc2py import Sc2\r\nfrom sc2py.operations import Vote\r\nfrom sc2py.operations import Unfollow\r\n```\r\n\r\n- Vote operation\r\n```python\r\nvote = Vote(voter:str, author:str, permlink:str, weight:int)\r\njson_data = Operations(json=vote.json).json\r\nresponse = Sc2(token=\"your_access_token\", data=json_data).run\r\nif response.status_code == 200:\r\n print(\"Your post upvoted\")\r\n```\r\n\r\n##### New syntax\r\n\r\n- include each class\r\n```python\r\nfrom steemconnect.client import Client\r\nfrom steemconnect.steemconnect import SteemConnect\r\nfrom steemconnect.operations import Vote\r\n```\r\n\r\n- Vote operation\r\n```python\r\nvote = Vote(voter:str, author:str, permlink:str, weight:int)\r\nresponse = SteemConnect(token=\"your_access_token\", data=vote.operation).run\r\nif response.status_code == 200:\r\n print(\"Your post upvoted\")\r\n```\r\n\r\n------------\r\n\r\n**If you want to learn more, how to use steem-connect python library [Check readme.md of library V0.7.3](https://github.com/hakancelik96/steemconnect/blob/59e3ff1d896131782e0b08da4dc7705de417d07d/README.md)**\r\n\r\n### Let's do a few examples with steem-connect python library!\r\n\r\n***In addition, you can even enhance the use of the steem-connect library with steem-python library***\r\n\r\n#### This example for upvote bot\r\n\r\n```python\r\nfrom steemconnect.steemconnect import SteemConnect\r\nfrom steemconnect.operations import Vote\r\n\r\nvote = Vote(voter=\"hakancelik\", author=\"enisshkurti\",\r\npermlink=\"make-it-a-september-to-remember\", weight=100)\r\nresponse = SteemConnect(token=\"xxxxxx\", data=vote.operation).run\r\nprint(response.text)\r\n````\r\n\r\n#### This example for follow operation\r\n\r\n```python\r\nfollow = Follow(follower=\"hakancelik\",following=\"enisshkurti\")\r\nresponse = SteemConnect(token=\"xxxxx\", data=follow.operation).run\r\nif response.status_code != 200:\r\n print(\"Your operation is success\")\r\n````\r\n\r\n#### This example for resteem operation with steem-python\r\n\r\n***When these codes run, resteem all the contents of the enisshkurti account.***\r\n\r\n```python\r\n# steem\r\nfrom steem import Steem\r\nfrom steem.blog import Blog\r\n\r\n# SteemConnect\r\nfrom steemconnect.steemconnect import SteemConnect\r\nfrom steemconnect.operations import Reblog\r\n\r\n\r\nSTEEM = Steem(nodes=['https://api.steemit.com'])\r\nfor blog in Blog(account_name = \"enisshkurti\").all():\r\n reblog = Reblog(account=\"hakancelik\", author=\"enisshkurti\", permlink=blog.permlink)\r\n response = SteemConnect(token=\"xxxxx\", data=reblog.operation).run\r\n if response.status_code != 200:\r\n print(\"Your operation is success\")\r\n\r\n```\r\n\r\n<center>**Thank you for reading**</center>"}}" |
created | 2018-09-02 00:50:36 |
last_update | 2019-05-21 10:12:24 |
depth | 0 |
children | 5 |
last_payout | 2018-09-09 00:50:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.423 HBD |
curator_payout_value | 0.101 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 369 |
author_reputation | 15,102,487,166,852 |
root_title | "Python Client of SteemConnect - Update: steem-connect" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 70,051,574 |
net_rshares | 427,570,266,610 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hr1 | 0 | 53,514,287,028 | 0.02% | ||
leggy23 | 0 | 23,083,554,981 | 15% | ||
steemit-turkey | 0 | 10,862,304,180 | 20% | ||
freetissues | 0 | 23,703,995,209 | 100% | ||
turkish-trail | 0 | 6,779,046,138 | 20% | ||
minnowsupport | 0 | 70,244,115,223 | 1.2% | ||
armadillocreek | 0 | 2,301,058,508 | 50% | ||
janine-ariane | 0 | 519,549,634 | 5% | ||
enisshkurti | 0 | 24,763,243,906 | 100% | ||
steemkitchen | 0 | 79,585,122,745 | 100% | ||
minnowvotes | 0 | 108,767,688,414 | 9.49% | ||
sudefteri | 0 | 3,521,957,163 | 100% | ||
hakancelik | 0 | 13,752,140,634 | 100% | ||
obsesija | 0 | 101,393,800 | 15% | ||
neilrichmond | 0 | 249,427,056 | 50% | ||
coogger | 0 | 2,189,136,047 | 100% | ||
ibrahimsmngl | 0 | 608,323,505 | 100% | ||
lemesh | 0 | 0 | 100% | ||
albertocotua | 0 | 616,053,277 | 50% | ||
andrew28zx | 0 | 0 | 100% | ||
v6476721 | 0 | 0 | 100% | ||
dementei | 0 | 0 | 100% | ||
enrag | 0 | 0 | 100% | ||
brooks228 | 0 | 0 | 100% | ||
maknah | 0 | 0 | 100% | ||
den9 | 0 | 0 | 100% | ||
vika09 | 0 | 0 | 100% | ||
loft505 | 0 | 0 | 100% | ||
yarondrei | 0 | 0 | 100% | ||
borndead03 | 0 | 0 | 100% | ||
izydorjasiski | 0 | 0 | 100% | ||
olegjadkov | 0 | 0 | 100% | ||
s6476721 | 0 | 0 | 100% | ||
postdestek | 0 | 607,733,662 | 100% | ||
stepanslobodyan | 0 | 0 | 100% | ||
andrei8 | 0 | 0 | 100% | ||
mur.kg123 | 0 | 0 | 100% | ||
antonova2030 | 0 | 0 | 100% | ||
sauranbek | 0 | 0 | 100% | ||
sunnihappi | 0 | 0 | 100% | ||
maruse4ka | 0 | 0 | 100% | ||
baejz | 0 | 0 | 100% | ||
radomim | 0 | 0 | 100% | ||
ushkurwike | 0 | 0 | 100% | ||
karinegevorgyan | 0 | 0 | 100% | ||
nyushosazha | 0 | 0 | 100% | ||
neanv | 0 | 0 | 100% | ||
teovsumsel | 0 | 0 | 100% | ||
bornd07 | 0 | 0 | 100% | ||
rommist79 | 0 | 0 | 100% | ||
miki21657 | 0 | 0 | 100% | ||
ismaelahr | 0 | 0 | 100% | ||
patrickk97 | 0 | 0 | 100% | ||
hommike | 0 | 0 | 100% | ||
xlibanti | 0 | 0 | 100% | ||
araxachatryan | 0 | 0 | 100% | ||
ervandkarapet | 0 | 0 | 100% | ||
miki22628 | 0 | 0 | 100% | ||
voronovboris | 0 | 0 | 100% | ||
vorovskoy44 | 0 | 0 | 100% | ||
babush | 0 | 0 | 100% | ||
friedcheck | 0 | 0 | 100% | ||
nevisajar | 0 | 0 | 100% | ||
aboriginalbook | 0 | 0 | 100% | ||
marksbanana | 0 | 0 | 100% | ||
gracefulestrogen | 0 | 0 | 100% | ||
ancestorobserve | 0 | 0 | 100% | ||
bedbugsslim | 0 | 0 | 100% | ||
vicmic | 0 | 247,015,367 | 50% | ||
junelinarez | 0 | 304,345,183 | 50% | ||
sometimesrampant | 0 | 0 | 100% | ||
unarmedxyloid | 0 | 0 | 100% | ||
theeide | 0 | 0 | 100% | ||
emmalg87 | 0 | 253,439,501 | 50% | ||
bouquetclick | 0 | 0 | 100% | ||
honestprojects | 0 | 0 | 100% | ||
timedouble | 0 | 0 | 100% | ||
cookiees | 0 | 0 | 100% | ||
basiks | 0 | 0 | 100% | ||
boxx | 0 | 0 | 100% | ||
sergei.ilenkov | 0 | 0 | 100% | ||
elvinhender | 0 | 0 | 100% | ||
gunterjos | 0 | 0 | 100% | ||
jamesloydd | 0 | 0 | 100% | ||
jhendrych | 0 | 0 | 100% | ||
klimekaczma | 0 | 0 | 100% | ||
backbonewriter | 0 | 0 | 100% | ||
taigacabinet | 0 | 0 | 100% | ||
imperfectvital | 0 | 0 | 100% | ||
scorpiusdata | 0 | 0 | 100% | ||
islandlimit | 0 | 0 | 100% | ||
luffnoisy | 0 | 0 | 100% | ||
warcaterer | 0 | 0 | 100% | ||
pegsstadium | 0 | 0 | 100% | ||
shirtwhey | 0 | 0 | 100% | ||
bungxebec | 0 | 0 | 100% | ||
alludelinear | 0 | 0 | 100% | ||
seasonedgrade | 0 | 0 | 100% | ||
yieldingcoke | 0 | 0 | 100% | ||
micropituitary | 0 | 0 | 100% | ||
bangbangbooking | 0 | 0 | 100% | ||
ringwormbasic | 0 | 0 | 100% | ||
windtwitter | 0 | 0 | 100% | ||
habitroof | 0 | 0 | 100% | ||
buddingcaviar | 0 | 0 | 100% | ||
caesiumfaculae | 0 | 0 | 100% | ||
doubtdisney | 0 | 0 | 100% | ||
hoovesreport | 0 | 0 | 100% | ||
gunpowderwigeon | 0 | 0 | 100% | ||
celsiusdelete | 0 | 0 | 100% | ||
octavesynodic | 0 | 0 | 100% | ||
greatestspicy | 0 | 0 | 100% | ||
kiraluchkova | 0 | 0 | 100% | ||
rakov23 | 0 | 0 | 100% | ||
lisicka | 0 | 0 | 100% | ||
maslov11 | 0 | 0 | 100% | ||
petrov21 | 0 | 0 | 100% | ||
svetatamova | 0 | 0 | 100% | ||
artyrsedakov | 0 | 0 | 100% | ||
mahsumclkblk | 0 | 607,046,248 | 100% | ||
bandageweeds | 0 | 0 | 100% | ||
romansilenkov | 0 | 0 | 100% | ||
ermakx | 0 | 0 | 100% | ||
albinakarimova | 0 | 0 | 100% | ||
semirovaalinka | 0 | 0 | 100% | ||
freddygem | 0 | 0 | 100% | ||
nikolay.suhoruk | 0 | 0 | 100% | ||
metaboliss | 0 | 0 | 100% | ||
birkinx | 0 | 0 | 100% | ||
svetamihanova | 0 | 0 | 100% | ||
trubadurkir | 0 | 0 | 100% | ||
scholarjeans | 0 | 0 | 100% | ||
throwjoke | 0 | 0 | 100% | ||
cinnamonclay | 0 | 0 | 100% | ||
shallowcuttle | 0 | 0 | 100% | ||
bibslivered | 0 | 0 | 100% | ||
enlargedremove | 0 | 0 | 100% | ||
queensstar | 0 | 0 | 100% | ||
eclipticmelange | 0 | 0 | 100% | ||
clotsthou | 0 | 0 | 100% | ||
pluggedskip | 0 | 0 | 100% | ||
shamrockshaggy | 0 | 0 | 100% | ||
cityscapeleaf | 0 | 0 | 100% | ||
liquidmeat | 0 | 0 | 100% | ||
somalianfog | 0 | 0 | 100% | ||
squashzealous | 0 | 0 | 100% | ||
trekkingglucose | 0 | 0 | 100% | ||
pumpdyke | 0 | 0 | 100% | ||
desktopcarrots | 0 | 0 | 100% | ||
toplice | 0 | 0 | 100% | ||
mothersmerlin | 0 | 0 | 100% | ||
strangetwelve | 0 | 0 | 100% | ||
borealisquirt | 0 | 0 | 100% | ||
woodenwhine | 0 | 0 | 100% | ||
visitorsahem | 0 | 0 | 100% | ||
meatgooey | 0 | 0 | 100% | ||
holderroots | 0 | 0 | 100% | ||
nuclearbooby | 0 | 0 | 100% | ||
riftlustful | 0 | 0 | 100% | ||
controlcagey | 0 | 0 | 100% | ||
algerianhaunt | 0 | 0 | 100% | ||
cubesroom | 0 | 0 | 100% | ||
gutalveoli | 0 | 0 | 100% | ||
pointsbee | 0 | 0 | 100% | ||
wordsconic | 0 | 0 | 100% | ||
autostopper | 0 | 0 | 100% | ||
wagcouloir | 0 | 0 | 100% | ||
varvenickel | 0 | 0 | 100% | ||
xericparrot | 0 | 0 | 100% | ||
breadsplonk | 0 | 0 | 100% | ||
nideecstatic | 0 | 0 | 100% | ||
americamode | 0 | 0 | 100% | ||
recentlyimply | 0 | 0 | 100% | ||
pollsprat | 0 | 0 | 100% | ||
stabbingeyes | 0 | 0 | 100% | ||
freeboarddavit | 0 | 0 | 100% | ||
servletbookmark | 0 | 0 | 100% | ||
facedwrapped | 0 | 0 | 100% | ||
magichive | 0 | 0 | 100% | ||
bubblyhexes | 0 | 0 | 100% | ||
blandstatics | 0 | 0 | 100% | ||
loathsomemaps | 0 | 0 | 100% | ||
olivineplot | 0 | 0 | 100% | ||
scotsmenmixin | 0 | 0 | 100% | ||
anesterov | 0 | 0 | 100% | ||
asamarin88 | 0 | 0 | 100% | ||
anryper | 0 | 0 | 100% | ||
stewekroli | 0 | 0 | 100% | ||
sryimin88ik | 0 | 0 | 100% | ||
rlazarev88w | 0 | 0 | 100% | ||
gorzhi3501 | 0 | 0 | 100% | ||
ikudelin | 0 | 0 | 100% | ||
asavin88 | 0 | 0 | 100% | ||
shukinsanechek | 0 | 0 | 100% | ||
vtemnotu | 0 | 0 | 100% | ||
test-test | 0 | 0 | 100% | ||
antoniel | 0 | 0 | 100% | ||
vsmirnov3 | 0 | 0 | 100% | ||
buntlinelard | 0 | 0 | 100% | ||
almostegret | 0 | 0 | 100% | ||
toenailnano | 0 | 0 | 100% | ||
paelladiamond | 0 | 0 | 100% | ||
bucksumpaypal | 0 | 0 | 100% | ||
benmopping | 0 | 0 | 100% | ||
carnwalking | 0 | 0 | 100% | ||
brickgordon | 0 | 0 | 100% | ||
affineclever | 0 | 0 | 100% | ||
replysoldier | 0 | 0 | 100% | ||
testisland | 0 | 0 | 100% | ||
dyogramsponson | 0 | 0 | 100% | ||
estoniancurry | 0 | 0 | 100% | ||
topkame | 0 | 0 | 100% | ||
fizzyreadymade | 0 | 0 | 100% | ||
pedalgrinder | 0 | 0 | 100% | ||
putridgamete | 0 | 0 | 100% | ||
clusteroctane | 0 | 0 | 100% | ||
plankkellogs | 0 | 0 | 100% | ||
bananalodge | 0 | 0 | 100% | ||
whiskeynovelty | 0 | 0 | 100% | ||
periodantenna | 0 | 0 | 100% | ||
pawnpulley | 0 | 0 | 100% | ||
revealpipet | 0 | 0 | 100% | ||
securelagan | 0 | 0 | 100% | ||
flashmixin | 0 | 0 | 100% | ||
coogger.pay | 0 | 131,527,724 | 100% | ||
coogger.wallet | 0 | 135,299,415 | 100% | ||
svoyaleks | 0 | 0 | 100% | ||
anharchenko1987 | 0 | 0 | 100% | ||
kmakbrayd | 0 | 0 | 100% | ||
phatchinson | 0 | 0 | 100% | ||
sernikolaev | 0 | 0 | 100% | ||
kristoferbis | 0 | 0 | 100% | ||
saymonr | 0 | 0 | 100% | ||
dzhonmey | 0 | 0 | 100% | ||
etanuelch | 0 | 0 | 100% | ||
bridzhesc | 0 | 0 | 100% | ||
edvardprays | 0 | 0 | 100% | ||
tobireynol | 0 | 0 | 100% | ||
dzhonlemb | 0 | 0 | 100% | ||
dzhonpark | 0 | 0 | 100% | ||
uebsterlesli | 0 | 0 | 100% | ||
maksimle | 0 | 0 | 100% | ||
kolesnikovev74 | 0 | 0 | 100% | ||
evgeniy.pavlenko | 0 | 0 | 100% | ||
vika.maltseva90 | 0 | 0 | 100% | ||
irina.borisyuk | 0 | 0 | 100% | ||
yulya.zaharova | 0 | 0 | 100% | ||
kostya.borisenko | 0 | 0 | 100% | ||
nikponom1989 | 0 | 0 | 100% | ||
sblisn1985 | 0 | 0 | 100% | ||
nikbelin1983 | 0 | 0 | 100% | ||
sashokbad | 0 | 0 | 100% | ||
aprokopenko1990 | 0 | 0 | 100% | ||
taras.sergienko | 0 | 0 | 100% | ||
ivan.krasnenko | 0 | 0 | 100% | ||
nikfrol1983 | 0 | 0 | 100% | ||
anester198 | 0 | 0 | 100% | ||
svlasov1984 | 0 | 0 | 100% | ||
perlov11 | 0 | 0 | 100% | ||
matusrip | 0 | 0 | 100% | ||
antonikolaenko | 0 | 0 | 100% | ||
postmax | 0 | 0 | 100% | ||
potex | 0 | 0 | 100% | ||
hellan | 0 | 0 | 100% | ||
yyyz | 0 | 0 | 100% | ||
mehmetcelik | 0 | 121,462,062 | 100% | ||
charliegem | 0 | 0 | 100% | ||
drunksums | 0 | 0 | 100% | ||
panickysafe | 0 | 0 | 100% | ||
tonkaerobics | 0 | 0 | 100% | ||
pub3pies | 0 | 0 | 100% | ||
wrestlinglay | 0 | 0 | 100% | ||
cheakeatable | 0 | 0 | 100% | ||
vilecenters | 0 | 0 | 100% | ||
wheelgroan | 0 | 0 | 100% | ||
metricsstride | 0 | 0 | 100% | ||
pseudosled | 0 | 0 | 100% | ||
branchanus | 0 | 0 | 100% | ||
piscesgloss | 0 | 0 | 100% | ||
uvulashadow | 0 | 0 | 100% | ||
signaloutlook | 0 | 0 | 100% | ||
towslug | 0 | 0 | 100% | ||
cheesylawn | 0 | 0 | 100% | ||
facedfagglers | 0 | 0 | 100% | ||
turbulentsooty | 0 | 0 | 100% | ||
woldsfiver | 0 | 0 | 100% | ||
prickholing | 0 | 0 | 100% | ||
rotatingjackdaw | 0 | 0 | 100% | ||
ergotverdant | 0 | 0 | 100% | ||
glowreining | 0 | 0 | 100% | ||
whoresoncanoeing | 0 | 0 | 100% | ||
rhodiumdirectly | 0 | 0 | 100% | ||
northernsound | 0 | 0 | 100% | ||
skvoz | 0 | 0 | 100% | ||
dirconnect | 0 | 0 | 100% | ||
sibur.kond | 0 | 0 | 100% | ||
nikbutus89 | 0 | 0 | 100% | ||
anatharl1982 | 0 | 0 | 100% | ||
maksim.bulatov | 0 | 0 | 100% | ||
ivan.rogach | 0 | 0 | 100% | ||
femanbox | 0 | 0 | 100% | ||
boshben | 0 | 0 | 100% | ||
zaharia32zvezd | 0 | 0 | 100% | ||
msalla | 0 | 0 | 100% | ||
qwopa.naoxote | 0 | 0 | 100% | ||
mrxoxland | 0 | 0 | 100% | ||
miss.olga18 | 0 | 0 | 100% | ||
alsenrivonlo | 0 | 0 | 100% | ||
shearfeisty | 0 | 0 | 100% | ||
clailpickled | 0 | 0 | 100% | ||
instinctgelatin | 0 | 0 | 100% | ||
societiespaying | 0 | 0 | 100% | ||
wivelegeboeing | 0 | 0 | 100% | ||
recommendracer | 0 | 0 | 100% | ||
huglend | 0 | 0 | 100% | ||
veggiemango | 0 | 0 | 100% | ||
belliedas | 0 | 0 | 100% | ||
havedetrital | 0 | 0 | 100% | ||
plaguedelta | 0 | 0 | 100% | ||
outsidevoting | 0 | 0 | 100% | ||
monescevian | 0 | 0 | 100% | ||
medullapages | 0 | 0 | 100% | ||
reporterlupus | 0 | 0 | 100% | ||
approvalfoam | 0 | 0 | 100% | ||
headerrelate | 0 | 0 | 100% | ||
normachazard | 0 | 0 | 100% | ||
windsurferstatic | 0 | 0 | 100% | ||
deadeastern | 0 | 0 | 100% | ||
fearfultanager | 0 | 0 | 100% | ||
joinersathing | 0 | 0 | 100% | ||
medkitseal | 0 | 0 | 100% | ||
climaxceet | 0 | 0 | 100% | ||
paradigmstair | 0 | 0 | 100% | ||
snakeavocet | 0 | 0 | 100% | ||
terragreat | 0 | 0 | 100% | ||
recentyoutube | 0 | 0 | 100% | ||
divergemagpie | 0 | 0 | 100% | ||
hiveclamorous | 0 | 0 | 100% | ||
charbodge | 0 | 0 | 100% | ||
bowedfrazzled | 0 | 0 | 100% | ||
coatattach | 0 | 0 | 100% | ||
nokeununtrium | 0 | 0 | 100% | ||
scarceflaky | 0 | 0 | 100% | ||
doughytape | 0 | 0 | 100% | ||
humeoutspoken | 0 | 0 | 100% | ||
crunjordanian | 0 | 0 | 100% | ||
goatfermented | 0 | 0 | 100% | ||
chungcable | 0 | 0 | 100% | ||
internetherpes | 0 | 0 | 100% | ||
soundindeter | 0 | 0 | 100% | ||
patefund | 0 | 0 | 100% | ||
hydratededitor | 0 | 0 | 100% | ||
gieldcrocodile | 0 | 0 | 100% | ||
takingtruck | 0 | 0 | 100% | ||
sensorintestine | 0 | 0 | 100% | ||
selvetearful | 0 | 0 | 100% | ||
achingjavabean | 0 | 0 | 100% | ||
orilhurthaga | 0 | 0 | 100% | ||
dyspcardrel | 0 | 0 | 100% | ||
rafinehaldist | 0 | 0 | 100% | ||
windworlmetmigu | 0 | 0 | 100% | ||
scenlingworl | 0 | 0 | 100% | ||
rilityfonid | 0 | 0 | 100% |
<center></center> You have received an upvote from **cooggerup** and all the users that have joined the trail with you that has available upvote power. - [For more information about coogger](http://www.coogger.com/@coogger/coogger-project-which-can-work-with-communities/) - [Coogger Ecosystem settings and How can I join cooggerup curation trail.](http://www.coogger.com/@steemkitchen/detailed-instructions-to-use-the-profile-settings-for-wwwsteemkitchencom/) - Please follow curation trail with [steeauto account](https://steemauto.com/dash.php?trail=coogger&i=1) or join the cooggerup bot in the settings on coogger.com or other community web site like steemkitcen.com for more support from **Coogger Ecosystem.** ----- Thank you for supporting **coogger** community that is part of the **Coogger Ecosystem.** <center>[Contact us on Discord](https://discord.gg/avmdZJa)
author | coogger |
---|---|
permlink | re-python-client-of-steemconnect-update-steem-connect-20180902t013539 |
category | coogger |
json_metadata | "{"community": "coogger", "tags": ["coogger"]}" |
created | 2018-09-02 01:35:39 |
last_update | 2018-09-02 01:35:39 |
depth | 1 |
children | 0 |
last_payout | 2018-09-09 01:35:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 996 |
author_reputation | 401,941,647,706 |
root_title | "Python Client of SteemConnect - Update: steem-connect" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 70,053,764 |
net_rshares | 15,506,946,539 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hakancelik | 0 | 13,361,593,213 | 100% | ||
coogger | 0 | 2,145,353,326 | 100% |
<p>Congratulations! This post has been upvoted from the communal account, @minnowsupport, by hakancelik | coogger from the Minnow Support Project. It's a witness project run by aggroed, ausbitbank, teamsteem, someguy123, neoxian, followbtcnews, and netuoso. The goal is to help Steemit grow by supporting Minnows. Please find us at the <a href="https://discord.gg/HYj4yvw"> Peace, Abundance, and Liberty Network (PALnet) Discord Channel</a>. It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.</p> <p>If you would like to delegate to the Minnow Support Project you can do so by clicking on the following links: <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=102530.639667%20VESTS">50SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=205303.639667%20VESTS">100SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=514303.639667%20VESTS">250SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=1025303.639667%20VESTS">500SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=2053030.639667%20VESTS">1000SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&delegatee=minnowsupport&vesting_shares=10253030.639667%20VESTS">5000SP</a>. <br><strong>Be sure to leave at least 50SP undelegated on your account.</strong></p>
author | minnowsupport |
---|---|
permlink | re-python-client-of-steemconnect-update-steem-connect-20180902t235724z |
category | coogger |
json_metadata | "{"app": "beem/0.19.50"}" |
created | 2018-09-02 23:57:24 |
last_update | 2018-09-02 23:57:24 |
depth | 1 |
children | 0 |
last_payout | 2018-09-09 23:57:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,703 |
author_reputation | 148,902,805,319,183 |
root_title | "Python Client of SteemConnect - Update: steem-connect" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 70,134,831 |
net_rshares | 0 |
You got a 9.49% upvote from @minnowvotes courtesy of @murattatar!
author | minnowvotes |
---|---|
permlink | re-hakancelik-python-client-of-steemconnect-update-steem-connect-20180902t054811728z |
category | coogger |
json_metadata | {"app":"postpromoter/2.1.0"} |
created | 2018-09-02 05:48:12 |
last_update | 2018-09-02 05:48:12 |
depth | 1 |
children | 0 |
last_payout | 2018-09-09 05:48:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 66 |
author_reputation | -125,291,280,752 |
root_title | "Python Client of SteemConnect - Update: steem-connect" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 70,067,434 |
net_rshares | 0 |
Eline sağlık hocam. Geçende @emrebeyler'de de gözüme çarpmıştı. Python & SteemConnect. Ki anladığım kadarıyla burada bir açık var. SteemConnect için Python atraksiyonlarını Türkiye'den beslenecek galiba ;)
author | murattatar |
---|---|
permlink | re-hakancelik-python-client-of-steemconnect-update-steem-connect-20180902t031651275z |
category | coogger |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["coogger"],"users":["emrebeyler"],"links":["/@emrebeyler"],"image":[]} |
created | 2018-09-02 03:16:06 |
last_update | 2018-09-02 03:16:06 |
depth | 1 |
children | 1 |
last_payout | 2018-09-09 03:16:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 205 |
author_reputation | 48,825,843,967,967 |
root_title | "Python Client of SteemConnect - Update: steem-connect" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 70,058,900 |
net_rshares | 13,596,007,129 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hakancelik | 0 | 13,596,007,129 | 100% |
Teşekkürler, evet dediğiniz gibi oluyor 🙃.
author | hakancelik |
---|---|
permlink | re-murattatar-re-hakancelik-python-client-of-steemconnect-update-steem-connect-20180902t103511156z |
category | coogger |
json_metadata | {"tags":["coogger"],"app":"steemit/0.1"} |
created | 2018-09-02 10:36:09 |
last_update | 2018-09-02 10:36:09 |
depth | 2 |
children | 0 |
last_payout | 2018-09-09 10:36:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 15,102,487,166,852 |
root_title | "Python Client of SteemConnect - Update: steem-connect" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 70,083,703 |
net_rshares | 0 |