File: __init__.py

package info (click to toggle)
python-fingerprints 1.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 920 kB
  • sloc: python: 1,290; makefile: 17
file content (19 lines) | stat: -rw-r--r-- 521 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from fingerprints.fingerprint import fingerprint
from fingerprints.cleanup import clean_entity_prefix
from fingerprints.cleanup import clean_brackets
from fingerprints.cleanup import clean_name_light
from fingerprints.cleanup import clean_name_ascii
from fingerprints.types import remove_types, replace_types

generate = fingerprint

__all__ = [
    "fingerprint",
    "generate",
    "clean_entity_prefix",
    "clean_brackets",
    "clean_name_light",
    "clean_name_ascii",
    "remove_types",
    "replace_types",
]