Skip to main content

A super-fast canonical name lookup service

Project description

juditha on pypi Python test and package pre-commit Coverage Status MIT License

juditha

A super-fast lookup service for canonical names based on redis and configurable upstream sources (currently Aleph and Wikipedia).

juditha wants to solve the noise/garbage problem occurring when working with Named Entity Recognition. Given the availability of huge lists of known names, once could canonize ner-results against this service to check if they are known.

The implementation uses a pre-populated redis cache which can fallback to other sources.

pip install juditha

populate

echo "Jane Doe\nAlice" | juditha import

lookup

juditha lookup Jane
"jane"

data import

from ftm entities

cat entities.ftm.json | juditha import --from-entities

from anywhere

juditha import -i s3://my_bucket/names.txt
juditha import -i https://data.ftm.store/eu_authorities/entities.ftm.json --from-entities

a complete dataset or catalog

Following the nomenklatura specification, a dataset json config needs names.txt or entities.ftm.json in its resources.

juditha load-dataset https://data.ftm.store/eu_authorities/index.json
juditha load-catalog https://data.ftm.store/investigraph/catalog.json

use in python applications

from juditha import lookup

assert lookup("jane") == "Jane"
assert lookup("foo") is None

run as api

uvicorn --port 8000 juditha.api:app --workers 8

api calls

curl -I "http://localhost:8000/Berlin"
HTTP/1.1 200 OK

curl -I "http://localhost:8000/Bayern"
HTTP/1.1 404 Not Found

settings

set redis endpoint via environment variable:

REDIS_URL=redis://localhost:6379

sources

Create a yaml config:

sources:
  - klass: aleph
    config:
      host: https://aleph.investigativedata.org
      # api_key: ...
  - klass: aleph
    config:
      host: https://aleph.occrp.org
      # api_key: ...
  - klass: wikipedia
    config:
      url: https://de.wikipedia.org

Store this as a file (e.g. config.yml) and use it via env vars:

JUDITHA_CONFIG=config.yml juditha lookup "Juditha Dommer"

If a lookup is not found in redis, juditha would use the fallback sources in the given order to lookup names. The results are stored in redis for the next call.

use remote juditha

The juditha client can use a remote api endpoint of a deployed juditha:

JUDITHA=https://juditha.ftm.store juditha lookup "HIMATIC EXPLOTACIONES SL"
from juditha import Juditha

j = Juditha("https://juditha.ftm.store")
assert j.lookup("HIMATIC EXPLOTACIONES SL") is not None

the name

Juditha Dommer was the daughter of a coppersmith and took care of seven children, while her husband Johann Pachelbel wrote a canon.

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

juditha-0.0.2.tar.gz (19.7 kB view hashes)

Uploaded Source

Built Distribution

juditha-0.0.2-py3-none-any.whl (22.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page