<img gnrl="br-6" src="https://cdn.steemitimages.com/DQme19QGXX1nLfjMYQbdYUVvaxgSsWyqnM85SD7q1p9EDkK/coogger-python.png"></img> #### Note: Currently, the **API service** is accessible only to those who have the **API_key**, ***Now thanks to this new features Safer, Faster and More flexible*** ### Before starting Update the package: ```python pip install coogger-python -U ``` You can include each class in our project, as below. ```python from coogger.content import ContentApi, ContentFilterApi from coogger.user import SteemConnectUserApi, UserApi, UserFilterApi from coogger.ditop import DictToObject ``` ## Coogger-python V0.2.1 ### Commit : - [coogger-python V0.2.1](https://github.com/coogger/coogger-python/commit/ae1e0f9f0d0017225405e67ab27f27a8054dd3cf) <cent ``` ... <hr> Read this content on [www.coogger.com](www.coogger.com/@hakancelik/coogger-api-update-coogger-python-v021-how-to-use-coogger-python) - Dapp; [www.coogger.com](www.coogger.com) - Category; [project](https://www.coogger.com/category/project/) - Language; [english](https://www.coogger.com/language/english/) - Topic; [coogger-python](https://www.coogger.com/coogger-python/@hakancelik/) - User; [@hakancelik](www.coogger.com/@hakancelik)<br> -------- Posted using [www.coogger.com](https://www.coogger.com) Coogger is an ecosystem where is **knowledge sharing network** which can **build web dapps** and **groups** #### Contact Us - [on Spectrum](https://spectrum.chat/coogger) - [on Discord](https://discord.gg/avmdZJa)
author | hakancelik |
---|---|
permlink | coogger-api-update-coogger-python-v021-how-to-use-coogger-python |
category | coogger |
json_metadata | "{"format": "markdown", "tags": ["coogger", "development", "coogger-python", "utopian-io", "python"], "app": "coogger/1.4.1", "ecosystem": {"name": "coogger", "version": "1.4.1", "dapp": "coogger", "topic": "coogger-python", "category": "project", "language": "english", "address": "https://github.com/coogger/coogger-python", "body": "<img gnrl=\"br-6\" src=\"https://cdn.steemitimages.com/DQme19QGXX1nLfjMYQbdYUVvaxgSsWyqnM85SD7q1p9EDkK/coogger-python.png\"></img>\r\n\r\n#### Note:\r\nCurrently, the **API service** is accessible only to those who have the **API_key**, ***Now thanks to this new features Safer, Faster and More flexible***\r\n\r\n### Before starting\r\nUpdate the package:\r\n\r\n```python\r\npip install coogger-python -U\r\n```\r\n\r\nYou can include each class in our project, as below.\r\n\r\n```python\r\nfrom coogger.content import ContentApi, ContentFilterApi\r\nfrom coogger.user import SteemConnectUserApi, UserApi, UserFilterApi\r\nfrom coogger.ditop import DictToObject\r\n```\r\n\r\n## Coogger-python V0.2.1\r\n### Commit :\r\n- [coogger-python V0.2.1](https://github.com/coogger/coogger-python/commit/ae1e0f9f0d0017225405e67ab27f27a8054dd3cf)\r\n\r\n<center>***The features added by this commit are described below.***</center>\r\n\r\n## SteemConnectUserApi, UserApi and ContentApi\r\n### Commit :\r\n[SteemConnectUserApi, UserApi and ContentApi was made with apiview class](https://github.com/coogger/coogger/commit/676f0d384d1f2c8f5cac27591c551e80a58d2997)\r\n\r\n#### SteemConnectUserApi\r\nThe **SteemConnectUserApi** class is used to access SteemConnect User information these information are ***user***, ***communty*** ***information***, ***refresh_token***, ***code*** and ***access_token*** **SteemConnectUserApi** class is used to view or update a specific SteemConnect user.\r\n\r\n```python\r\n>>> steem_connect_user = SteemConnectUserApi(username:str, api_key:str, node:str)\r\n>>> # node -> default : \"http://www.coogger.com/api/steemconnectuser/@{}/\"\r\n>>> user = steem_connect_user.get\r\n>>> user_update = steem_connect_user.update(access_token=\"new_access_token\")\r\n```\r\n\r\n#### UserApi\r\nThe **UserApi** class is used to view or update a specific user information, these information are ***user***, ***about***, ***cooggerup_confirmation***, ***cooggerup_percent***, ***vote_percent*** and ***beneficiaries***, **UserApi** class is used to view or update a specific user.\r\n\r\n```python\r\n>>> user_api = UserApi(username:str, api_key:str, node:str)\r\n>>> # node -> default : \"http://www.coogger.com/api/user/@{}/\"\r\n>>> user = user_api.get\r\n>>> user_update = user_api.update(about=\"hello\")\r\n```\r\n\r\n#### ContentApi\r\n**ContentApi** class is used to view or update a specific content information, these information are ***username, title, permlink, content, tag, category, language, definition, topic, status, time, dor, views, read, lastmod, modusername and cooggerup***.\r\n\r\n```python\r\n>>> content_api = ContentApi(username:str, permlink:str, api_key:str, node:str)\r\n>>> # node -> default -> \"https://www.coogger.com/api/content/{}/{}/\"\r\n>>> # api_key allows for the coogger api\r\n>>> content_api.update(title=\"title\", category=\"category\", status=\"status\")\r\n>>> content_api.get # to view the content\r\n```\r\n\r\n\r\n## UserFilter and ContentFilter was made with ModelViewSet class\r\n### Commit :\r\n[UserFilter and ContentFilter was made with ModelViewSet class](https://github.com/coogger/coogger/commit/67a78de7d680b59858c177d667dae4b0b56eff57)\r\n\r\n#### UserFilter\r\nThe **UserFilterApi** class allows user to be filtered by any property, these properties are ***about, cooggerup_confirmation, cooggerup_percent, vote_percent and beneficiaries***.\r\n\r\n```python\r\n>>> user_filter_api = UserFilterApi(api_key:str, node:str)\r\n>>> # node -> default = \"https://www.coogger.com/api/user/\"\r\n>>> # node -> you can set \"http://127.0.0.1:8000/api/user/\" when you work local\r\n>>> user_filter_api.filter(cooggerup_confirmation=True, beneficiaries=10)\r\n>>> users = user_filter_api.result\r\n>>> next_page = user_filter_api.next\r\n>>> previous_page = user_filter_api.previous\r\n>>> [user for user in users]\r\n```\r\n\r\n#### ContentFilter\r\nThe **ContentFilterApi** class allows content to be filtered by any property, these properties are ***permlink, category, language, topic, status # shared/ changed/approved /rejected, dor # duration of reading, views, read, mod and cooggerup***.\r\n\r\n```python\r\n>>> content_filter_api = ContentFilterApi(node:str)\r\n>>> # node -> default = \"https://www.coogger.com/api/content/\"\r\n>>> # node -> you can set \"http://127.0.0.1:8000/api/content/\" when you work local\r\n>>> content_filter_api.filter(category=\"tutorial\", status=\"approved\", language=\"turkish\")\r\n>>> contents = content_filter_api.result\r\n>>> next_page = content_filter_api.next\r\n>>> previous_page = content_filter_api.previous\r\n>>> [content for content in contents]\r\n```\r\n\r\n\r\n## ApiPermission\r\n### Commit :\r\n[ApiPermission](https://github.com/coogger/coogger/commit/5d4bddc3fb8b135d8cebae8b7e34a9bd48374272)\r\n\r\nThanks to this features the **API service** is accessible only to those who have the **API_key**\r\n\r\n\r\n### Example:\r\nWith this function, you can see **coogger.up** users who have joined in curation trail and have steem-power above **80%**.\r\n\r\n```python\r\nfrom coogger.user import UserFilterApi\r\nfrom steem.account import Account\r\n\r\nsteem_keys = [\"key\"]\r\nSTEEM = Steem(nodes=['https://api.steemit.com'], keys=steem_keys)\r\n\r\ndef get_users(api_key, STEEM):\r\n user_filter_api = UserFilterApi()\r\n user_filter_api.filter(cooggerup_confirmation=True)\r\n while True:\r\n for user in user_filter_api.results:\r\n voting_power = Account(user.username, \r\n\t\t\tsteemd_instance = STEEM).voting_power()\r\n if voting_power >= 80:\r\n yield user\r\n if user_filter_api.next is not None:\r\n user_filter = UserFilterApi(api_key=api_key, \r\n\t\t\t\t\tnode=user_filter_api.next\r\n\t\t\t\t\t).filter(cooggerup_confirmation = True)\r\n else:\r\n break\r\n\r\n```\r\n\r\nWith this function, you can see the user's access token\r\n\r\n```python\r\ndef get_access_token(username, api_key):\r\n\tuser = SteemConnectUserApi(username=username, api_key=api_key)\r\n\treturn user.get.access_token\r\n```\r\n\r\n### What next?\r\nI will develop API permissions and service, thus I will provide services according to the needs of those people."}}" |
created | 2018-08-27 22:55:30 |
last_update | 2018-12-30 01:39:54 |
depth | 0 |
children | 5 |
last_payout | 2018-09-03 22:55:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 37.626 HBD |
curator_payout_value | 11.406 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,554 |
author_reputation | 15,102,487,166,852 |
root_title | "Coogger API update | Coogger-python - V0.2.1 | How to use coogger-python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,545,617 |
net_rshares | 33,095,407,181,584 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
miniature-tiger | 0 | 58,960,615,531 | 50% | ||
steemit-turkey | 0 | 10,575,179,070 | 20% | ||
helo | 0 | 25,555,059,910 | 100% | ||
freetissues | 0 | 26,879,454,833 | 100% | ||
turkish-trail | 0 | 7,143,926,536 | 20% | ||
lastozgur | 0 | 4,839,763,203 | 100% | ||
semasping | 0 | 4,685,569,972 | 100% | ||
luigi-tecnologo | 0 | 1,116,981,942 | 4% | ||
doughtaker | 0 | 12,740,567,786 | 50% | ||
rafalski | 0 | 29,008,517,513 | 58% | ||
andrejcibik | 0 | 39,472,796,351 | 100% | ||
murattatar | 0 | 4,172,297,383 | 12% | ||
armadillocreek | 0 | 2,212,131,268 | 50% | ||
anadolu | 0 | 12,751,481,065 | 25% | ||
alkmaar | 0 | 658,777,634 | 25% | ||
utopian-io | 0 | 32,645,064,834,230 | 47.53% | ||
aykutpurde | 0 | 229,551,189 | 25% | ||
janine-ariane | 0 | 498,199,536 | 5% | ||
ugurarslanboga | 0 | 337,195,147 | 20% | ||
whiterabb1t | 0 | 413,880,965 | 5% | ||
turkiye | 0 | 223,614,908 | 25% | ||
forkonti | 0 | 73,911,012 | 12.5% | ||
mesafe | 0 | 107,330,517 | 1.25% | ||
pafulim | 0 | 634,175,046 | 2.5% | ||
cuaderno | 0 | 167,354,378 | 12.5% | ||
eyupyusuf | 0 | 138,100,125 | 12.5% | ||
enisshkurti | 0 | 26,719,511,228 | 100% | ||
barut | 0 | 109,796,930 | 12.5% | ||
steemkitchen | 0 | 79,585,122,745 | 100% | ||
hayirhah | 0 | 433,694,015 | 18.75% | ||
ihh | 0 | 584,578,347 | 76% | ||
amosbastian | 0 | 48,134,603,240 | 67.9% | ||
tdre | 0 | 10,357,261,121 | 100% | ||
turekivanoz | 0 | 610,249,373 | 100% | ||
zorto | 0 | 185,449,536 | 12.5% | ||
jjay | 0 | 854,401,658 | 100% | ||
numenk | 0 | 94,517,210 | 12.5% | ||
literaturk | 0 | 127,774,985 | 25% | ||
kndmr | 0 | 152,528,919 | 25% | ||
emrecosar | 0 | 126,248,068 | 25% | ||
new.diak | 0 | 69,200,543 | 12.5% | ||
rasit | 0 | 127,822,786 | 25% | ||
karadem | 0 | 152,585,881 | 25% | ||
maveraunnehr | 0 | 112,985,461 | 25% | ||
muratti | 0 | 76,098,072 | 12.5% | ||
hakancelik | 0 | 15,475,344,556 | 100% | ||
muratkbesiroglu | 0 | 10,622,425,156 | 3% | ||
emotionalsea | 0 | 435,442,312 | 10% | ||
scarl | 0 | 72,252,453 | 12.5% | ||
yakuzafth | 0 | 94,257,659 | 17.5% | ||
obsesija | 0 | 90,143,256 | 15% | ||
neilrichmond | 0 | 215,967,329 | 50% | ||
coogger | 0 | 2,188,974,168 | 100% | ||
ibrahimgokcen | 0 | 152,778,398 | 25% | ||
ibrahimsmngl | 0 | 608,323,505 | 100% | ||
neydi | 0 | 91,803,934 | 25% | ||
malia88 | 0 | 0 | 100% | ||
albertocotua | 0 | 560,039,397 | 50% | ||
zedsdead01 | 0 | 0 | 100% | ||
andrew28zx | 0 | 0 | 100% | ||
svetlana1 | 0 | 0 | 100% | ||
dementei | 0 | 0 | 100% | ||
borndead04 | 0 | 0 | 100% | ||
postdestek | 0 | 607,733,662 | 100% | ||
gesund | 0 | 76,072,526 | 12.5% | ||
mur.kg123 | 0 | 0 | 100% | ||
shavgen111 | 0 | 0 | 100% | ||
xachatryank | 0 | 0 | 100% | ||
remind-me | 0 | 94,420,032 | 100% | ||
teovsumsel | 0 | 0 | 100% | ||
danielyana | 0 | 0 | 100% | ||
samvelv | 0 | 0 | 100% | ||
lersus77 | 0 | 0 | 100% | ||
ionov57 | 0 | 0 | 100% | ||
greeglofchik | 0 | 0 | 100% | ||
efficientseptum | 0 | 0 | 100% | ||
banksyscotch | 0 | 0 | 100% | ||
poofwalrus | 0 | 0 | 100% | ||
househusband | 0 | 882,849,556 | 50% | ||
vicmic | 0 | 216,519,643 | 50% | ||
junelinarez | 0 | 286,008,351 | 50% | ||
chestyovert | 0 | 0 | 100% | ||
pignutcraft | 0 | 0 | 100% | ||
emmalg87 | 0 | 238,172,061 | 50% | ||
decorousoutspoke | 0 | 0 | 100% | ||
killex | 0 | 0 | 100% | ||
sigur | 0 | 0 | 100% | ||
olga.kapaeva89 | 0 | 0 | 100% | ||
katerinakarim | 0 | 0 | 100% | ||
rdavis81 | 0 | 0 | 100% | ||
jamesloydd | 0 | 0 | 100% | ||
hipolitc | 0 | 0 | 100% | ||
pinchtedious | 0 | 0 | 100% | ||
portionvolume | 0 | 0 | 100% | ||
stressedboiler | 0 | 0 | 100% | ||
berwynelbow | 0 | 0 | 100% | ||
cloudtickets | 0 | 0 | 100% | ||
grindanalogue | 0 | 0 | 100% | ||
soapmousse | 0 | 0 | 100% | ||
pastrytorn | 0 | 0 | 100% | ||
buddingcaviar | 0 | 0 | 100% | ||
shadytension | 0 | 0 | 100% | ||
mailrabbit | 0 | 0 | 100% | ||
moistspotify | 0 | 0 | 100% | ||
babinetgout | 0 | 0 | 100% | ||
xvegax | 0 | 0 | 100% | ||
olesjakoval | 0 | 0 | 100% | ||
mahsumclkblk | 0 | 609,870,953 | 100% | ||
denistolakov | 0 | 0 | 100% | ||
kernovanatali | 0 | 0 | 100% | ||
semirovaalinka | 0 | 0 | 100% | ||
artyrdavletov | 0 | 0 | 100% | ||
metaboliss | 0 | 0 | 100% | ||
oksanagancharova | 0 | 0 | 100% | ||
dinasamoilova | 0 | 0 | 100% | ||
curiouscred | 0 | 0 | 100% | ||
aleindium | 0 | 0 | 100% | ||
hexagoncanadian | 0 | 0 | 100% | ||
testifyservant | 0 | 0 | 100% | ||
ozeryilmaz | 0 | 3,974,994,444 | 50% | ||
liquidisebland | 0 | 0 | 100% | ||
xericparrot | 0 | 0 | 100% | ||
modelingkey | 0 | 0 | 100% | ||
recentlyimply | 0 | 0 | 100% | ||
shalelinkage | 0 | 0 | 100% | ||
fissionbutties | 0 | 0 | 100% | ||
abalonegrateful | 0 | 0 | 100% | ||
weaselcheek | 0 | 0 | 100% | ||
servletbookmark | 0 | 0 | 100% | ||
sleddergirl | 0 | 0 | 100% | ||
blueberryeither | 0 | 0 | 100% | ||
corneahang | 0 | 0 | 100% | ||
senchiks | 0 | 0 | 100% | ||
akudrin88 | 0 | 0 | 100% | ||
ayire | 0 | 72,882,546 | 12.5% | ||
irayza | 0 | 75,919,318 | 12.5% | ||
shockingextoll | 0 | 0 | 100% | ||
motleychert | 0 | 0 | 100% | ||
periodantenna | 0 | 0 | 100% | ||
rollpub | 0 | 0 | 100% | ||
lidaricerink | 0 | 0 | 100% | ||
soulfulurban | 0 | 0 | 100% | ||
coogger.pay | 0 | 131,527,724 | 100% | ||
coogger.wallet | 0 | 135,299,415 | 100% | ||
praporvaler | 0 | 0 | 100% | ||
umaykl | 0 | 0 | 100% | ||
sergeyrevutskiy | 0 | 0 | 100% | ||
anmal1990 | 0 | 0 | 100% | ||
sblisn1985 | 0 | 0 | 100% | ||
sashokbad | 0 | 0 | 100% | ||
igor.gorshkov | 0 | 0 | 100% | ||
antonturov90 | 0 | 0 | 100% | ||
uliaa | 0 | 0 | 100% | ||
mehmetcelik | 0 | 121,462,062 | 100% | ||
corpusclerobotic | 0 | 0 | 100% | ||
bangersmippery | 0 | 0 | 100% | ||
curdterrace | 0 | 0 | 100% | ||
stopthe | 0 | 0 | 100% | ||
stopskimmed | 0 | 0 | 100% | ||
pugwhile | 0 | 0 | 100% | ||
rozabeer | 0 | 0 | 100% | ||
mark.nikolaychev | 0 | 0 | 100% | ||
miss.aida | 0 | 0 | 100% | ||
qwopa.naoxote | 0 | 0 | 100% | ||
lico.ryka | 0 | 0 | 100% | ||
palach-myasnik | 0 | 0 | 100% | ||
bornnonben | 0 | 0 | 100% | ||
abjecterase | 0 | 0 | 100% | ||
sitemapmap | 0 | 0 | 100% | ||
moistcurse | 0 | 0 | 100% | ||
maternalgrizzled | 0 | 0 | 100% | ||
coyotefizzle | 0 | 0 | 100% | ||
weaponturkey | 0 | 0 | 100% | ||
normachazard | 0 | 0 | 100% | ||
deadeastern | 0 | 0 | 100% | ||
nestlewider | 0 | 0 | 100% | ||
recognisedhip | 0 | 0 | 100% | ||
splashdrown | 0 | 0 | 100% | ||
vicarneuron | 0 | 0 | 100% | ||
banffvulcan | 0 | 0 | 100% | ||
jaybum | 0 | 0 | 100% | ||
butanecomment | 0 | 0 | 100% | ||
dayerlogistic | 0 | 0 | 100% | ||
selvetearful | 0 | 0 | 100% | ||
glyderaubeaf | 0 | 0 | 100% | ||
buildingdim | 0 | 0 | 100% | ||
randrolcheribun | 0 | 0 | 100% | ||
amafcolmedoor | 0 | 0 | 100% | ||
batmimabeme | 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-coogger-api-update-coogger-python-v021-how-to-use-coogger-python-20180827t225633 |
category | coogger |
json_metadata | "{"community": "coogger", "tags": ["coogger"]}" |
created | 2018-08-27 22:56:33 |
last_update | 2018-08-27 22:56:33 |
depth | 1 |
children | 0 |
last_payout | 2018-09-03 22:56:33 |
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,080 |
author_reputation | 401,941,647,706 |
root_title | "Coogger API update | Coogger-python - V0.2.1 | How to use coogger-python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,545,692 |
net_rshares | 9,536,465,348 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
hakancelik | 0 | 7,391,270,663 | 50% | ||
coogger | 0 | 2,145,194,685 | 100% |
* It was hard to find a line that was not touched. ;-) * Do my eyes deceive me or [this](https://github.com/coogger/coogger/blob/676f0d384d1f2c8f5cac27591c551e80a58d2997/coogger/api/serializers.py#L3) is in twice? * No comments, except this ` # TODO: content_update buraya bak sayfa iki defa güncellenince içerik güncelleniyor` but I can't read it. Your contribution has been evaluated according to [Utopian policies and guidelines](https://join.utopian.io/guidelines), as well as a predefined set of questions pertaining to the category. To view those questions and the relevant answers related to your post, [click here](https://review.utopian.io/result/3/2221134). ---- Need help? Write a ticket on https://support.utopian.io/. Chat with us on [Discord](https://discord.gg/uTyJkNm). [[utopian-moderator]](https://join.utopian.io/)
author | helo |
---|---|
permlink | re-hakancelik-coogger-api-update-coogger-python-v021-how-to-use-coogger-python-20180829t165746443z |
category | coogger |
json_metadata | {"tags":["coogger"],"links":["https://github.com/coogger/coogger/blob/676f0d384d1f2c8f5cac27591c551e80a58d2997/coogger/api/serializers.py#L3","https://join.utopian.io/guidelines","https://review.utopian.io/result/3/2221134","https://support.utopian.io/","https://discord.gg/uTyJkNm","https://join.utopian.io/"],"app":"steemit/0.1"} |
created | 2018-08-29 16:57:45 |
last_update | 2018-08-29 16:57:45 |
depth | 1 |
children | 2 |
last_payout | 2018-09-05 16:57:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 4.197 HBD |
curator_payout_value | 1.358 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 841 |
author_reputation | 121,547,934,535,311 |
root_title | "Coogger API update | Coogger-python - V0.2.1 | How to use coogger-python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,718,494 |
net_rshares | 3,700,282,387,474 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
utopian-io | 0 | 3,670,018,599,722 | 5.11% | ||
amosbastian | 0 | 10,529,444,458 | 14.77% | ||
reazuliqbal | 0 | 7,796,354,391 | 20% | ||
statsexpert | 0 | 3,542,602,402 | 60% | ||
mightypanda | 0 | 7,026,658,373 | 40% | ||
fastandcurious | 0 | 1,368,728,128 | 70% |
Thanks :), I will try to improve the comments.
author | hakancelik |
---|---|
permlink | re-helo-re-hakancelik-coogger-api-update-coogger-python-v021-how-to-use-coogger-python-20180829t175409703z |
category | coogger |
json_metadata | {"tags":["coogger"],"app":"steemit/0.1"} |
created | 2018-08-29 17:54:09 |
last_update | 2018-08-29 17:54:09 |
depth | 2 |
children | 0 |
last_payout | 2018-09-05 17:54: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 | 46 |
author_reputation | 15,102,487,166,852 |
root_title | "Coogger API update | Coogger-python - V0.2.1 | How to use coogger-python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,722,792 |
net_rshares | 0 |
Thank you for your review, @helo! So far this week you've reviewed 5 contributions. Keep up the good work!
author | utopian-io |
---|---|
permlink | re-re-hakancelik-coogger-api-update-coogger-python-v021-how-to-use-coogger-python-20180829t165746443z-20180830t072509z |
category | coogger |
json_metadata | "{"app": "beem/0.19.42"}" |
created | 2018-08-30 07:25:09 |
last_update | 2018-08-30 07:25:09 |
depth | 2 |
children | 0 |
last_payout | 2018-09-06 07:25: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 | 107 |
author_reputation | 152,955,367,999,756 |
root_title | "Coogger API update | Coogger-python - V0.2.1 | How to use coogger-python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,771,918 |
net_rshares | 0 |
Hey, @hakancelik! **Thanks for contributing on Utopian**. We’re already looking forward to your next contribution! **Get higher incentives and support Utopian.io!** Simply set @utopian.pay as a 5% (or higher) payout beneficiary on your contribution post (via [SteemPlus](https://chrome.google.com/webstore/detail/steemplus/mjbkjgcplmaneajhcbegoffkedeankaj?hl=en) or [Steeditor](https://steeditor.app)). **Want to chat? Join us on Discord https://discord.gg/h52nFrV.** <a href='https://steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1'>Vote for Utopian Witness!</a>
author | utopian-io |
---|---|
permlink | re-coogger-api-update-coogger-python-v021-how-to-use-coogger-python-20180829t182533z |
category | coogger |
json_metadata | "{"app": "beem/0.19.42"}" |
created | 2018-08-29 18:25:36 |
last_update | 2018-08-29 18:25:36 |
depth | 1 |
children | 0 |
last_payout | 2018-09-05 18:25:36 |
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 | 592 |
author_reputation | 152,955,367,999,756 |
root_title | "Coogger API update | Coogger-python - V0.2.1 | How to use coogger-python" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 69,725,261 |
net_rshares | 0 |