Extract datetime objects from strings
Project description
A python module for locating dates inside text. Use this package to extract all sorts of date like strings from a document and turn them into datetime objects.
This module finds the likely datetime strings and then uses dateutil to convert to the datetime object.
Installation
With pip
pip install datefinder
With conda
conda install -c conda-forge datefinder
How to Use
In [1]: string_with_dates = """
...: ...
...: entries are due by January 4th, 2017 at 8:00pm
...: ...
...: created 01/15/2005 by ACME Inc. and associates.
...: ...
...: """
In [2]: import datefinder
In [3]: matches = datefinder.find_dates(string_with_dates)
In [4]: for match in matches:
...: print match
...:
2017-01-04 20:00:00
2005-01-15 00:00:00
Demo
🎞️ Video demo by Calmcode.io. :star:
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file datefinder-0.7.3-py2.py3-none-any.whl
.
File metadata
- Download URL: datefinder-0.7.3-py2.py3-none-any.whl
- Upload date:
- Size: 10.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c012e8cf60f8e80ee2df203f69338211ab2a68ec6e8a83c5c1e1f424d5743a9c |
|
MD5 | 05d15444eb95ec7ae827681146d06a25 |
|
BLAKE2b-256 | 16844061a61d5d48026c112fd136b512b4a8a33dc705c5795bf3809845666b31 |