A utility for creating datetime-based strings for file naming
Project description
tlid
Installation
pip install tlid
Usage:
import tlid
# Get TLID
tlid_str = tlid.get_tlid()
print(tlid_str) # Outputs: YYMMDDHHMMSS
# Get TLID with milliseconds
tlid_milli = tlid.get_milliseconds()
print(tlid_milli) # Outputs: YYMMDDHHMMSSmmm
# Get TLID for different time granularities
print(tlid.get_seconds()) # Outputs: YYMMDDHHMMSS
print(tlid.get_minutes()) # Outputs: YYMMDDHHMM
print(tlid.get_hour()) # Outputs: YYMMDDHH
print(tlid.get_day()) # Outputs: YYMMDD
print(tlid.get_month()) # Outputs: YYMM
print(tlid.get_year()) # Outputs: YY
# Check if a string has a TLID
print(tlid.has_tlid('Hello 210101010101 World')) # Outputs: True
# Extract TLID from a string
print(tlid.extract_tlid('Hello 210101010101 World')) # Outputs: 210101010101
# Clean a string from its TLID
print(tlid.clean_tlid('Hello 210101010101 World')) # Outputs: Hello World
# Convert a TLID string to a datetime object
print(tlid.to_date('210101010101')) # Outputs: 2021-01-01 01:01:01
# pytlid
`pytlid` is a command-line interface for generating time-based identifiers using the `tlid` Python package.
## Usage
To use `pytlid`, simply run the command followed by the desired time unit. The default time unit is minutes if no argument is provided.
```sh
pytlid [unit]
Here are the available units and their corresponding outputs:
h
: Current hour in YYMMDDHH formats
: Current seconds in YYMMDDHHMMSS formatms
: Current milliseconds in YYMMDDHHMMSSmmm formatm
: Current month in YYMM formatM
: Current month in YYMM format (same asm
)y
: Current year in YY formatd
: Current day in YYMMDD format
Examples
To get the current time in minutes:
pytlid
To get the current time in hours:
pytlid h
To get the current time in seconds:
pytlid s
For help:
pytlid --help
This will display the help message for the pytlid
command.
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
tlid-0.1.5.tar.gz
(3.0 kB
view details)
Built Distribution
tlid-0.1.5-py3-none-any.whl
(3.3 kB
view details)
File details
Details for the file tlid-0.1.5.tar.gz
.
File metadata
- Download URL: tlid-0.1.5.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffc288e26d54033093a802572235bcdacd8cf3db49236d57ebdd8238c3848d2b |
|
MD5 | 6a169ea0e1cc5f916eb95712704ae405 |
|
BLAKE2b-256 | 64251a944aaa82d9b554afa9703832b9f2a865252465618220f554fb415749e9 |
File details
Details for the file tlid-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: tlid-0.1.5-py3-none-any.whl
- Upload date:
- Size: 3.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 57a23b491f11a88b05481ba6d9a001cfff53fd3eae3541425fde396961e5a97e |
|
MD5 | 27f91791d11a77f4340f977abd0e9461 |
|
BLAKE2b-256 | 2ae3ccc11cee7f3808b437cd145f1dcf6727db1abc1cac13ee3c974f90bcc1b1 |