A python lib to extract time entities from text
Le script utilise une fonction avec 2 paramètres :
- text to analyse
- a metadata
python SEM.py message metadataExample:
python SEM.py 'je voudrais partir lundi' 'date'Since it's complex to have a valid environment to run treetagger + python. We provide a valid Dockerfile and some scripts to ease the tool usage.
- Install docker https://docs.docker.com/engine/installation/
- run bin/build_dev.sh
bin/dev.shbin/dev_server.shIt listen on port 8080. Wait for POST calls on /api/v1/metadata and wait for 2 args:
- 'message' : the text to analyse
- 'name' : the name of the metadata (either date or duration)
There's an authentication mechanism that is reading the 'Http-Auth' header en check that it contains the same thing as in https://github.com/blackbirdco/time_extract/blob/master/secrets/config.yml
bin/test.sh