A python-module to parse strings to time-, date-, datetime- or timedelta-objects. Which formats are accepted is configurable.
Project description
A python-module to parse strings to time-, date-, datetime- or timedelta-objects. Which formats are accepted is configurable.
Latest Version
The latest version of this project can be found at : http://github.com/thomst/timeparser.
Installation
Option 1 : Install via pip
pip install timeparser
Option 2 : If you have downloaded the source
python setup.py install
Documentation
How to use?
>>> import timeparser
>>>
>>> timeparser.parsedate('24.4.13')
datetime.date(2013, 4, 24)
>>>
>>> timeparser.parsedate('24 Apr 2013')
datetime.date(2013, 4, 24)
>>>
>>> timeparser.parsetime('234405')
datetime.time(23, 44, 5)
>>>
>>> timeparser.TimeFormats.config(allow_no_sep=False)
>>> timeparser.parsetime('234405')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "timeparser.py", line 398, in parsetime
raise ValueError("couldn't parse %s as time" % string)
ValueError: couldn't parse 234405 as time
>>>
>>> timeparser.parsedatetime('24-04-13_23:44:05')
datetime.datetime(2013, 4, 24, 23, 44, 5)
Reporting Bugs
Please report bugs at github issue tracker: https://github.com/thomst/timeparser/issues
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
timeparser-0.4.2.tar.gz
(6.1 kB
view details)
File details
Details for the file timeparser-0.4.2.tar.gz.
File metadata
- Download URL: timeparser-0.4.2.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef275e93e0220c2ecebc889695d5ff76247cb646cc92bb6867157ca6297479c0
|
|
| MD5 |
27d0c1f6ecce1f0148857af5dc67140c
|
|
| BLAKE2b-256 |
006131924f8095d7f066f36d60ba3146b7e63b3db2b91af2da5735ed2d34da10
|