-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path__init__.py
More file actions
33 lines (26 loc) · 918 Bytes
/
__init__.py
File metadata and controls
33 lines (26 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""Profile related calls."""
from .embedding import TextEmbedding
from .geocoding import TextGeocoding
from .imaging import TextImaging
from .linking import TextLinking
from .ocr import TextOCR
from .parsing import TextParsing
from .tagging import TextTagging
class Text(object):
"""Text related calls."""
def __init__(self, client):
"""
Initialize Profile object with hrflow client.
Args:
client: hrflow client instance <hrflow object>
Returns
Profile instance object.
"""
self.client = client
self.parsing = TextParsing(self.client)
self.linking = TextLinking(self.client)
self.embedding = TextEmbedding(self.client)
self.tagging = TextTagging(self.client)
self.ocr = TextOCR(self.client)
self.imaging = TextImaging(self.client)
self.geocoding = TextGeocoding(self.client)