A spaCy custom component that extracts and normalizes dates and other temporal expressions
Project description
Timexy 🕙 📅
A spaCy custom component that extracts and normalizes dates and other temporal expressions.
Features
- :boom: Extract dates and durations for various languages. See here a list of currently supported languages
- :boom: Normalize dates to timestamps or normalize dates and durations to the TimeML TIMEX3 standard
Supported Languages
- 🇩🇪 German
- :uk: English
- 🇫🇷 French
Installation
pip install timexy
Usage
After installation, simply integrate the timexy component in any of your spaCy pipelines to extract and normalize dates and other temporal expressions:
import spacy
from timexy import Timexy
nlp = spacy.load("en_core_web_sm")
# Optionally add config if varying from default values
config = {
"kb_id_type": "timex3", # possible values: 'timex3'(default), 'timestamp'
"label": "timexy", # default: 'time'
"overwrite": False # default: False
}
nlp.add_pipe("timexy", config=config)
doc = nlp("Today is the 10.10.2010. I was in Paris for six years.")
for e in doc.ents:
print(f"{e.text}\t{e.label_}\t{e.kb_id_}")
>>> 10.10.2010 timexy TIMEX3 type="DATE" value="2010-10-10T00:00:00"
>>> six years timexy TIMEX3 type="DURATION" value="P6Y"
Contributing
Please refer to the contributing guidelines here.
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file timexy-0.1.3.tar.gz.
File metadata
- Download URL: timexy-0.1.3.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.10 Linux/5.11.0-1028-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
20e8c39933575e932656f71f6be22244e96ddac2151b15a2331e38152b122205
|
|
| MD5 |
46974f0a55756f461b166c753119af6a
|
|
| BLAKE2b-256 |
23335fa6362eda8cf7bcdb2115dd47ee5b03653adfb651b35fb7e73ed3dd4393
|
File details
Details for the file timexy-0.1.3-py3-none-any.whl.
File metadata
- Download URL: timexy-0.1.3-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.10 Linux/5.11.0-1028-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4dff67f37c6ea09e501d0f21345a187e4212c7edb8664a5a5c09ca50cfec181
|
|
| MD5 |
b2b5ede8b158ad3345f6748ce9ec33a1
|
|
| BLAKE2b-256 |
db84a2b9b85a67bb0821152bbb543bd508c11cbd7cb46a2be08fc672ad566a8a
|