# Learn Python Series (#21) - Handling Dates and Time - Part 1  #### Full additional iPython tutorial sample code file included here: [https://github.com/realScipio/learn-python-series/blob/master/datetime-01.ipynb](https://github.com/realScipio/learn-python-series/blob/master/datetime-01.ipynb) #### What Will I Learn? - You will learn about the existence and conceptual use cases of the built-in Python modules `time`, `calendar` and `datetime`, and about an external package called `maya` that also conveniently handles dates and times. The first two mentioned modules are in-depth discussed in this tutorial episode; - Regarding the `time` module, the most important methods will be discussed; - on top of that I will explain the constructs of full-9-time tuples and time_struct objects, as well as about time formatting strings directives; - we will then discuss a complete back-and-forth time object vs time string formatting / parsing example, with which you'll probably be able to do just about anything you want to regarding the handling of dates and times with respect to UNIX timestamps (epoch-related), time_struct objects and time strings; - finally we'll briefly touch upon a few convenient `calendar` module methods that provide some additional value. #### Requirements - A working modern computer running macOS, Windows or Ubuntu; - An installed Python 3(.6) distribution, such as (for example) the Anaconda Distribution; - The ambition to learn Python programming; #### Difficulty Intermediate #### Curriculum (of the `Learn Python Series`): - [Learn Python Series - Intro](https://utopian.io/utopian-io/@scipio/learn-python-series-intro) - [Learn Python Series (#2) - Handling Strings Part 1](https://utopian.io/utopian-io/@scipio/learn-python-series-2-handling-strings-part-1) - [Learn Python Series (#3) - Handling Strings Part 2](https://utopian.io/utopian-io/@scipio/learn-python-series-3-handling-strings-part-2) - [Learn Python Series (#4) - Round-Up #1](https://utopian.io/utopian-io/@scipio/learn-python-series-4-round-up-1) - [Learn Python Series (#5) - Handling Lists Part 1](https://utopian.io/utopian-io/@scipio/learn-python-series-5-handling-lists-part-1) - [Learn Python Series (#6) - Handling Lists Part 2](https://utopian.io/utopian-io/@scipio/learn-python-series-6-handling-lists-part-2) - [Learn Python Series (#7) - Handling Dictionaries](https://utopian.io/utopian-io/@scipio/learn-python-series-7-handling-dictionaries) - [Learn Python Series (#8) - Handling Tuples](https://utopian.io/utopian-io/@scipio/learn-python-series-8-handling-tuples) - [Learn Python Series (#9) - Using Import](https://utopian.io/utopian-io/@scipio/learn-python-series-9-using-import) - [Learn Python Series (#10) - Matplotlib Part 1](https://utopian.io/utopian-io/@scipio/learn-python-series-10-matplotlib-part-1) - [Learn Python Series (#11) - NumPy Part 1](https://utopian.io/utopian-io/@scipio/learn-python-series-11-numpy-part-1) - [Learn Python Series (#12) - Handling Files](https://utopian.io/utopian-io/@scipio/learn-python-series-12-handling-files) - [Learn Python Series (#13) - Mini Project - Developing a Web Crawler Part 1](https://utopian.io/utopian-io/@scipio/learn-python-series-13-mini-project-developing-a-web-crawler-part-1) - [Learn Python Series (#14) - Mini Project - Developing a Web Crawler Part 2](https://utopian.io/utopian-io/@scipio/learn-python-series-14-mini-project-developing-a-web-crawler-part-2) - [Learn Python Series (#15) - Handling JSON](https://utopian.io/utopian-io/@scipio/learn-python-series-15-handling-json) - [Learn Python Series (#16) - Mini Project - Developing a Web Crawler Part 3](https://utopian.io/utopian-io/@scipio/learn-python-series-16-mini-project-developing-a-web-crawler-part-3) - [Learn Python Series (#17) - Roundup #2 - Combining and analyzing any-to-any multi-currency historical data](https://utopian.io/utopian-io/@scipio/learn-python-series-17-roundup-2-combining-and-analyzing-any-to-any-multi-currency-historical-data) - [Learn Python Series (#18) - PyMongo Part 1](https://utopian.io/utopian-io/@scipio/learn-python-series-18-pymongo-part-1) - [Learn Python Series (#19) - PyMongo Part 2](https://utopian.io/utopian-io/@scipio/learn-python-series-19-pymongo-part-2) - [Learn Python Series (#20) - PyMongo Part 3](https://steemit.com/utopian-io/@scipio/learn-python-series-20-pymongo-part-3) # Learn Python Series (#21) - Handling Dates and Time Part 1 I think **it's about time** ;-) to discuss with you some fundamentals regarding the handling of different date & time formats and functionality. There are a lot of programming situations in which dates and times play an important role; in some of the previous `Learn Python Series` episodes, where we discussed the historical currency daily openings for example, dates were involved. We only created a (JSON-based) list from old to new from it, and plotted the daily price values, but what if we wanted to know _"what was the price 34 days before March 18 2018?"_ For situations like that, some knowledge regarding how to handle dates and times is needed. Python does not include default / native data types for dates and times (as it does for a string and a list for example), but we can make use of the functionality provided in the `time`, `datetime` and `calendar` modules. - The `datetime` module includes functionality for handling dates, times, and combinations, and you can perform some arithmetic and comparison with it. It can also do some basic conversion between datetime objects and formatted strings. - The `time` module focuses on time-related functions, but handles dates as well to a certain extent, and it includes some formatting functionality for switching between time_structs / 9-tuples and strings. - The `calendar` module can be used to format representations of days, weeks, months and years, and you can for example compute the day of the week on any date. And then there's also for example the excellent external `Maya` package available to work with... Lots to learn! So let's begin! # The `time` module ### `time.time()` Probably the most used `time` method is `time.time()`: it returns the number of seconds passed between "now" (the exact moment you're calling `time.time()`) and the **epoch**, being **Thursday, January 1st, 1970, 00:00:00 UTC, on UNIX-like systems**. ```python import time localtime = time.time() print(type(localtime), localtime) ``` <class 'float'> 1525031396.1437771 **Nota bene:** oftentimes, when calling `time.time()` you don't want the decimal digits but rounded seconds since the epoch. In order to do so, just convert the default float `time.time()` returns to an integer, like so: ```python localtime = int(time.time()) print(type(localtime), localtime) ``` <class 'int'> 1525031430 ### `time.sleep()` This pauses (suspends) the thread running for the number of seconds passed to it as its argument. ```python start = time.time() time.sleep(5) end = time.time() print(end-start) ``` 5.0028228759765625 **PS:** the time passed in between `start` and `end` is oftentimes called the "wall time". ### `time.localtime()` In case you're interested in returning a `time-tuple` or a `time.struct_time` object returned, which both are like a wrapper holding the information about some point in time, use `time.localtime()` and pass in the amount of ticks (seconds) passed since the epoch, or don't use an argument to get the current time. ```python some_other_time = time.localtime(123) print(some_other_time) current_time = time.localtime() print(current_time) ``` time.struct_time(tm_year=1970, tm_mon=1, tm_mday=1, tm_hour=1, tm_min=2, tm_sec=3, tm_wday=3, tm_yday=1, tm_isdst=0) time.struct_time(tm_year=2018, tm_mon=5, tm_mday=1, tm_hour=19, tm_min=11, tm_sec=47, tm_wday=1, tm_yday=121, tm_isdst=1) If you're wondering how to use such a `time.struct_time` object: you're able to format it to your liking into a string via `time.strftime()` (see below). ### `time.mktime()` The `time.mktime()` is the inverse of what `time.localtime()` does. As an argument, just pass in the `time.struct_time` object (or full 9-tuple). `time.mktime()` will then return a floating point number, indicating the seconds since the epoch (as is the case with `time.time()`). **Full 9-time-tuple:** Index number: Meaning - 0: 4-digit year notation (e.g. 2018) - 1: Month (e.g. 2 for February) - 2: Day (e.g. 31 for the last day of December) - 3: Hour (e.g. 23 for 11 PM) - 4: Minute (e.g. 59 for the last minute of the hour) - 5: Second (can even be 60 or 61 for leap seconds!) - 6: Day of the Week (e.g. 0 for a Monday, 6 for a Sunday) - 7: Day of the Year (e.g. 1 for Jan., 1st) - 8: Daylight savings (-1, 0, 1, where `-1` means the system library decides) **Struct_time:** Works exactly the same! :-) **PS:** when passing in a 9-tuple as the argument to `time.mktime()` to get the epoch equivalent, you don't need to worry about which day of the week or which day of the year that specific date is, you can pass in `0` for indexes 6 and 7 without a problem. However, for the last (8th) index, just pass in `-1` to let the system decide whether or not to compensate for daylight savings. ```python some_moment = (2018, 5, 1, 21, 20, 0, 0, 0, -1) epoch = time.mktime(some_moment) print(epoch) some_moment_string = time.ctime(epoch) print(some_moment_string) ``` 1525202400.0 Tue May 1 21:20:00 2018 ### `time.strftime()` `time.strftime()` returns a string, you can format precisely using a format string with directives and helper string components (if you want to), and by passing in a time-tuple (a `time.struct_time` object) as a second argument (being either the current time / no argument, or any time in the past or future). ```python localtime = time.localtime() # Two examples regarding time string formatting print(time.strftime('Today (%Y-%m-%d) it\'s a %A', localtime)) print(time.strftime('Right now: %A, %d %b %Y (%H:%M:%S)', localtime)) ``` Today (2018-05-01) it's a Tuesday Right now: Tuesday, 01 May 2018 (20:25:04) **PS:** The following (common) directives, and their meaning, are used a lot with time string formatting: - `%a`: abbreviated weekday name - `%A`: full weekday name - `%b`: abbreviated month name - `%B`: full month name - `%c`: date/time representation of the current locale (e.g. `Sun Apr 29 22:15:37 2018`) - `%d`: day of the month (01 .. 31) - `%H`: 24-hour clock hour (00 ..23) - `%j`: day of the year (001 .. 366) - `%m`: month (01 ..12) - `%M`: minute (00 ..59) - `%S`: seconds - `%w`: weekday (0 .. 6) - `%W`: week number (00 .. 53) - `%Y`: 4-digit year - `%Z`: Timezone name ### `time.strptime()` Works the other way around as `time.strftime()` does: `time.strptime()` parses a time-string (as first argument) which represents a certain date/time, and a format string following a specific format as a parser helper. It returns a `time.struct_time` object, and works with the same directives as mentioned right above regarding `time.strftime()`. ```python localtime = time.strptime("14 Feb 2015", "%d %b %Y") print(localtime) ``` time.struct_time(tm_year=2015, tm_mon=2, tm_mday=14, tm_hour=0, tm_min=0, tm_sec=0, tm_wday=5, tm_yday=45, tm_isdst=-1) ### `time.asctime()` Returns a (current locale-based) date/time string representation of the time-tuple (or blank) passed to it as its argument. ```python localtime = time.asctime() print(localtime) ``` Tue May 1 20:28:04 2018 ### `time.ctime()` About the same as `time.asctime()` but possible to pass in nothing as an argument ("now"), or seconds since the UNIX epoch: ```python localtime = time.ctime() print(localtime) ``` Tue May 1 20:28:15 2018 ```python localtime = time.ctime(123) print(localtime) ``` Thu Jan 1 01:02:03 1970 # Let's wrap things up with a nice back-and-forth conversion example combining it all! Say, you are working with some date/time string in a specific format. And you just want to use the `time` module, add some time to it, and present the new time string in the same format. Then this is how to go about that: ```python # Some moment in time x_date_string = "14 Feb 2015 09:15:00" x_time_struct = time.strptime(x_date_string, "%d %b %Y %H:%M:%S") x_epoch = time.mktime(x_time_struct) # 15 minutes later y_epoch = x_epoch + 900 y_time_struct = time.localtime(y_epoch) y_date_string = time.strftime("%d %b %Y %H:%M:%S", y_time_struct) print(x_date_string) print(y_date_string) ``` 14 Feb 2015 09:15:00 14 Feb 2015 09:30:00 # The `calendar` module Although I don't use the `calendar` module too much, personally, I still wanted to (briefly) discuss some basic features it provides. I deliberately picked a few methods that add some additional value on top of what we've discussed above regarding functionality of the `time` module. ### `calendar.calendar()` With this method, you're able to conveniently print an entire year's calendar. ```python import calendar my_cal = calendar.calendar(2018) print(my_cal) ``` 2018 January February March Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th 1 2 3 4 1 1 5 6 7 8 9 10 11 2 3 4 5 6 7 8 2 3 4 5 6 7 8 12 13 14 15 16 17 18 9 10 11 12 13 14 15 9 10 11 12 13 14 15 19 20 21 22 23 24 25 16 17 18 19 20 21 22 16 17 18 19 20 21 22 26 27 28 29 30 31 23 24 25 26 27 28 23 24 25 26 27 28 29 30 31 April May June Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th 1 2 3 4 5 1 2 3 1 2 3 4 5 6 7 6 7 8 9 10 11 12 4 5 6 7 8 9 10 8 9 10 11 12 13 14 13 14 15 16 17 18 19 11 12 13 14 15 16 17 15 16 17 18 19 20 21 20 21 22 23 24 25 26 18 19 20 21 22 23 24 22 23 24 25 26 27 28 27 28 29 30 25 26 27 28 29 30 31 29 30 July August September Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th 1 2 3 4 5 1 2 1 2 3 4 5 6 6 7 8 9 10 11 12 3 4 5 6 7 8 9 7 8 9 10 11 12 13 13 14 15 16 17 18 19 10 11 12 13 14 15 16 14 15 16 17 18 19 20 20 21 22 23 24 25 26 17 18 19 20 21 22 23 21 22 23 24 25 26 27 27 28 29 30 31 24 25 26 27 28 29 30 28 29 30 31 October November December Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th Fr Sa Su Mo Tu We Th 1 2 3 4 1 1 2 3 4 5 6 5 6 7 8 9 10 11 2 3 4 5 6 7 8 7 8 9 10 11 12 13 12 13 14 15 16 17 18 9 10 11 12 13 14 15 14 15 16 17 18 19 20 19 20 21 22 23 24 25 16 17 18 19 20 21 22 21 22 23 24 25 26 27 26 27 28 29 30 31 23 24 25 26 27 28 29 28 29 30 31 30 ### `calendar.month()` With `calendar.month()` you can pass in both a year and month number as arguments, and print just that single month calender, like so: ```python import calendar apr_2018 = calendar.month(2018, 4) print(apr_2018) ``` April 2018 Mo Tu We Th Fr Sa Su 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 ### `calendar.monthrange()` The `calendar.monthrange()` method returns a tuple of two integers, where the first represents the "weekday code" for the first day of that month (monday: 0, sunday: 6), and the second returns the amount of days in that month. This can be convenient to serve as input for other functions in your code. ```python calendar.monthrange(2018, 4) ``` (6, 30) ### `calendar.weekday()` The `calendar.weekday()` method simply returns the weekday number for a given date. ```python calendar.weekday(2018,4,28) ``` 5 ### `calendar.isleap()` The `calendar.isleap()` method returns `True` or `False` whether the year as its argument is a leap year or not. ```python calendar.isleap(2018) ``` False ### `calendar.leapdays()` And as a final method (for this tutorial episode) the `calendar.leapdays()` method returns the number of leapdays occurring within in interval of two years. ```python calendar.leapdays(1978,2018) ``` 10 # What did we learn, hopefully? In this episode, we first discussed the existance of several date/time modules within Python (`time`, `datetime`, and `calendar`) and we then focused on the `time` module specifically, going over the various built-in methods in the `time` module and about how to use them, providing small code examples for each method discussed. We also discussed and listed time string formatting directives, and the index numbers and meanings of full-9-time tuples and time_struct objects, which are all needed of course to convert between time objects and strings, while in the mean time being able to do some calculations with them (using seconds as the default unit because of the UNIX timestamps nature, which are seconds as well). We then wrapped things up, considering the `time` module with a real-life back-and-forth conversion example; tinkering around with the format strings will probably give you all the tools you need to work with, and so some time-offsetting coding on, any kind of date/time format string. In the next `Learn Python Series` episodes, we'll continue with the `datetime` module, and the external `Maya` package! ### Thank you for your time!
author | scipio | ||||||
---|---|---|---|---|---|---|---|
permlink | learn-python-series-21-handling-dates-and-time-part-1 | ||||||
category | utopian-io | ||||||
json_metadata | "{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"id":81598961,"name":"cpython","full_name":"python/cpython","html_url":"https://github.com/python/cpython","fork":false,"owner":{"login":"python"}},"pullRequests":[],"platform":"github","type":"tutorials","tags":["utopian-io","steemdev","steemstem","open-source","python"],"users":["scipio"],"links":["https://cdn.utopian.io/posts/7751fd308b7b02f9b3997355b4f51f4d0ff0python_logo.png","https://github.com/realScipio/learn-python-series/blob/master/datetime-01.ipynb","https://utopian.io/utopian-io/@scipio/learn-python-series-intro","https://utopian.io/utopian-io/@scipio/learn-python-series-2-handling-strings-part-1","https://utopian.io/utopian-io/@scipio/learn-python-series-3-handling-strings-part-2","https://utopian.io/utopian-io/@scipio/learn-python-series-4-round-up-1","https://utopian.io/utopian-io/@scipio/learn-python-series-5-handling-lists-part-1","https://utopian.io/utopian-io/@scipio/learn-python-series-6-handling-lists-part-2","https://utopian.io/utopian-io/@scipio/learn-python-series-7-handling-dictionaries","https://utopian.io/utopian-io/@scipio/learn-python-series-8-handling-tuples","https://utopian.io/utopian-io/@scipio/learn-python-series-9-using-import","https://utopian.io/utopian-io/@scipio/learn-python-series-10-matplotlib-part-1","https://utopian.io/utopian-io/@scipio/learn-python-series-11-numpy-part-1","https://utopian.io/utopian-io/@scipio/learn-python-series-12-handling-files","https://utopian.io/utopian-io/@scipio/learn-python-series-13-mini-project-developing-a-web-crawler-part-1","https://utopian.io/utopian-io/@scipio/learn-python-series-14-mini-project-developing-a-web-crawler-part-2","https://utopian.io/utopian-io/@scipio/learn-python-series-15-handling-json","https://utopian.io/utopian-io/@scipio/learn-python-series-16-mini-project-developing-a-web-crawler-part-3","https://utopian.io/utopian-io/@scipio/learn-python-series-17-roundup-2-combining-and-analyzing-any-to-any-multi-currency-historical-data","https://utopian.io/utopian-io/@scipio/learn-python-series-18-pymongo-part-1","https://utopian.io/utopian-io/@scipio/learn-python-series-19-pymongo-part-2","https://steemit.com/utopian-io/@scipio/learn-python-series-20-pymongo-part-3"],"image":["https://cdn.utopian.io/posts/7751fd308b7b02f9b3997355b4f51f4d0ff0python_logo.png"],"moderator":{"account":"mcfarhat","time":"2018-05-02T09:23:04.890Z","pending":false,"reviewed":true,"flagged":false},"questions":{"voters":["fabiyamada"],"answers":[{"question_id":"tuts-1","answer_id":"tuts-1-a-1","user":"fabiyamada","influence":15},{"question_id":"tuts-2","answer_id":"tuts-2-a-1","user":"fabiyamada","influence":15},{"question_id":"tuts-3","answer_id":"tuts-3-a-1","user":"fabiyamada","influence":15},{"question_id":"tuts-4","answer_id":"tuts-4-a-1","user":"fabiyamada","influence":15},{"question_id":"tuts-5","answer_id":"tuts-5-a-1","user":"fabiyamada","influence":15},{"question_id":"tuts-6","answer_id":"tuts-6-a-1","user":"fabiyamada","influence":15},{"question_id":"c-1","answer_id":"c-1-a-1","user":"fabiyamada","influence":15},{"question_id":"c-2","answer_id":"c-2-a-1","user":"fabiyamada","influence":15}],"total_influence":0,"most_rated":[{"question_id":"tuts-1","answer_id":"tuts-1-a-1","influence":15,"voters":["fabiyamada"]},{"question_id":"tuts-2","answer_id":"tuts-2-a-1","influence":15,"voters":["fabiyamada"]},{"question_id":"tuts-3","answer_id":"tuts-3-a-1","influence":15,"voters":["fabiyamada"]},{"question_id":"tuts-4","answer_id":"tuts-4-a-1","influence":15,"voters":["fabiyamada"]},{"question_id":"tuts-5","answer_id":"tuts-5-a-1","influence":15,"voters":["fabiyamada"]},{"question_id":"tuts-6","answer_id":"tuts-6-a-1","influence":15,"voters":["fabiyamada"]},{"question_id":"c-1","answer_id":"c-1-a-1","influence":15,"voters":["fabiyamada"]},{"question_id":"c-2","answer_id":"c-2-a-1","influence":15,"voters":["fabiyamada"]}]},"score":100,"total_influence":15,"staff_pick":null,"staff_pick_by":null,"config":{"questions":[{"question":"How many substantial concepts does this tutorial address?","question_id":"tuts-1","answers":[{"answer":"4-5 substantial concepts covered in the tutorial.","answer_id":"tuts-1-a-1","value":10},{"answer":"2-3 substantial concepts covered in the tutorial.","answer_id":"tuts-1-a-2","value":7},{"answer":"1 substantial concept covered in the tutorial.","answer_id":"tuts-1-a-3","value":3},{"answer":"More than 5 substantial concepts covered in the tutorial.","answer_id":"tuts-1-a-4","value":0}]},{"question":"Does the title and the outline of the tutorial properly reflect the content?","question_id":"tuts-2","answers":[{"answer":"Yes, it is very clear.","answer_id":"tuts-2-a-1","value":15},{"answer":"To some extent.","answer_id":"tuts-2-a-2","value":11.5},{"answer":"The title is somewhat misleading and/or the outline is not detailed or informative enough.","answer_id":"tuts-2-a-3","value":4.5},{"answer":"Title and outline are of little or no relevance to the content of the tutorial.","answer_id":"tuts-2-a-4","value":0}]},{"question":"Did the contributor provide supplementary resources, such as code and sample files in the contribution post or a linked GitHub repository?","question_id":"tuts-3","answers":[{"answer":"Yes, exceptional supplementary resources are provided including a relevant github repo/gist.","answer_id":"tuts-3-a-1","value":15},{"answer":"Supplementary resources provided are of high relevance.","answer_id":"tuts-3-a-2","value":12},{"answer":"Contributor provides minimal supplementary resources.","answer_id":"tuts-3-a-3","value":6},{"answer":"No supplementary resources were provided.","answer_id":"tuts-3-a-4","value":0}]},{"question":"Is the tutorial part of a series?","question_id":"tuts-4","answers":[{"answer":"Yes.","answer_id":"tuts-4-a-1","value":10},{"answer":"Yes, but it is the first entry in the series.","answer_id":"tuts-4-a-2","value":7},{"answer":"No, but it works just fine as a stand-alone tutorial.","answer_id":"tuts-4-a-3","value":5},{"answer":"No.","answer_id":"tuts-4-a-4","value":0}]},{"question":"Does the tutorial contain sufficient explanatory visuals?","question_id":"tuts-5","answers":[{"answer":"Yes, the visual components of the post were adequate in quality and quantity.","answer_id":"tuts-5-a-1","value":10},{"answer":"The volume of visual components included was unnecessarily large.","answer_id":"tuts-5-a-2","value":7},{"answer":"The post lacked sufficient visualization to easily learn from the content.","answer_id":"tuts-5-a-3","value":3},{"answer":"No visualization was presented in this contribution.","answer_id":"tuts-5-a-4","value":0}]},{"question":"How unique and/or innovative are the concepts covered in the tutorial?","question_id":"tuts-6","answers":[{"answer":"This was the first time I read about the concepts covered.","answer_id":"tuts-6-a-1","value":10},{"answer":"The concepts covered were innovative and offer some usefulness.","answer_id":"tuts-6-a-2","value":7},{"answer":"I have read several similar ideas and thoughts elsewhere, but this one was of higher quality.","answer_id":"tuts-6-a-3","value":5},{"answer":"Such tutorials can be found online with great ease and the contribution add no value to the open source community.","answer_id":"tuts-6-a-4","value":0}]},{"question":"How would you describe the formatting, language and overall presentation of the post?","question_id":"c-1","answers":[{"answer":"The post is of very high quality.","answer_id":"c-1-a-1","value":10},{"answer":"The post is of decent quality, but not spectacular in any way.","answer_id":"c-1-a-2","value":7},{"answer":"The post is poorly written and/or formatted, but readable.","answer_id":"c-1-a-3","value":3},{"answer":"The post is really hard to read and the content is barely understandable.","answer_id":"c-1-a-4","value":0}]},{"question":"How would you rate the overall value of this contribution on the open source community and ecosystem?","question_id":"c-2","answers":[{"answer":"This contribution brings great and impactful value, and can be used for applications outside the specific project.","answer_id":"c-2-a-1","value":20},{"answer":"This contribution adds significant value to the open source community and ecosystem, or is of critical importance to the specific project.","answer_id":"c-2-a-2","value":16},{"answer":"This contribution adds some value to the open source community and ecosystem or is only valuable to the specific project.","answer_id":"c-2-a-3","value":8},{"answer":"This contribution adds no value to the open source community and ecosystem or the specific project.","answer_id":"c-2-a-4","value":0}]}]}}" | ||||||
created | 2018-05-01 22:51:45 | ||||||
last_update | 2018-05-02 09:23:06 | ||||||
depth | 0 | ||||||
children | 13 | ||||||
last_payout | 2018-05-08 22:51:45 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 92.218 HBD | ||||||
curator_payout_value | 31.917 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 18,075 | ||||||
author_reputation | 34,229,826,851,736 | ||||||
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 53,324,616 | ||||||
net_rshares | 24,566,891,748,544 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 76,159,071,934 | 0.02% | ||
lafona-miner | 0 | 105,243,900,737 | 5% | ||
drifter1 | 0 | 7,033,053,124 | 100% | ||
justtryme90 | 0 | 119,340,889,550 | 5% | ||
anwenbaumeister | 0 | 24,647,481,836 | 0.89% | ||
lukestokes | 0 | 2,861,162,671,432 | 100% | ||
olyup | 0 | 46,205,879,590 | 100% | ||
lemouth | 0 | 15,201,801,245 | 3% | ||
rjbauer85 | 0 | 309,080,845 | 5% | ||
anarchyhasnogods | 0 | 8,507,745,789 | 2.5% | ||
curie | 0 | 46,139,188,197 | 0.89% | ||
hendrikdegrote | 0 | 516,027,101,501 | 0.89% | ||
steemstem | 0 | 139,517,206,613 | 5% | ||
sethroot | 0 | 53,889,854 | 0.08% | ||
foundation | 0 | 690,896,550 | 5% | ||
the-devil | 0 | 655,228,544 | 5% | ||
thevenusproject | 0 | 2,792,413,616 | 5% | ||
michaelten | 0 | 1,026,742,383 | 100% | ||
dna-replication | 0 | 1,403,453,696 | 5% | ||
pacokam8 | 0 | 84,989,132 | 0.22% | ||
borislavzlatanov | 0 | 386,575,523 | 5% | ||
michelios | 0 | 1,250,835,666 | 0.08% | ||
alinabarbu | 0 | 218,238,760 | 0.08% | ||
jamhuery | 0 | 500,022,260 | 5% | ||
kryzsec | 0 | 1,399,868,796 | 5% | ||
markangeltrueman | 0 | 347,426,964 | 0.13% | ||
nedspeaks | 0 | 1,070,988,527 | 5% | ||
fredrikaa | 0 | 11,286,734,679 | 2.5% | ||
diogogomes | 0 | 275,846,879 | 85% | ||
helo | 0 | 27,523,973,229 | 100% | ||
tantawi | 0 | 59,565,835 | 0.89% | ||
locikll | 0 | 423,472,786 | 1.78% | ||
dber | 0 | 1,681,768,815 | 5% | ||
kerriknox | 0 | 12,459,575,710 | 5% | ||
howtostartablog | 0 | 363,231,980 | 0.04% | ||
blessing97 | 0 | 191,010,754 | 5% | ||
saunter | 0 | 1,632,913,173 | 5% | ||
cryptokrieg | 0 | 249,043,121 | 0.89% | ||
tensor | 0 | 23,478,043,345 | 100% | ||
sensation | 0 | 250,630,849 | 100% | ||
ertwro | 0 | 2,068,336,429 | 5% | ||
coloringiship | 0 | 176,891,935 | 0.04% | ||
juanjdiaz89 | 0 | 181,010,854 | 5% | ||
thinknzombie | 0 | 1,568,373,168 | 0.44% | ||
nitesh9 | 0 | 1,251,693,649 | 5% | ||
fancybrothers | 0 | 603,116,350 | 1.5% | ||
himal | 0 | 385,451,605 | 5% | ||
ewuoso | 0 | 96,093,440 | 0.17% | ||
abigail-dantes | 0 | 85,278,478,860 | 5% | ||
leczy | 0 | 274,315,867 | 5% | ||
suravsingh | 0 | 66,028,941 | 5% | ||
misterakpan | 0 | 98,251,808 | 0.04% | ||
planetenamek | 0 | 3,518,929,226 | 10% | ||
jasonbu | 0 | 10,985,512,447 | 50% | ||
akeelsingh | 0 | 209,102,878 | 5% | ||
fabiyamada | 0 | 22,655,381,430 | 100% | ||
felixrodriguez | 0 | 128,691,287 | 2.5% | ||
pearlumie | 0 | 1,997,696,576 | 5% | ||
stoodkev | 0 | 159,751,246,540 | 80% | ||
parejan | 0 | 32,656,972,750 | 100% | ||
massivevibration | 0 | 3,535,666,888 | 5% | ||
onartbali | 0 | 647,764,383 | 5% | ||
clweeks | 0 | 60,616,627 | 0.35% | ||
torico | 0 | 313,902,281 | 0.07% | ||
curtiscolwell | 0 | 1,909,883,062 | 100% | ||
ksolymosi | 0 | 1,014,594,406 | 5% | ||
simplifylife | 0 | 755,030,893 | 2.5% | ||
espoem | 0 | 37,857,931,679 | 50% | ||
mayowadavid | 0 | 295,626,583 | 2.5% | ||
zeeshan003 | 0 | 107,283,309 | 5% | ||
julienbh | 0 | 18,990,888,196 | 100% | ||
enzor | 0 | 85,459,397 | 2.5% | ||
loshcat | 0 | 2,912,447,236 | 100% | ||
steemline | 0 | 219,890,771 | 100% | ||
carloserp-2000 | 0 | 958,796,677 | 5% | ||
pangoli | 0 | 335,319,175 | 5% | ||
rachelsmantra | 0 | 214,559,082 | 5% | ||
gra | 0 | 1,527,008,408 | 5% | ||
utopian-io | 0 | 19,946,788,626,602 | 14% | ||
rdvn | 0 | 2,814,370,121 | 100% | ||
itsmikechu | 0 | 418,639,603 | 100% | ||
mytechtrail | 0 | 2,428,535,612 | 25% | ||
scipio | 0 | 113,746,598,386 | 100% | ||
sireh | 0 | 342,982,213 | 0.17% | ||
greenorange | 0 | 606,408,447 | 100% | ||
physics.benjamin | 0 | 558,320,196 | 5% | ||
kenadis | 0 | 1,355,423,592 | 5% | ||
amavi | 0 | 780,859,306 | 1% | ||
robotics101 | 0 | 229,271,913 | 4% | ||
gentleshaid | 0 | 1,066,617,631 | 5% | ||
aamin | 0 | 69,130,216 | 2.5% | ||
sco | 0 | 1,036,931,523 | 2.5% | ||
adetola | 0 | 230,372,192 | 5% | ||
anikekirsten | 0 | 1,060,450,690 | 5% | ||
dysfunctional | 0 | 192,857,352 | 2.5% | ||
mountainjewel | 0 | 118,111,398 | 0.08% | ||
thinkingmind | 0 | 3,696,525,938 | 100% | ||
virus95 | 0 | 5,602,451,058 | 100% | ||
whileponderin | 0 | 174,583,625 | 5% | ||
bennettitalia | 0 | 100,188,220 | 0.04% | ||
hadji | 0 | 243,260,893 | 5% | ||
sakura1012 | 0 | 151,708,168 | 5% | ||
peppermint24 | 0 | 56,570,484 | 0.09% | ||
saunter-pl | 0 | 79,710,906 | 5% | ||
rionpistorius | 0 | 83,829,033 | 2.5% | ||
steem-hikers | 0 | 94,217,411 | 5% | ||
deutsch-boost | 0 | 374,391,010 | 20% | ||
dexterdev | 0 | 856,489,265 | 5% | ||
ugonma | 0 | 82,622,627 | 5% | ||
midun | 0 | 1,677,866,421 | 100% | ||
ruth-elise | 0 | 997,676,589 | 100% | ||
alexdory | 0 | 777,929,519 | 5% | ||
roj | 0 | 2,082,267,860 | 100% | ||
benleemusic | 0 | 1,409,224,317 | 0.04% | ||
analyzer | 0 | 139,605,040 | 100% | ||
zcool | 0 | 115,292,333 | 10% | ||
privacybydesign | 0 | 589,970,777 | 100% | ||
victorcovrig | 0 | 74,971,317 | 1% | ||
de-stem | 0 | 2,107,811,195 | 4.5% | ||
apteacher | 0 | 79,948,522 | 1% | ||
chloroform | 0 | 297,507,433 | 5% | ||
cryptocorgi | 0 | 888,527,573 | 100% | ||
ntowl | 0 | 106,601,383 | 0.26% | ||
temitayo-pelumi | 0 | 135,506,383 | 5% | ||
zerocoolrocker | 0 | 611,949,096 | 100% | ||
clayjohn | 0 | 8,065,553,708 | 100% | ||
star-vc | 0 | 51,991,963 | 5% | ||
algo.coder | 0 | 6,954,647,288 | 75% | ||
engmi | 0 | 86,766,059 | 0.44% | ||
biomimi | 0 | 198,852,227 | 40% | ||
raftaar | 0 | 351,309,507 | 100% | ||
steem.curator | 0 | 702,217,491 | 1% |
Reply to this comment and I will auto upvote and resteem your post to my 36,000+ followers. @a-0-0
author | a-0-0 |
---|---|
permlink | re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180501t225150958z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["a-0-0"],"app":"steemit/0.1"} |
created | 2018-05-01 22:51:51 |
last_update | 2018-05-01 22:51:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-08 22:51:51 |
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 | 98 |
author_reputation | -4,863,186,238,920 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,324,637 |
net_rshares | 0 |
import calendar my_cal = calendar.calendar(2018) print(my_cal) That would have save me a lot of times when I was asked to design calendars!! xD
author | fabiyamada | ||||||
---|---|---|---|---|---|---|---|
permlink | re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180502t014726651z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-05-02 02:49:24 | ||||||
last_update | 2018-05-02 02:49:24 | ||||||
depth | 1 | ||||||
children | 3 | ||||||
last_payout | 2018-05-09 02:49:24 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.408 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 147 | ||||||
author_reputation | 55,606,801,081,779 | ||||||
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 53,353,815 | ||||||
net_rshares | 112,040,399,411 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
scipio | 0 | 112,040,399,411 | 100% | ||
panotwo | 0 | 0 | 100% |
Wow! I didn't think about that! That's a very clever remark of yours, as to why `print(calendar.calendar(2018))`is useful to **designers**, saving them boatloads of time. Coooool! :-) Your comment made my day!
author | scipio |
---|---|
permlink | re-fabiyamada-re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180502t222033032z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-02 22:20:33 |
last_update | 2018-05-02 22:20:45 |
depth | 2 |
children | 2 |
last_payout | 2018-05-09 22:20:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.516 HBD |
curator_payout_value | 0.167 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 210 |
author_reputation | 34,229,826,851,736 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,523,867 |
net_rshares | 123,356,789,025 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fabiyamada | 0 | 11,885,122,606 | 50% | ||
scipio | 0 | 111,471,666,419 | 100% | ||
panotwo | 0 | 0 | 100% |
programmers and designers are meant to work together, I think =)
author | fabiyamada |
---|---|
permlink | re-scipio-re-fabiyamada-re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180503t001014208z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-03 01:12:12 |
last_update | 2018-05-03 01:12:12 |
depth | 3 |
children | 1 |
last_payout | 2018-05-10 01:12: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 | 64 |
author_reputation | 55,606,801,081,779 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,543,101 |
net_rshares | 0 |
Awesome post!! Keep it up and check out [THIS POST](https://steemit.com/life/@cryptopaparazzi/chapter-one-let-there-be-the-man-and-there-was-a-man-let-there-be-a-woman-and-there-was-sex) as well as I have something similar.
author | james1122 |
---|---|
permlink | re-learn-python-series-21-handling-dates-and-time-part-1-20180502t195549 |
category | utopian-io |
json_metadata | "" |
created | 2018-05-02 19:55:51 |
last_update | 2018-05-02 19:55:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-09 19:55:51 |
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 | 225 |
author_reputation | -1,569,261,196,247 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,504,778 |
net_rshares | 0 |
Awesome post!! Keep it up and check out [THIS POST](https://steemit.com/life/@cryptopaparazzi/chapter-one-let-there-be-the-man-and-there-was-a-man-let-there-be-a-woman-and-there-was-sex) as well as I have something similar.
author | james1122 |
---|---|
permlink | re-learn-python-series-21-handling-dates-and-time-part-1-20180502t220734 |
category | utopian-io |
json_metadata | "" |
created | 2018-05-02 22:07:33 |
last_update | 2018-05-02 22:07:33 |
depth | 1 |
children | 0 |
last_payout | 2018-05-09 22:07: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 | 225 |
author_reputation | -1,569,261,196,247 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,522,272 |
net_rshares | 0 |
Thank you for the beautiful work ! ---------------------------------------------------------------------- Need help? Write a ticket on https://support.utopian.io. Chat with us on [Discord](https://discord.gg/uTyJkNm). **[[utopian-moderator]](https://utopian.io/moderators)**
author | mcfarhat | ||||||
---|---|---|---|---|---|---|---|
permlink | re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180502t093112936z | ||||||
category | utopian-io | ||||||
json_metadata | {"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"} | ||||||
created | 2018-05-02 09:31:15 | ||||||
last_update | 2018-05-02 09:31:15 | ||||||
depth | 1 | ||||||
children | 1 | ||||||
last_payout | 2018-05-09 09:31:15 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.398 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 276 | ||||||
author_reputation | 150,651,671,367,256 | ||||||
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 53,406,802 | ||||||
net_rshares | 109,765,467,443 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
scipio | 0 | 109,765,467,443 | 100% |
author | scipio |
---|---|
permlink | re-mcfarhat-re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180502t222107576z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-02 22:21:06 |
last_update | 2018-05-02 22:21:06 |
depth | 2 |
children | 0 |
last_payout | 2018-05-09 22:21:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.323 HBD |
curator_payout_value | 0.433 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 34,229,826,851,736 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,523,933 |
net_rshares | 316,079,693,761 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 202,333,095,375 | 15% | ||
scipio | 0 | 113,746,598,386 | 100% |
Great informative.We do not know python resources very well.Thank you for giving us such news.Great work done.Keep it up,God bless you.
author | raftaar |
---|---|
permlink | re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180502t103611595z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-02 10:36:09 |
last_update | 2018-05-02 10:36:09 |
depth | 1 |
children | 0 |
last_payout | 2018-05-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 | 135 |
author_reputation | 8,901,986,322 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,415,756 |
net_rshares | 0 |
We get very less articles about Python, so thank you for taking such a nice Decision for us.
author | sabbir1213 |
---|---|
permlink | re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180502t000146801z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"app":"steemit/0.1"} |
created | 2018-05-02 00:01:51 |
last_update | 2018-05-02 00:01:51 |
depth | 1 |
children | 0 |
last_payout | 2018-05-09 00:01:51 |
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 | 92 |
author_reputation | 2,006,363,477,841 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,332,845 |
net_rshares | 0 |
#### Hey @scipio We're already looking forward to your next contribution! ##### Utopian Witness! <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for Utopian Witness!</a> We are made of developers, system administrators, entrepreneurs, artists, content creators, thinkers. We embrace every nationality, mindset and belief. **Want to chat? Join us on Discord https://discord.gg/h52nFrV**
author | utopian-io |
---|---|
permlink | re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180505t152609188z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["scipio"],"links":["https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1","https://discord.gg/h52nFrV"],"app":"steemit/0.1"} |
created | 2018-05-05 15:26:09 |
last_update | 2018-05-05 15:26:09 |
depth | 1 |
children | 0 |
last_payout | 2018-05-12 15:26: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 | 437 |
author_reputation | 152,955,367,999,756 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 54,041,616 |
net_rshares | 0 |
Nice post @scipio! :) You should also mention datetime.timedelta (probably you are goin do so in the next post) :) it's really useful to make arithmetic operations with dates
author | zerocoolrocker |
---|---|
permlink | re-scipio-learn-python-series-21-handling-dates-and-time-part-1-20180502t084830051z |
category | utopian-io |
json_metadata | {"tags":["utopian-io"],"users":["scipio"],"app":"steemit/0.1"} |
created | 2018-05-02 08:19:00 |
last_update | 2018-05-02 08:19:00 |
depth | 1 |
children | 0 |
last_payout | 2018-05-09 08:19:00 |
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 | 175 |
author_reputation | 3,837,192,988 |
root_title | "Learn Python Series (#21) - Handling Dates and Time Part 1" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 53,396,938 |
net_rshares | 0 |