date string, datetime, time and timestamp converter
Project description
BeautifulTime is a python package for converting date string, datetime, time and timestamp.
Install
pip install beautiful_time
Usage
import BeautifulTime
date_str = '2016-10-30 12:30:30'
dt = BeautifulTime.str2datetime(date_str)
# with a custom format
dt = BeautifulTime.str2datetime(date_str, format='%Y-%m-%d %H:%M:%S')
t = BeautifulTime.str2time(date_str)
ts = BeautifulTime.str2timestamp(date_str)
dt = BeautifulTime.str2datetime(date_str)
t = BeautifulTime.str2time(date_str)
ts = BeautifulTime.str2timestamp(date_str)
s = BeautifulTime.datetime2str(dt)
t = BeautifulTime.datetime2time(dt)
ts = BeautifulTime.datetime2timestamp(dt)
s = BeautifulTime.time2str(t)
dt = BeautifulTime.time2datetime(t)
ts = BeautifulTime.time2timestamp(t)
dt = BeautifulTime.timestamp2datetime(ts)
t = BeautifulTime.timestamp2time(ts)
s = BeautifulTime.timestamp2str(ts)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
beautiful-time-0.2.tar.gz
(2.0 kB
view details)
File details
Details for the file beautiful-time-0.2.tar.gz
.
File metadata
- Download URL: beautiful-time-0.2.tar.gz
- Upload date:
- Size: 2.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf382d55fce3315529fe79c9c5c08c3f23befbbd8d734fc0e2fcd8b65e27ffa1 |
|
MD5 | 6b8aa6e775f6c4006f40d05d605e3880 |
|
BLAKE2b-256 | 20cc1c53dc148d19641fa38fe9497fe86def7ffdba2597ef09ab793a77ebf024 |