Date utilities to guess the date format given any date string or list of date strings
Project description
date_tools
Author: Henin Roland Karkada
date_tools provides an integrated collection of date utilities to help you guess the date format of any given date string/list
Installation:
$ pip install date-tools
Usage:
guess_date_format() -> Expects a single date/ List of dates
$ from date_tools import date_guesser
a) Single date:
Example 1: $ date_guesser.guess_date_format("22/03/2018") Output: '%d/%m/%Y'
Example 2: $ date_guesser.guess_date_format("14 03 18") Output: '%d %m %y'
Example 3: $ date_guesser.guess_date_format("13-Mar-2018") Output: '%d-%b-%Y'
Example 4: $ date_guesser.guess_date_format("31/March/18") Output: '%d/%B/%y'
Example 5: $ date_guesser.guess_date_format("22/03/2018") Output: '%d/%m/%Y'
Example 6: $ date_guesser.guess_date_format("31 03 2017") Output: '%d %m %Y'
Example 7: $ date_guesser.guess_date_format("03/2018") Output: '%m/%Y'
Example 8: $ date_guesser.guess_date_format("March/2018") Output: '%B/%Y'
b) List of dates:
Example 1: $ date_guesser.guess_date_format(["02 March 2018", "12 May 2018","10 December 2018", "22/03/1988"]) Output: '%d %B %Y' --> Returned as '%d %B %Y' was the date format matched with majority of the items
Extra Details can be found in the example folder
Contributing to date_tools
If you want to contribute code to date_tools, please take a look at CONTRIBUTING.md.
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
Built Distribution
File details
Details for the file date_tools-0.0.3.tar.gz
.
File metadata
- Download URL: date_tools-0.0.3.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
b93acbcb1342502ed6e282ce9eb1db7a9b8ae70cbf4ebb3866e2bd9452cd57eb
|
|
MD5 |
3d84736c7a713f6d026fdb8b935d0352
|
|
BLAKE2b-256 |
2df426c0f3197904d5b72db521b42e4923e9d54a26325f5b1695d19dd6455f29
|
File details
Details for the file date_tools-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: date_tools-0.0.3-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 |
89e2c26e45c06c04793e3b491d2a17ea66a825bb9828586d3b44df7249c489fd
|
|
MD5 |
13e36d9f492957b026dd42b388a4b4f4
|
|
BLAKE2b-256 |
879050abe520fa4d297d3fde2d8022120f3d92e2d8533f393225edfd80a979cb
|