I have a string representing a unix timestamp (i.e. \"1284101485\") in Python, and I\'d like to convert it to a readable date. When I use time.strftime, I get a
time.strftime
You can use easy_date to make it easy:
import date_converter my_date_string = date_converter.timestamp_to_string(1284101485, "%B %d, %Y")