Skip to content
/ ut2d Public

a command line utility to convert unix timestamp into human-readable formats

License

Notifications You must be signed in to change notification settings

estepona/ut2d

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ut2d

PyPI version

ut2d (unix timestamp to datetime) is a tiny command-line utility to convert unix timestamp into human readable datetime. This tool intends to use the least amount of related packages or the complicated calculations and convertions on datetime topic, and provide a very simple interface to help you convert unix timestamp in a super quick manner.

Here is a list of all functionalities supported (details are in Examples section):

  • get datetime of given ut;
  • get datetime of now;
  • get datetime and calculate time difference from now;
  • get datetime and find the given time in certain timezone;
  • get datetime and find the given time (with scrapper) in certain city (any city);

If you work with unix timestamp a lot or need a tiny utility to get the time of another city that linux date command cannot provide, ut2d can hopefully make your life a little bit easier.

Installation

prerequisite: Python 3.6 or above

$ pip install ut2d

Examples

get datetime of given UT

$ ut2d 1547671090
Unix Timestamp: 1547671090.0
Local: Wed, Jan 16, 2019 03:38PM
GMT  : Wed, Jan 16, 2019 08:38PM

get datetime of now

$ ut2d now
Unix Timestamp: 1547671189.5133939
Local: Wed, Jan 16, 2019 03:39PM
GMT  : Wed, Jan 16, 2019 08:39PM

get datetime and calculate time difference from now

$ ut2d 1547671090 -d
Unix Timestamp: 1547671090.0
Local: Wed, Jan 16, 2019 03:38PM
GMT  : Wed, Jan 16, 2019 08:38PM
Given time is 11 mins, 5 secs ago

get datetime and find the given time in certain timezone

Provide timezone with prefix "GMT" or "UTC".

$ ut2d now -tz "GMT+8"
Unix Timestamp: 1550257565.5289779
Local: Fri, Feb 15, 2019 02:06PM
GMT  : Fri, Feb 15, 2019 07:06PM
😎  The given time in GMT+8 is: Sat, Feb 16, 2019 03:06AM.

get datetime and find the given time in certain city

This is done by scraping the city's timezone from search engines, and calculate the datetime of the given unix timestamp of the given city.

If searching "New York"... (I'm in Boston)

$ ut2d 1547671090 -d -c "New York"
Unix Timestamp: 1547671090.0
Local: Wed, Jan 16, 2019 03:38PM
GMT  : Wed, Jan 16, 2019 08:38PM
Given time is 15 mins, 42 secs ago
😛  I am finding your city on popular search engines! Plz wait a sec...
😎  I suppose the given time in New York is: Wed, Jan 16, 2019 03:38PM. I have 88% confidence with this result from search engines!

You can use now with the -c flag to get the local time of any city, and you can even use other languages. e.g. 北京 is Beijing, and Montreuil-Juigné is a city in France.

$ ut2d now -c "北京"
Unix Timestamp: 1547673691.203567
Local: Wed, Jan 16, 2019 04:21PM
GMT  : Wed, Jan 16, 2019 09:21PM
😛  I am finding your city on popular search engines! Plz wait a sec...
😎  I suppose the given time in 北京 is: Thu, Jan 17, 2019 05:21AM. I have 88% confidence with this result from search engines!

$ ut2d now -c "Montreuil-Juigné"
Unix Timestamp: 1547673563.7226071
Local: Wed, Jan 16, 2019 04:19PM
GMT  : Wed, Jan 16, 2019 09:19PM
😛  I am finding your city on popular search engines! Plz wait a sec...
😎  I suppose the given time in Montreuil-Juigné is: Wed, Jan 16, 2019 10:19PM. I have 88% confidence with this result from search engines!

You can search anything here! But if it cannot find on the search engines it will not print out the time.

License

This software is distributed under the MIT license.

Author

Written by Binghuan Zhang

About

a command line utility to convert unix timestamp into human-readable formats

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages