Making SQL queries to steemsql.com with python scripts on macOS by geekgirl

View this thread on steempeak.com
· @geekgirl · (edited)
$81.63
Making SQL queries to steemsql.com with python scripts on macOS
![010110.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1513328417/jq9gzhusacxkchdefvjn.png)


A few weeks ago I plunged into learning python and sql programming with a desire to automate my curating activities on Steem. I was introduced to steemsql.com, which created and maintained by arcange. This gave me a great opportunity to interact with Steem blockchain data programmatically. Before I start I would like to thank arcange for creating and continuously improving steemsql and making this tool publicly available for free. I would like to express my gratitude to Locikll, whom I see as my mentor in my journey of learning python programming. I would also like to thank carlgnash who introduced me to steemsql, helped me in understanding sql, shared his knowledge and his sql scripts he made for curation purposes. 

The biggest challenge I had was initial setup and installations of needed drivers and api to make my scripts connect to steemsql. arcange has a [detailed tutorials with updates on how to use steemsql](https://steemit.com/steemsql/@arcange/steemsql-update-13-virtual-operations-available). He even has a sample python to connect to steemsql. However, that didn't work on my mac computer. Asking questions and trying to come up with a solution I quickly realized that majority of devs are using PC, hence there was little to no support for how to make it work on mac. I even couldn't find a decent GUI program that would flawlessly connect to MSSQL server. Since I was already learning python, I decided to continue my quest on finding a solution and that is I would like to share, in hopes this can be beneficial to other mac users. 

<center> **Goal of this tutorial is to make SQL queries using python scripts to steemsql on macOS. This tutorial is set-up in 2 sections:** </center>
1. Initial setup and installations on macOS 
2. Writing a simple python script with sql command that connects to steemsql 

<center> **Initial set-up and installations on macOS** </center>

First we need to make sure homebrew is installed. If homebrew is not installed please go to the terminal app and type the following command. Url is also part of the command line.

``ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"``

Next, enter the following command:

``brew tap microsoft/mssql-release https://github.com/Microsoft/homebrew-mssql-release``

Then, 

``brew update``

Now, we need to install ODBC driver. Enter the following in the terminal:

``ACCEPT_EULA=y brew install --no-sandbox msodbcsql``

We are almost done with the terminal commands. Last thing we need to install is pypyodbc.py api to use in our python scripts. Fist make sure you have python 3 installed, if you haven't installed python 3 yet, you can go to python.org and download it from there. Now lets install pypyodbc.py. Go back to the terminal and enter the following command.

``pip3 install pypyodbc``

Now we are ready to move on writing our python. All of these preparation work was necessary to make our queries work using python on macOS.

<center> **Writing a simple python script with SQL command** </center>

``import pypyodbc``
``import pprint``
``connection = pypyodbc.connect('Driver={ODBC Driver 13 for SQL Server};'``
``'Server=sql.steemsql.com;'``
``'Database=DBSteem;'``
``'uid=steemit;'``
``'pwd=steemit')``
``cursor = connection.cursor()``
``SQLCommand = '''``
``SELECT delegator, delegatee, vesting_shares, timestamp``
``FROM  TxDelegateVestingShares``
``WHERE delegator = 'ned'``
``ORDER BY timestamp desc'''``
`` ``
``result = cursor.execute(SQLCommand)``
``result = result.fetchmany(100)``
``pprint.pprint(result)``
``connection.close()``


Now your macOS is ready to use steemsql with python. The sample script above will return list of people Ned has delegated SP to.  SQL query can be changed to any other kind of query you wish simply by changing the contents of SQLCommand variable. It is important to keep triple single quotes at the beginning and end of your query command. There can be many useful queries written to get all kinds of blockchain data from steemsql. For this tutorial purposes I decided to go with shorter one, so code is smaller and easier to understand. That one in particular is one of the sql commands carlgnash shared with me few weeks ago. 

Contents of connection variable describe how the connection will be made, server name, database, username, and password. I doubt there will ever be a need to make any changes there in your scripts. Result variable stores the results of the query and only gets list of upto 100. That number can be changes to higher number if there is a need. Pprint prints out the results. I used pprint, because it prints out list types in a more reader friendly way. 

Congratulations mac user, now you can also make queries to steemsql and take full advantage of it as PC user have been doing for a while. 

I have multiple scripts written that server various purposes. The main ones I often use as a filtering tool for curation purposes. Some of my scripts run on a timer, every hour or so, get the results, save them on a file, and also email the files. Auto-email feature is pretty good, especially when I am away from my desk and on mobile. I am still learning and I am grateful for this platform for motivating me to learn new skills. 

If you have any questions, please leave them in the comments or I can be reached at steemit.chat #librarian channel. By the way, l have set up a librarian bot in #librarian channel that can answer to some cool query commands. Librarian is still in early learning stages as I am. It is getting smarter everyday though. 






<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@geekgirl/making-sql-queries-to-steemsql-com-with-python-scripts-on-macos">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 72 others
properties (23)
post_id20,527,123
authorgeekgirl
permlinkmaking-sql-queries-to-steemsql-com-with-python-scripts-on-macos
categoryutopian-io
json_metadata"{"type": "tutorials", "repository": {"compare_url": "https://api.github.com/repos/Netherdrake/steemsql/compare/{base}...{head}", "events_url": "https://api.github.com/repos/Netherdrake/steemsql/events", "forks": 0, "merges_url": "https://api.github.com/repos/Netherdrake/steemsql/merges", "issues_url": "https://api.github.com/repos/Netherdrake/steemsql/issues{/number}", "contents_url": "https://api.github.com/repos/Netherdrake/steemsql/contents/{+path}", "fork": false, "git_url": "git://github.com/Netherdrake/steemsql.git", "assignees_url": "https://api.github.com/repos/Netherdrake/steemsql/assignees{/user}", "owner": {"login": "Netherdrake", "type": "User", "following_url": "https://api.github.com/users/Netherdrake/following{/other_user}", "received_events_url": "https://api.github.com/users/Netherdrake/received_events", "subscriptions_url": "https://api.github.com/users/Netherdrake/subscriptions", "repos_url": "https://api.github.com/users/Netherdrake/repos", "gravatar_id": "", "organizations_url": "https://api.github.com/users/Netherdrake/orgs", "id": 3516903, "avatar_url": "https://avatars1.githubusercontent.com/u/3516903?v=4", "site_admin": false, "followers_url": "https://api.github.com/users/Netherdrake/followers", "gists_url": "https://api.github.com/users/Netherdrake/gists{/gist_id}", "html_url": "https://github.com/Netherdrake", "events_url": "https://api.github.com/users/Netherdrake/events{/privacy}", "url": "https://api.github.com/users/Netherdrake", "starred_url": "https://api.github.com/users/Netherdrake/starred{/owner}{/repo}"}, "size": 3, "issue_events_url": "https://api.github.com/repos/Netherdrake/steemsql/issues/events{/number}", "git_refs_url": "https://api.github.com/repos/Netherdrake/steemsql/git/refs{/sha}", "blobs_url": "https://api.github.com/repos/Netherdrake/steemsql/git/blobs{/sha}", "pushed_at": "2016-11-28T10:27:14Z", "watchers_count": 1, "stargazers_url": "https://api.github.com/repos/Netherdrake/steemsql/stargazers", "teams_url": "https://api.github.com/repos/Netherdrake/steemsql/teams", "comments_url": "https://api.github.com/repos/Netherdrake/steemsql/comments{/number}", "archived": false, "svn_url": "https://github.com/Netherdrake/steemsql", "id": 74899225, "subscribers_url": "https://api.github.com/repos/Netherdrake/steemsql/subscribers", "watchers": 1, "ssh_url": "git@github.com:Netherdrake/steemsql.git", "name": "steemsql", "mirror_url": null, "statuses_url": "https://api.github.com/repos/Netherdrake/steemsql/statuses/{sha}", "has_projects": true, "milestones_url": "https://api.github.com/repos/Netherdrake/steemsql/milestones{/number}", "description": null, "has_downloads": true, "keys_url": "https://api.github.com/repos/Netherdrake/steemsql/keys{/key_id}", "url": "https://api.github.com/repos/Netherdrake/steemsql", "license": null, "html_url": "https://github.com/Netherdrake/steemsql", "commits_url": "https://api.github.com/repos/Netherdrake/steemsql/commits{/sha}", "open_issues_count": 0, "stargazers_count": 1, "branches_url": "https://api.github.com/repos/Netherdrake/steemsql/branches{/branch}", "score": 16.76778, "forks_url": "https://api.github.com/repos/Netherdrake/steemsql/forks", "deployments_url": "https://api.github.com/repos/Netherdrake/steemsql/deployments", "language": "Python", "homepage": null, "trees_url": "https://api.github.com/repos/Netherdrake/steemsql/git/trees{/sha}", "has_issues": true, "collaborators_url": "https://api.github.com/repos/Netherdrake/steemsql/collaborators{/collaborator}", "git_commits_url": "https://api.github.com/repos/Netherdrake/steemsql/git/commits{/sha}", "open_issues": 0, "private": false, "git_tags_url": "https://api.github.com/repos/Netherdrake/steemsql/git/tags{/sha}", "pulls_url": "https://api.github.com/repos/Netherdrake/steemsql/pulls{/number}", "releases_url": "https://api.github.com/repos/Netherdrake/steemsql/releases{/id}", "notifications_url": "https://api.github.com/repos/Netherdrake/steemsql/notifications{?since,all,participating}", "contributors_url": "https://api.github.com/repos/Netherdrake/steemsql/contributors", "full_name": "Netherdrake/steemsql", "updated_at": "2016-12-13T17:47:33Z", "forks_count": 0, "downloads_url": "https://api.github.com/repos/Netherdrake/steemsql/downloads", "hooks_url": "https://api.github.com/repos/Netherdrake/steemsql/hooks", "languages_url": "https://api.github.com/repos/Netherdrake/steemsql/languages", "default_branch": "master", "labels_url": "https://api.github.com/repos/Netherdrake/steemsql/labels{/name}", "issue_comment_url": "https://api.github.com/repos/Netherdrake/steemsql/issues/comments{/number}", "has_pages": false, "tags_url": "https://api.github.com/repos/Netherdrake/steemsql/tags", "clone_url": "https://github.com/Netherdrake/steemsql.git", "archive_url": "https://api.github.com/repos/Netherdrake/steemsql/{archive_format}{/ref}", "has_wiki": true, "created_at": "2016-11-27T16:18:34Z", "subscription_url": "https://api.github.com/repos/Netherdrake/steemsql/subscription"}, "pullRequests": [], "format": "markdown", "image": ["https://res.cloudinary.com/hpiynhbhq/image/upload/v1513328417/jq9gzhusacxkchdefvjn.png"], "links": ["https://steemit.com/steemsql/@arcange/steemsql-update-13-virtual-operations-available", "https://utopian.io/utopian-io/@geekgirl/making-sql-queries-to-steemsql-com-with-python-scripts-on-macos"], "app": "steemit/0.1", "platform": "github", "tags": ["utopian-io", "programming", "tutorial", "steemsql", "python"], "community": "utopian"}"
created2017-12-15 09:32:39
last_update2017-12-15 16:45:27
depth0
children18
net_rshares15,854,700,552,217
last_payout2017-12-22 09:32:39
cashout_time1969-12-31 23:59:59
total_payout_value57.076 SBD
curator_payout_value24.549 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length5,881
author_reputation169,390,437,178,762
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (136)
@carlgnash ·
$2.26
Awesome this should be super helpful to the Mac users.  My friend @buckydurddle figured out a different way to connect to SteemSQL with a Mac (and wrote a tutorial post about it) but honestly the way he worked it out involved jumping through a lot more hoops!  Using python to connect on a Mac seems to be pretty simple.  

Very nicely written and easily understandable post.  I am glad that my sharing some SQL queries with you sparked your interest - you have taken the baton and are off and running!  

Much love - Carl
👍  ,
properties (23)
post_id20,529,644
authorcarlgnash
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171215t100502684z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["buckydurddle"], "tags": ["utopian-io"]}"
created2017-12-15 10:05:03
last_update2017-12-15 10:05:03
depth1
children1
net_rshares355,761,302,701
last_payout2017-12-22 10:05:03
cashout_time1969-12-31 23:59:59
total_payout_value2.091 SBD
curator_payout_value0.165 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length522
author_reputation92,849,116,967,026
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@geekgirl ·
Thank you. So much to learn and so much fun at the same time. I will be bugging you a lot with questions. Sorry and thank you 😊 in advance.
properties (22)
post_id20,530,503
authorgeekgirl
permlinkre-carlgnash-re-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171215t101636936z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-12-15 10:16:36
last_update2017-12-15 10:16:36
depth2
children0
net_rshares0
last_payout2017-12-22 10:16: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_length139
author_reputation169,390,437,178,762
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@miniature-tiger ·
$0.37
Awesome @geekgirl! 

I'm a mac user so I think that this may be something very useful for me. I don't know python *(I've only recently learned SQL)* so I think that'll be the next thing I pick up. Thanks for sharing!
👍  
properties (23)
post_id20,539,416
authorminiature-tiger
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171215t120943201z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "users": ["geekgirl"], "tags": ["utopian-io"]}"
created2017-12-15 12:09:42
last_update2017-12-15 12:09:42
depth1
children1
net_rshares59,200,092,705
last_payout2017-12-22 12:09:42
cashout_time1969-12-31 23:59:59
total_payout_value0.281 SBD
curator_payout_value0.092 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length216
author_reputation74,702,189,892,733
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@geekgirl ·
I only started learning python a few weeks ago myself. It is fun. Once you get the basics, it is super easy to make queries. For query purposes, your knowledge of SQL would be more important. Let me know how it goes. I would like to learn more SQL myself.
properties (22)
post_id20,556,879
authorgeekgirl
permlinkre-miniature-tiger-re-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171215t151432702z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-12-15 15:14:33
last_update2017-12-15 15:14:33
depth2
children0
net_rshares0
last_payout2017-12-22 15:14:33
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_reputation169,390,437,178,762
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@knowledges ·
$2.25
Thank you for the contribution. It has been approved. :)

You can contact us on [Discord](https://discord.gg/UCvqCsx).
**[[utopian-moderator]](https://utopian.io/moderators)**
👍  
properties (23)
post_id20,566,410
authorknowledges
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171215t164816111z
categoryutopian-io
json_metadata"{"app": "busy/1.0.0", "community": "busy", "tags": ["utopian-io"]}"
created2017-12-15 16:48:21
last_update2017-12-15 16:48:21
depth1
children0
net_rshares359,147,229,077
last_payout2017-12-22 16:48:21
cashout_time1969-12-31 23:59:59
total_payout_value1.918 SBD
curator_payout_value0.333 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length175
author_reputation96,976,535,910,824
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@mahdie ·
Upvtd and reblogged
properties (22)
post_id20,567,109
authormahdie
permlinkre-geekgirl-20171215t235554451z
categoryutopian-io
json_metadata"{"app": "esteem/1.5.0", "format": "markdown+html", "community": "esteem", "tags": ["utopian-io", "programming", "tutorial", "steemsql", "python"]}"
created2017-12-15 16:55:57
last_update2017-12-15 16:55:57
depth1
children1
net_rshares0
last_payout2017-12-22 16:55: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_length19
author_reputation1,093,676,521,224
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@geekgirl ·
Thank you
properties (22)
post_id20,574,475
authorgeekgirl
permlinkre-mahdie-re-geekgirl-20171215t181132126z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-12-15 18:11:33
last_update2017-12-15 18:11:33
depth2
children0
net_rshares0
last_payout2017-12-22 18:11:33
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_length9
author_reputation169,390,437,178,762
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@exe8422 ·
$0.07
thank you very much :)
👍  
properties (23)
post_id20,579,769
authorexe8422
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171215t190806631z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-12-15 19:08:09
last_update2017-12-15 19:08:09
depth1
children0
net_rshares11,840,110,829
last_payout2017-12-22 19:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.056 SBD
curator_payout_value0.015 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length22
author_reputation42,008,128,458,900
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@utopian-io ·
### Hey @geekgirl I am @utopian-io. I have just upvoted you!
#### Achievements
- You are generating more rewards than average for this category. Super!;)
- This is your first accepted contribution here in Utopian. Welcome!
#### Suggestions
- Contribute more often to get higher and higher rewards. I wish to see you often!
- Work on your followers to increase the votes/rewards. I follow what humans do and my vote is mainly based on that. Good luck!
#### Get Noticed!
- Did you know project owners can manually vote with their own voting power or by voting power delegated to their projects? Ask the project owner to review your contributions!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
post_id20,602,683
authorutopian-io
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171216t001436306z
categoryutopian-io
json_metadata"{"app": "utopian/1.0.0", "community": "utopian", "tags": ["utopian-io"]}"
created2017-12-16 00:14:36
last_update2017-12-16 00:14:36
depth1
children0
net_rshares0
last_payout2017-12-23 00:14: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_length1,522
author_reputation152,913,012,544,965
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@avesa ·
$0.57
Awesome tutorial! I have been learning some python too with definitely intention of playing with steemsql. Will be bookmarking this post :)
👍  
properties (23)
post_id20,633,534
authoravesa
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171216t075059645z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-12-16 07:51:00
last_update2017-12-16 07:51:00
depth1
children0
net_rshares92,849,406,411
last_payout2017-12-23 07:51:00
cashout_time1969-12-31 23:59:59
total_payout_value0.429 SBD
curator_payout_value0.142 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length139
author_reputation19,299,922,076,929
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@neurallearner ·
Come and learn [how AI processes images](https://steemit.com/ai/@neurallearner/ai-introduction-part-2-images-and-and-convolutional-neural-network) :)
properties (22)
post_id20,701,098
authorneurallearner
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171216t213120942z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/ai/@neurallearner/ai-introduction-part-2-images-and-and-convolutional-neural-network"], "tags": ["utopian-io"]}"
created2017-12-16 21:31:24
last_update2017-12-16 21:31:24
depth1
children0
net_rshares0
last_payout2017-12-23 21:31: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_length149
author_reputation52,749,970,637
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@oluwoleolaide ·
$1.07
This Techie codes made me follow you, i love Geeks Ladies....can i chat you up on discord or steemchat pls?
👍  ,
properties (23)
post_id20,815,818
authoroluwoleolaide
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171217t205413485z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-12-17 20:54:15
last_update2017-12-17 20:54:15
depth1
children2
net_rshares170,469,168,922
last_payout2017-12-24 20:54:15
cashout_time1969-12-31 23:59:59
total_payout_value0.940 SBD
curator_payout_value0.125 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length107
author_reputation68,830,001,303,403
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@geekgirl ·
$2.37
Thank you. I am usually on steemit.chat, occasionally show up on discord too. My steemit.chat residence is in #curie channel :)
👍  
properties (23)
post_id20,839,913
authorgeekgirl
permlinkre-oluwoleolaide-re-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171218t021542517z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io", "curie"]}"
created2017-12-18 02:15:42
last_update2017-12-18 02:15:42
depth2
children1
net_rshares384,113,142,273
last_payout2017-12-25 02:15:42
cashout_time1969-12-31 23:59:59
total_payout_value1.779 SBD
curator_payout_value0.593 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length127
author_reputation169,390,437,178,762
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@oluwoleolaide ·
Ouch, am scared to chat in there...i have been cautioned back in March or April when am still very new on Steemit...But i'll be dropping by to say hello and Weldone to you often
properties (22)
post_id21,085,031
authoroluwoleolaide
permlinkre-geekgirl-re-oluwoleolaide-re-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171219t193155483z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-12-19 19:31:57
last_update2017-12-19 19:31:57
depth3
children0
net_rshares0
last_payout2017-12-26 19:31: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_length177
author_reputation68,830,001,303,403
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@rambai ·
this is so hard to comprehend, all I know how to do is draw...but I am determined to learn...python, here I come...
properties (22)
post_id21,217,471
authorrambai
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20171220t175542421z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2017-12-20 17:55:45
last_update2017-12-20 17:55:45
depth1
children0
net_rshares0
last_payout2017-12-27 17:55:45
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_reputation7,605,208,258,206
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ianchan ·
Hi, do you use any tools to draw graphs for analyzing these data?
👍  
properties (23)
post_id25,387,685
authorianchan
permlinkre-geekgirl-making-sql-queries-to-steemsql-com-with-python-scripts-on-macos-20180113t091314220z
categoryutopian-io
json_metadata"{"app": "steemit/0.1", "tags": ["utopian-io"]}"
created2018-01-13 09:13:15
last_update2018-01-13 09:13:15
depth1
children0
net_rshares614,380,477
last_payout2018-01-20 09:13: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_length65
author_reputation23,804,916,731
root_title"Making SQL queries to steemsql.com with python scripts on macOS"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)