followthemoney 3.6.4__py2.py3-none-any.whl → 3.7.0__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- followthemoney/__init__.py +1 -1
- followthemoney/mapping/entity.py +15 -6
- followthemoney/proxy.py +4 -4
- followthemoney/schema/BankAccount.yaml +1 -1
- followthemoney/schema/Documentation.yml +3 -2
- followthemoney/schema/Organization.yaml +1 -1
- followthemoney/schema/Person.yaml +2 -2
- followthemoney/schema/Position.yaml +1 -1
- followthemoney/schema/Post.yaml +1 -1
- followthemoney/schema/Project.yaml +1 -1
- followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/ar/LC_MESSAGES/followthemoney.po +5 -5
- followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/bs/LC_MESSAGES/followthemoney.po +3 -3
- followthemoney/translations/de/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/de/LC_MESSAGES/followthemoney.po +5 -5
- followthemoney/translations/es/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/es/LC_MESSAGES/followthemoney.po +5 -5
- followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/fr/LC_MESSAGES/followthemoney.po +5 -5
- followthemoney/translations/fr/followthemoney.po +3 -3
- followthemoney/translations/messages.pot +143 -60
- followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/nb/LC_MESSAGES/followthemoney.po +3 -3
- followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/nl/LC_MESSAGES/followthemoney.po +3 -3
- followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po +3 -3
- followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/ru/LC_MESSAGES/followthemoney.po +5 -5
- followthemoney/translations/ru/followthemoney.po +4 -4
- followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo +0 -0
- followthemoney/translations/tr/LC_MESSAGES/followthemoney.po +3 -3
- followthemoney/types/checksum.py +1 -0
- followthemoney/types/common.py +12 -4
- followthemoney/types/country.py +1 -0
- followthemoney/types/date.py +1 -0
- followthemoney/types/gender.py +1 -0
- followthemoney/types/iban.py +4 -1
- followthemoney/types/identifier.py +1 -0
- followthemoney/types/ip.py +1 -0
- followthemoney/types/language.py +1 -0
- followthemoney/types/phone.py +1 -0
- followthemoney/types/string.py +5 -2
- followthemoney/types/topic.py +2 -0
- followthemoney/types/url.py +1 -0
- {followthemoney-3.6.4.dist-info → followthemoney-3.7.0.dist-info}/METADATA +36 -36
- {followthemoney-3.6.4.dist-info → followthemoney-3.7.0.dist-info}/RECORD +53 -53
- {followthemoney-3.6.4.dist-info → followthemoney-3.7.0.dist-info}/WHEEL +1 -1
- {followthemoney-3.6.4.dist-info → followthemoney-3.7.0.dist-info}/LICENSE +0 -0
- {followthemoney-3.6.4.dist-info → followthemoney-3.7.0.dist-info}/entry_points.txt +0 -0
- {followthemoney-3.6.4.dist-info → followthemoney-3.7.0.dist-info}/namespace_packages.txt +0 -0
- {followthemoney-3.6.4.dist-info → followthemoney-3.7.0.dist-info}/top_level.txt +0 -0
followthemoney/types/common.py
CHANGED
|
@@ -19,6 +19,7 @@ class PropertyTypeToDict(TypedDict, total=False):
|
|
|
19
19
|
label: str
|
|
20
20
|
plural: str
|
|
21
21
|
description: Optional[str]
|
|
22
|
+
max_length: int
|
|
22
23
|
group: Optional[str]
|
|
23
24
|
matchable: Optional[bool]
|
|
24
25
|
pivot: Optional[bool]
|
|
@@ -57,7 +58,13 @@ class PropertyType(object):
|
|
|
57
58
|
other entities that mention the same phone number, email address or name as the
|
|
58
59
|
one currently seen by the user."""
|
|
59
60
|
|
|
60
|
-
|
|
61
|
+
max_length: int = 250
|
|
62
|
+
"""The maximum length of a single value of this type. This is used to warn when
|
|
63
|
+
adding individual values that may be malformed or too long to be stored in
|
|
64
|
+
downstream databases with fixed column lengths. The unit is unicode codepoints
|
|
65
|
+
(not bytes), the output of Python len()."""
|
|
66
|
+
|
|
67
|
+
total_size: Optional[int] = None
|
|
61
68
|
"""Some types have overall size limitations in place in order to avoid generating
|
|
62
69
|
entities that are very large (upstream ElasticSearch has a 100MB document limit).
|
|
63
70
|
Once the total size of all properties of this type has exceed the given limit,
|
|
@@ -147,8 +154,8 @@ class PropertyType(object):
|
|
|
147
154
|
) -> float:
|
|
148
155
|
"""Compare two sets of values and select the highest-scored result."""
|
|
149
156
|
results = []
|
|
150
|
-
for
|
|
151
|
-
results.append(self.compare(
|
|
157
|
+
for le, ri in product(ensure_list(left), ensure_list(right)):
|
|
158
|
+
results.append(self.compare(le, ri))
|
|
152
159
|
if not len(results):
|
|
153
160
|
return 0.0
|
|
154
161
|
return func(results)
|
|
@@ -165,7 +172,7 @@ class PropertyType(object):
|
|
|
165
172
|
|
|
166
173
|
def pick(self, values: Sequence[str]) -> Optional[str]:
|
|
167
174
|
"""Pick the best value to show to the user."""
|
|
168
|
-
raise
|
|
175
|
+
raise NotImplementedError
|
|
169
176
|
|
|
170
177
|
def node_id(self, value: str) -> Optional[str]:
|
|
171
178
|
"""Return an ID suitable to identify this entity as a typed node in a
|
|
@@ -191,6 +198,7 @@ class PropertyType(object):
|
|
|
191
198
|
"label": gettext(self.label),
|
|
192
199
|
"plural": gettext(self.plural),
|
|
193
200
|
"description": gettext(self.docs),
|
|
201
|
+
"max_length": self.max_length,
|
|
194
202
|
}
|
|
195
203
|
if self.group:
|
|
196
204
|
data["group"] = self.group
|
followthemoney/types/country.py
CHANGED
followthemoney/types/date.py
CHANGED
followthemoney/types/gender.py
CHANGED
followthemoney/types/iban.py
CHANGED
|
@@ -24,8 +24,11 @@ class IbanType(PropertyType):
|
|
|
24
24
|
plural = _("IBANs")
|
|
25
25
|
matchable = True
|
|
26
26
|
pivot = True
|
|
27
|
+
max_length = 64
|
|
27
28
|
|
|
28
|
-
def validate(
|
|
29
|
+
def validate(
|
|
30
|
+
self, value: str, fuzzy: bool = False, format: Optional[str] = None
|
|
31
|
+
) -> bool:
|
|
29
32
|
text = sanitize_text(value)
|
|
30
33
|
if text is None:
|
|
31
34
|
return False
|
followthemoney/types/ip.py
CHANGED
followthemoney/types/language.py
CHANGED
followthemoney/types/phone.py
CHANGED
followthemoney/types/string.py
CHANGED
|
@@ -10,6 +10,7 @@ class StringType(PropertyType):
|
|
|
10
10
|
label = _("Label")
|
|
11
11
|
plural = _("Labels")
|
|
12
12
|
matchable = False
|
|
13
|
+
max_length = 1024
|
|
13
14
|
|
|
14
15
|
def node_id(self, value: str) -> None:
|
|
15
16
|
return None
|
|
@@ -23,7 +24,8 @@ class TextType(StringType):
|
|
|
23
24
|
name = "text"
|
|
24
25
|
label = _("Text")
|
|
25
26
|
plural = _("Texts")
|
|
26
|
-
|
|
27
|
+
total_size = 30 * MEGABYTE
|
|
28
|
+
max_length = 65000
|
|
27
29
|
|
|
28
30
|
|
|
29
31
|
class HTMLType(StringType):
|
|
@@ -37,4 +39,5 @@ class HTMLType(StringType):
|
|
|
37
39
|
name = "html"
|
|
38
40
|
label = _("HTML")
|
|
39
41
|
plural = _("HTMLs")
|
|
40
|
-
|
|
42
|
+
total_size = 30 * MEGABYTE
|
|
43
|
+
max_length = 65000
|
followthemoney/types/topic.py
CHANGED
|
@@ -21,6 +21,7 @@ class TopicType(EnumType):
|
|
|
21
21
|
label = _("Topic")
|
|
22
22
|
plural = _("Topics")
|
|
23
23
|
matchable = False
|
|
24
|
+
max_length = 64
|
|
24
25
|
|
|
25
26
|
_TOPICS = {
|
|
26
27
|
"crime": _("Crime"),
|
|
@@ -71,6 +72,7 @@ class TopicType(EnumType):
|
|
|
71
72
|
"role.oligarch": _("Oligarch"),
|
|
72
73
|
"role.journo": _("Journalist"),
|
|
73
74
|
"role.act": _("Activist"),
|
|
75
|
+
"role.lobby": _("Lobbyist"),
|
|
74
76
|
"pol.party": _("Political party"),
|
|
75
77
|
"pol.union": _("Union"),
|
|
76
78
|
"rel": _("Religion"),
|
followthemoney/types/url.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: followthemoney
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.7.0
|
|
4
4
|
Home-page: https://followthemoney.tech/
|
|
5
5
|
Author: Organized Crime and Corruption Reporting Project
|
|
6
6
|
Author-email: data@occrp.org
|
|
@@ -11,44 +11,44 @@ Classifier: Programming Language :: Python
|
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.9
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
|
-
Requires-Dist: babel
|
|
15
|
-
Requires-Dist: pyyaml
|
|
14
|
+
Requires-Dist: babel<3.0.0,>=2.14.0
|
|
15
|
+
Requires-Dist: pyyaml<7.0.0,>=5.0.0
|
|
16
16
|
Requires-Dist: types-PyYAML
|
|
17
17
|
Requires-Dist: sqlalchemy2-stubs
|
|
18
|
-
Requires-Dist: banal
|
|
19
|
-
Requires-Dist: rigour
|
|
20
|
-
Requires-Dist: click
|
|
21
|
-
Requires-Dist: stringcase
|
|
22
|
-
Requires-Dist: requests
|
|
23
|
-
Requires-Dist: normality
|
|
24
|
-
Requires-Dist: sqlalchemy
|
|
25
|
-
Requires-Dist: countrynames
|
|
26
|
-
Requires-Dist: prefixdate
|
|
27
|
-
Requires-Dist: fingerprints
|
|
28
|
-
Requires-Dist: phonenumbers
|
|
29
|
-
Requires-Dist: python-stdnum
|
|
30
|
-
Requires-Dist: pytz
|
|
31
|
-
Requires-Dist: rdflib
|
|
32
|
-
Requires-Dist: networkx
|
|
33
|
-
Requires-Dist: openpyxl
|
|
34
|
-
Requires-Dist: orjson
|
|
18
|
+
Requires-Dist: banal<1.1.0,>=1.0.6
|
|
19
|
+
Requires-Dist: rigour<1.0.0,>=0.5.1
|
|
20
|
+
Requires-Dist: click<9.0.0,>=8.0
|
|
21
|
+
Requires-Dist: stringcase<2.0.0,>=1.2.0
|
|
22
|
+
Requires-Dist: requests<3.0.0,>=2.21.0
|
|
23
|
+
Requires-Dist: normality<3.0.0,>=2.4.0
|
|
24
|
+
Requires-Dist: sqlalchemy<3.0.0,>=1.4.49
|
|
25
|
+
Requires-Dist: countrynames<2.0.0,>=1.13.0
|
|
26
|
+
Requires-Dist: prefixdate<1.0.0,>=0.4.0
|
|
27
|
+
Requires-Dist: fingerprints<2.0.0,>=1.0.1
|
|
28
|
+
Requires-Dist: phonenumbers<9.0.0,>=8.12.22
|
|
29
|
+
Requires-Dist: python-stdnum<2.0.0,>=1.16
|
|
30
|
+
Requires-Dist: pytz>=2021.1
|
|
31
|
+
Requires-Dist: rdflib<7.1.0,>=6.2.0
|
|
32
|
+
Requires-Dist: networkx<3.4,>=2.5
|
|
33
|
+
Requires-Dist: openpyxl<4.0.0,>=3.0.5
|
|
34
|
+
Requires-Dist: orjson<4.0,>=3.7
|
|
35
35
|
Provides-Extra: dev
|
|
36
|
-
Requires-Dist: pip
|
|
37
|
-
Requires-Dist: bump2version
|
|
38
|
-
Requires-Dist: wheel
|
|
39
|
-
Requires-Dist: twine
|
|
40
|
-
Requires-Dist: mypy
|
|
41
|
-
Requires-Dist: pytest
|
|
42
|
-
Requires-Dist: pytest-cov
|
|
43
|
-
Requires-Dist: types-PyYAML
|
|
44
|
-
Requires-Dist: types-requests
|
|
45
|
-
Requires-Dist: types-setuptools
|
|
46
|
-
Requires-Dist: types-openpyxl
|
|
47
|
-
Requires-Dist: flake8
|
|
48
|
-
Requires-Dist: transifex-client
|
|
49
|
-
Requires-Dist: responses
|
|
50
|
-
Requires-Dist: coverage
|
|
51
|
-
Requires-Dist: recommonmark
|
|
36
|
+
Requires-Dist: pip>=10.0.0; extra == "dev"
|
|
37
|
+
Requires-Dist: bump2version; extra == "dev"
|
|
38
|
+
Requires-Dist: wheel>=0.29.0; extra == "dev"
|
|
39
|
+
Requires-Dist: twine; extra == "dev"
|
|
40
|
+
Requires-Dist: mypy; extra == "dev"
|
|
41
|
+
Requires-Dist: pytest; extra == "dev"
|
|
42
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
43
|
+
Requires-Dist: types-PyYAML; extra == "dev"
|
|
44
|
+
Requires-Dist: types-requests; extra == "dev"
|
|
45
|
+
Requires-Dist: types-setuptools; extra == "dev"
|
|
46
|
+
Requires-Dist: types-openpyxl; extra == "dev"
|
|
47
|
+
Requires-Dist: flake8>=2.6.0; extra == "dev"
|
|
48
|
+
Requires-Dist: transifex-client; extra == "dev"
|
|
49
|
+
Requires-Dist: responses>=0.9.0; extra == "dev"
|
|
50
|
+
Requires-Dist: coverage>=4.1; extra == "dev"
|
|
51
|
+
Requires-Dist: recommonmark>=0.4.0; extra == "dev"
|
|
52
52
|
|
|
53
53
|
# Follow the Money
|
|
54
54
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
followthemoney/__init__.py,sha256=
|
|
1
|
+
followthemoney/__init__.py,sha256=Hnq1LeCowKt0gvygwvBnqun2pcEb7tSjE5UmGevjQis,360
|
|
2
2
|
followthemoney/compare.py,sha256=1GFkCfTzA8QR0CH90kvySR8hvl9hQRUerW5Xw2Ivmpg,5134
|
|
3
3
|
followthemoney/exc.py,sha256=ynZs_UnTVxHR-iBfat_CpVLraYzVX5yLtVf5Ti14hl4,734
|
|
4
4
|
followthemoney/graph.py,sha256=VNDKrUBkz_-DmKsr5v-Xm8VfxzabnTwkU_MFk92_TjA,10848
|
|
@@ -9,7 +9,7 @@ followthemoney/namespace.py,sha256=qYplxKn5OO3zDMf3NItKwTwDsJOnski5JbeyhssqhR8,4
|
|
|
9
9
|
followthemoney/offshore.py,sha256=Pf0tx-7GyhIZRueshDRqPNlxkHfGstmW5yNDID5Mnws,1060
|
|
10
10
|
followthemoney/ontology.py,sha256=7PEoUKISNpkRvVhuLeE3IE9ZiNtdR8mn9_kzZ9yF9l0,2986
|
|
11
11
|
followthemoney/property.py,sha256=EXU4kH6rOD9ubmuDXE-3LGc6gwQspW9_NjSacDb4xYA,7494
|
|
12
|
-
followthemoney/proxy.py,sha256=
|
|
12
|
+
followthemoney/proxy.py,sha256=M7RIPF0k-P3v7GYKYhRVVaO1cnUf5FArJepE-2c0KMQ,20033
|
|
13
13
|
followthemoney/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
followthemoney/rdf.py,sha256=_BzWiBc61UYjiyadvGKya4P4JlJfvZtNrn8SP2hC2JM,328
|
|
15
15
|
followthemoney/schema.py,sha256=Tk61vRmWaawW-1HOmu-hbYZtkD8it0fIvNtSRxBEQxA,16774
|
|
@@ -30,7 +30,7 @@ followthemoney/export/neo4j.py,sha256=JCLb1eW5FFIJXqmnpNMRzRs1KYuYkCtHZp7KJcu-JN
|
|
|
30
30
|
followthemoney/export/rdf.py,sha256=E6RiW7oIsJdaBaLAVm6o-MTokARZtqONPuayILqTqo0,786
|
|
31
31
|
followthemoney/mapping/__init__.py,sha256=iwNqzzvrzJNbNDlOCaDLlBTUrNTlnYHIB5cvo_-9oN4,82
|
|
32
32
|
followthemoney/mapping/csv.py,sha256=Tvc6VSh7-ca63LEE4G0yqOCeGMETkuKzUjIkVn4_d7Q,3185
|
|
33
|
-
followthemoney/mapping/entity.py,sha256
|
|
33
|
+
followthemoney/mapping/entity.py,sha256=-x_VBHiVthIrZZ-PVKD3oBAq6LYcsyeYW-9TFv80k7M,5905
|
|
34
34
|
followthemoney/mapping/property.py,sha256=41V16HJh6da7oKdSJWyRcyMkx2XFd6iDm9-4PH7Wihw,5036
|
|
35
35
|
followthemoney/mapping/query.py,sha256=8M6bOlEX2p_bbVwEwTu_1slEtU0cfRJB7ajZp-F07CE,2622
|
|
36
36
|
followthemoney/mapping/source.py,sha256=sri-XpSjeHZbQtqNcz1eJYvwVSBNqGO5JwhWswiEx3c,649
|
|
@@ -43,7 +43,7 @@ followthemoney/schema/Assessment.yaml,sha256=-RH_aEz4xGejucRcwl45KVAnzSLeQ7zwJWg
|
|
|
43
43
|
followthemoney/schema/Asset.yaml,sha256=xQhHJJtnGLfiOaUncqGv4JR3Yn7l46yAg7p0hKFAFVE,260
|
|
44
44
|
followthemoney/schema/Associate.yaml,sha256=ijTHd6GDlK4lMtijdkTzERR9DODtqKk0XoZPlDEsUnI,901
|
|
45
45
|
followthemoney/schema/Audio.yaml,sha256=Eb1rZGUEOX7XDAj_1YIN28NCBzMvkopQBNwgHt_kS18,452
|
|
46
|
-
followthemoney/schema/BankAccount.yaml,sha256
|
|
46
|
+
followthemoney/schema/BankAccount.yaml,sha256=YRfuqgB1W82sgBNGxJ_fj0X9fVa6vTnxJhhNqop7a6Y,1392
|
|
47
47
|
followthemoney/schema/Call.yaml,sha256=kbVCnVxucBrEplxehXHThLSJAJjy_GhWan-IeZZjr0M,980
|
|
48
48
|
followthemoney/schema/CallForTenders.yaml,sha256=2IWonTzfSbrkynMoEWqv5fekUeFM_xDKpKIbRe1XDbo,3227
|
|
49
49
|
followthemoney/schema/Company.yaml,sha256=7dWBPetd7xOJtu8AlhKsjxBYzYBK5E3LssYguSf0glA,3321
|
|
@@ -55,7 +55,7 @@ followthemoney/schema/CryptoWallet.yaml,sha256=n5EDKc7IhITdXX3gJJEdCcLJjdcpB0owC
|
|
|
55
55
|
followthemoney/schema/Debt.yaml,sha256=gSGl1xKPaPWAYYEcX7MxezVn3Gu-CYBIzxGzMd9UTm4,657
|
|
56
56
|
followthemoney/schema/Directorship.yaml,sha256=BMx2AQTLy5ta_lWPnYKj7LFjZWTwtu1hgWncISdKf28,773
|
|
57
57
|
followthemoney/schema/Document.yaml,sha256=MA-vZrK_Imd2HuIhJ7c_BH9Cpecv-DewXJhfjECXjuw,2927
|
|
58
|
-
followthemoney/schema/Documentation.yml,sha256=
|
|
58
|
+
followthemoney/schema/Documentation.yml,sha256=AZ1kHiKcvkyv3SINLwAwUyoWMVrF8O0mSJhMN4jNNaE,760
|
|
59
59
|
followthemoney/schema/EconomicActivity.yaml,sha256=hm2x-p-49fGOZcy6xVtiplpJs4XsQVFYLgb8D41az0k,4049
|
|
60
60
|
followthemoney/schema/Email.yaml,sha256=IqEHgqUsapbTnCBO7OuV-GvoxLH8LIQscZOyAiateqw,1549
|
|
61
61
|
followthemoney/schema/Employment.yaml,sha256=rQXGva4uOKzQbkow4AM4Iez5t7kzm0HTqhhWzvgosl4,674
|
|
@@ -74,18 +74,18 @@ followthemoney/schema/Mention.yaml,sha256=nBeulR_Jm4x75aJ7yNF0TAVhHJqXQaEzOutLIn
|
|
|
74
74
|
followthemoney/schema/Message.yaml,sha256=89k3kdN2w_Vfz1UjbUUPojZtMsAvmZGiDSkHeSNMl8w,1484
|
|
75
75
|
followthemoney/schema/Note.yaml,sha256=NohwtFupxIssZuEgQowiQWqKit4uQ-OatAu3yp9eJj4,411
|
|
76
76
|
followthemoney/schema/Occupancy.yaml,sha256=-alsy15cz3RXC_2xYN6rXxwxSOW_hazCNyIvmp7Jawo,773
|
|
77
|
-
followthemoney/schema/Organization.yaml,sha256=
|
|
77
|
+
followthemoney/schema/Organization.yaml,sha256=AxASyXY18xGXO9FmAwIrARoRy8OxxRPUXlbUqch7Vi4,562
|
|
78
78
|
followthemoney/schema/Ownership.yaml,sha256=naWvWoqJph463fwk6SdC14RAVF03l98bWwpscrW_vJg,997
|
|
79
79
|
followthemoney/schema/Package.yaml,sha256=gPr-P3lcg7OOAav_KVa8baK4yK57JwfcXwxXheD96UQ,310
|
|
80
80
|
followthemoney/schema/Page.yaml,sha256=sQt_CnVyjDVGVECLQoGYZH4hxpjdPhxVRz4XJW-_1OU,1107
|
|
81
81
|
followthemoney/schema/Pages.yaml,sha256=KKPGZ06Ehp5mWIGnYfHUBN9jT03bk8nakw0pB5bA_7E,450
|
|
82
82
|
followthemoney/schema/Passport.yaml,sha256=wr7cP2w12pxNF0JP7V00YH2Lz9NAEvuB_FyrQvRQDTA,736
|
|
83
83
|
followthemoney/schema/Payment.yaml,sha256=WRBJuj9ljsxLBs-0g9Z9UD87uR1RTtuUiYnWOnKr1qA,1757
|
|
84
|
-
followthemoney/schema/Person.yaml,sha256=
|
|
84
|
+
followthemoney/schema/Person.yaml,sha256=1rQVOCla7kJmexPdh2xIThQCIHaRhib77nJ0XinwVog,2266
|
|
85
85
|
followthemoney/schema/PlainText.yaml,sha256=hfnVi-HmQeDbqDquSpkPJax9hNm86ioXGr4hzNzyPFE,278
|
|
86
|
-
followthemoney/schema/Position.yaml,sha256=
|
|
87
|
-
followthemoney/schema/Post.yaml,sha256=
|
|
88
|
-
followthemoney/schema/Project.yaml,sha256=
|
|
86
|
+
followthemoney/schema/Position.yaml,sha256=ZpxjWOLxwva_on32r9WD5ys0Ty3YxCju41mg9HG-pe0,1308
|
|
87
|
+
followthemoney/schema/Post.yaml,sha256=cbxy8cWXHFKSvr1ylwDilRURhcsyd9-H7fn_Lb4lsFE,1034
|
|
88
|
+
followthemoney/schema/Project.yaml,sha256=2svtyGJopS0UrqPiuYGpBzj30V7k3LRDX4N1U56y4yY,462
|
|
89
89
|
followthemoney/schema/ProjectParticipant.yaml,sha256=xNehEu90uqUfboNouezhZQ8ZQLxzWq1yyNO4kua-Lyc,727
|
|
90
90
|
followthemoney/schema/PublicBody.yaml,sha256=BNfLBqH1OapoEninAjWmqZx_n-G5QUnzzydW7300TiY,301
|
|
91
91
|
followthemoney/schema/RealEstate.yaml,sha256=NWFHXqEHskYQN-kvQESZpu74nztShqoYSZEjZAr-DHM,1363
|
|
@@ -105,51 +105,51 @@ followthemoney/schema/Vehicle.yaml,sha256=WyjfHL7XxEQQ1h0IyOBYKAZ40BEghQaM7_mkFn
|
|
|
105
105
|
followthemoney/schema/Vessel.yaml,sha256=dOfWw9HC00xhdGJYSCBg3zr9rJQl6_hvkWM916qGgMw,999
|
|
106
106
|
followthemoney/schema/Video.yaml,sha256=LY3DYMWTHXiAhL0hxBCNCz50cp2sPbUlEhhig5Fbjos,327
|
|
107
107
|
followthemoney/schema/Workbook.yaml,sha256=iikWPElz4klA7SkWH7eae6xqhbkMCIP_3zdeXzFEMU0,354
|
|
108
|
-
followthemoney/translations/messages.pot,sha256=
|
|
109
|
-
followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo,sha256=
|
|
110
|
-
followthemoney/translations/ar/LC_MESSAGES/followthemoney.po,sha256=
|
|
111
|
-
followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo,sha256=
|
|
112
|
-
followthemoney/translations/bs/LC_MESSAGES/followthemoney.po,sha256=
|
|
113
|
-
followthemoney/translations/de/LC_MESSAGES/followthemoney.mo,sha256=
|
|
114
|
-
followthemoney/translations/de/LC_MESSAGES/followthemoney.po,sha256=
|
|
115
|
-
followthemoney/translations/es/LC_MESSAGES/followthemoney.mo,sha256=
|
|
116
|
-
followthemoney/translations/es/LC_MESSAGES/followthemoney.po,sha256=
|
|
117
|
-
followthemoney/translations/fr/followthemoney.po,sha256=
|
|
118
|
-
followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo,sha256=
|
|
119
|
-
followthemoney/translations/fr/LC_MESSAGES/followthemoney.po,sha256=
|
|
120
|
-
followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo,sha256=
|
|
121
|
-
followthemoney/translations/nb/LC_MESSAGES/followthemoney.po,sha256=
|
|
122
|
-
followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo,sha256=
|
|
123
|
-
followthemoney/translations/nl/LC_MESSAGES/followthemoney.po,sha256=
|
|
124
|
-
followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo,sha256=
|
|
125
|
-
followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po,sha256=
|
|
126
|
-
followthemoney/translations/ru/followthemoney.po,sha256=
|
|
127
|
-
followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo,sha256=
|
|
128
|
-
followthemoney/translations/ru/LC_MESSAGES/followthemoney.po,sha256=
|
|
129
|
-
followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo,sha256=
|
|
130
|
-
followthemoney/translations/tr/LC_MESSAGES/followthemoney.po,sha256=
|
|
108
|
+
followthemoney/translations/messages.pot,sha256=P3zcZ-gJhBi8Db7XjaSijhvFhZAInhpcwsA1Vlwjuzg,106899
|
|
109
|
+
followthemoney/translations/ar/LC_MESSAGES/followthemoney.mo,sha256=P3-UT2wsX3g9pSLfw4RepVcICfTajZh_7sHbnUNj6V0,38795
|
|
110
|
+
followthemoney/translations/ar/LC_MESSAGES/followthemoney.po,sha256=DuIfvR5v0sPGwFbeg3y6_jCbeglvHWXQ2LDH6prfwLc,121326
|
|
111
|
+
followthemoney/translations/bs/LC_MESSAGES/followthemoney.mo,sha256=zbGFbRF4jdnRVG0mEGGBPlU2oUELXivONpCz9F0XUuI,10751
|
|
112
|
+
followthemoney/translations/bs/LC_MESSAGES/followthemoney.po,sha256=cQdXsSU0gDtH-cdCuyhHDotRjDCz_xrEOZBP62JocXc,93144
|
|
113
|
+
followthemoney/translations/de/LC_MESSAGES/followthemoney.mo,sha256=lMJ6zqsbV91RzxjTHItj7s5TbGLr9cRpKoyVR1JxD8M,36069
|
|
114
|
+
followthemoney/translations/de/LC_MESSAGES/followthemoney.po,sha256=pB9sZkXx-eS5-WVhGWme03HOiP0XEIluijRHHJlqr_c,115528
|
|
115
|
+
followthemoney/translations/es/LC_MESSAGES/followthemoney.mo,sha256=PsrAassB_zMDnostOg6UBBgfVAQUiQE6OLKuM-M1rts,32142
|
|
116
|
+
followthemoney/translations/es/LC_MESSAGES/followthemoney.po,sha256=AyH6mEivN3tEemqVY6CVrcoVnu2dMjcN1NzuR32Qzz8,115178
|
|
117
|
+
followthemoney/translations/fr/followthemoney.po,sha256=uLWYl4ibZHfQObR_LWvXOq7SvdYC_VaAaisPUzZQDTY,106799
|
|
118
|
+
followthemoney/translations/fr/LC_MESSAGES/followthemoney.mo,sha256=iBf2_6V3MA46-4MIVG5fDdXMGTNNZzFq1A8ciUo65os,42515
|
|
119
|
+
followthemoney/translations/fr/LC_MESSAGES/followthemoney.po,sha256=NBH5chbuqUBqxYZgMnDo2RtQz7UuMGMeHLeFwrEflR8,119960
|
|
120
|
+
followthemoney/translations/nb/LC_MESSAGES/followthemoney.mo,sha256=Gjkr4fPJEkeHRmrDonNt2EtkUjqu5yeOvm5RVn9wUI4,498
|
|
121
|
+
followthemoney/translations/nb/LC_MESSAGES/followthemoney.po,sha256=Tvm7-UzSUGqCcY1wK7rbVP3JFKW-wxCxU1gDJw_9_XQ,89793
|
|
122
|
+
followthemoney/translations/nl/LC_MESSAGES/followthemoney.mo,sha256=PQInglqJjiaL7HJlxddXO6gcD_x2cSXBz9TED70IivA,486
|
|
123
|
+
followthemoney/translations/nl/LC_MESSAGES/followthemoney.po,sha256=qOBe7fZ4AXL9J8pqH2Lv8LFzaHm_C0O8R6dHwlLnQA8,90873
|
|
124
|
+
followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.mo,sha256=s2EGTBFbR4JwNmX2q9J8vECsUa55wmD4pl0FujC909I,505
|
|
125
|
+
followthemoney/translations/pt_BR/LC_MESSAGES/followthemoney.po,sha256=pG6tnzGFvsKrNRNwq8_JMH2_IjaOpGm_ztZfR5B20FY,89844
|
|
126
|
+
followthemoney/translations/ru/followthemoney.po,sha256=NYISuFWe_4sPleIqmHjDsIsMBE_oS6yZxbdpizACpUY,130617
|
|
127
|
+
followthemoney/translations/ru/LC_MESSAGES/followthemoney.mo,sha256=iYz5zJCgXJRpcnSYeNQnX7UbTmuUdBX0bubM90pMEQk,66033
|
|
128
|
+
followthemoney/translations/ru/LC_MESSAGES/followthemoney.po,sha256=N9ck77PAscmhFkxSNHNj1GctVxugJRiZST0LmHVDqcU,139448
|
|
129
|
+
followthemoney/translations/tr/LC_MESSAGES/followthemoney.mo,sha256=9cySl9BPdMxIOaV11GL1prvjQKBLcH1ng7aGX4SPzD0,487
|
|
130
|
+
followthemoney/translations/tr/LC_MESSAGES/followthemoney.po,sha256=AZC3marhtVVq8Ck1FOgnt4sbDMz548nX48O9GDwImbQ,89826
|
|
131
131
|
followthemoney/types/__init__.py,sha256=X9XeM6JktzirAw5gGkyDKGM70NuiJ9Tbjoq0IwVclxU,1745
|
|
132
132
|
followthemoney/types/address.py,sha256=P6ctzojJks70RZIwk5Bhc9djxejZo4Te0m5pQ9M7bAM,1651
|
|
133
|
-
followthemoney/types/checksum.py,sha256=
|
|
134
|
-
followthemoney/types/common.py,sha256=
|
|
135
|
-
followthemoney/types/country.py,sha256=
|
|
136
|
-
followthemoney/types/date.py,sha256=
|
|
133
|
+
followthemoney/types/checksum.py,sha256=OqjCsBPyMIV3_Y20kTTvjkyayy32pBtaI5KKwYQb6lY,937
|
|
134
|
+
followthemoney/types/common.py,sha256=gmTLE4krAObnkQAdLWb-ZQqVApgjadmAdIf8Cs1x1aY,10204
|
|
135
|
+
followthemoney/types/country.py,sha256=Ll4NENog6XgPZmt85GCQWnBzpswlZvwDCvhSmJhiVJs,3073
|
|
136
|
+
followthemoney/types/date.py,sha256=4lZCd0aws-T3HE2BYkb-a-t8iQDr0nqFSAEBoUKiTlM,2683
|
|
137
137
|
followthemoney/types/email.py,sha256=zAnMHwC_FZh7IagpDRhGZf-GfQR6uW8d-lZP4UCdGcM,2745
|
|
138
138
|
followthemoney/types/entity.py,sha256=RCDD9j7MWA_dd0Ib33dl1E6PubsiS1yfVeIOsDxWYpY,2431
|
|
139
|
-
followthemoney/types/gender.py,sha256=
|
|
140
|
-
followthemoney/types/iban.py,sha256=
|
|
141
|
-
followthemoney/types/identifier.py,sha256=
|
|
142
|
-
followthemoney/types/ip.py,sha256=
|
|
139
|
+
followthemoney/types/gender.py,sha256=AVCa6ocsxueVhGW7RA2BIbQEfDRQANDpKkGY7ZakTYE,1820
|
|
140
|
+
followthemoney/types/iban.py,sha256=QYD49erJCB6I2nbtTagRMvpa4RyjezfB4Fpat2QLwAc,1797
|
|
141
|
+
followthemoney/types/identifier.py,sha256=Gk4h75_KyjkdtomrK9Ldsh9rD7-bsenFryevJFwqlX0,2036
|
|
142
|
+
followthemoney/types/ip.py,sha256=BxGARP9JWEWvyRnr7A7xUNwmTxyFd9kwXSZrKR0TK2Q,1412
|
|
143
143
|
followthemoney/types/json.py,sha256=Hefwns1-ziJf310MWvdfX5ICkOgj9cnnMJuqq1e6qKY,1676
|
|
144
|
-
followthemoney/types/language.py,sha256=
|
|
144
|
+
followthemoney/types/language.py,sha256=gbOnrScpC8bOwlbygaMZa-mddoJonX3GPhCHg03i_0I,2632
|
|
145
145
|
followthemoney/types/mimetype.py,sha256=EZ5hIdn-wosfLc-GjXDaOzevxaSXPbSPHDUJmPT1h0I,1355
|
|
146
146
|
followthemoney/types/name.py,sha256=WsVVDIPJ0Hdlll3XvUgRHlpAbtUxu_p-yJmHaEH-4Gc,2093
|
|
147
147
|
followthemoney/types/number.py,sha256=9l5v3hcAoJ4V6jaBS_-Kc1gtdJlQrY9L98ElC5e_PLQ,943
|
|
148
|
-
followthemoney/types/phone.py,sha256=
|
|
148
|
+
followthemoney/types/phone.py,sha256=2YFbPBtMepvCWTdcxXq3Fq4AU8B4QYk1FARBpsH8xjs,4040
|
|
149
149
|
followthemoney/types/registry.py,sha256=hvQ1oIWz_4PpyUnKA5azbaZCulNb5LCIPyC-AQYVVyw,1936
|
|
150
|
-
followthemoney/types/string.py,sha256=
|
|
151
|
-
followthemoney/types/topic.py,sha256=
|
|
152
|
-
followthemoney/types/url.py,sha256=
|
|
150
|
+
followthemoney/types/string.py,sha256=grDn1OgKWxIzVxGEdp0HjVKIqtQ9W4SW2ty4quv3Pcs,1202
|
|
151
|
+
followthemoney/types/topic.py,sha256=6g57JKTFF_I233-afvuaswFxMaN_Kmg5MZ4_iAKZh9c,3754
|
|
152
|
+
followthemoney/types/url.py,sha256=r7Pd6Yfn--amwMi_nHoTLMwm5SH8h50SMgQaa2G4PJ0,1492
|
|
153
153
|
tests/export/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
154
|
tests/export/test_csv.py,sha256=r0ACsWnGdLHIZgXvbshGBQ9An0v1dJGAWulRT-Xittc,1261
|
|
155
155
|
tests/export/test_excel.py,sha256=ShLtaJ1-zgq-1rzbNoGJp1bVbRKZ-HcGtU8oJpKwjjY,1696
|
|
@@ -177,10 +177,10 @@ tests/types/test_phones.py,sha256=_GTl-0r5hok8ovUJPRqP7k9kJYMVbanjYUMLrbzFb5U,11
|
|
|
177
177
|
tests/types/test_registry.py,sha256=IkrHjrEiIIPd4PdMFUg_jVh_gsE6CzGXIF8s3LIbnl0,296
|
|
178
178
|
tests/types/test_topic.py,sha256=m35GSwTy-r77YACGDDac09nYLBIUua42Dy7z292m9EU,707
|
|
179
179
|
tests/types/test_urls.py,sha256=JVmzJ0DKDBle_xLjmOHn0hgDTCpLmljrcfbOM1GSGRw,1170
|
|
180
|
-
followthemoney-3.
|
|
181
|
-
followthemoney-3.
|
|
182
|
-
followthemoney-3.
|
|
183
|
-
followthemoney-3.
|
|
184
|
-
followthemoney-3.
|
|
185
|
-
followthemoney-3.
|
|
186
|
-
followthemoney-3.
|
|
180
|
+
followthemoney-3.7.0.dist-info/LICENSE,sha256=Jln3uF70A9AQySyrP9JAW6sQTubLoKVQunvuJqISv7w,1098
|
|
181
|
+
followthemoney-3.7.0.dist-info/METADATA,sha256=D0qnWruZX2Jnh1NgYoOs2ytiPWSPA2gnCgQqt0upV2g,4453
|
|
182
|
+
followthemoney-3.7.0.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
|
|
183
|
+
followthemoney-3.7.0.dist-info/entry_points.txt,sha256=wpgi-5-jyqCy-yw0eYZbnhBuPja_q3RJmiEl7NymXtQ,593
|
|
184
|
+
followthemoney-3.7.0.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
185
|
+
followthemoney-3.7.0.dist-info/top_level.txt,sha256=O33_kGPehy6-69B_k01UgMK55_JOhwqe2de7ND23b-Y,21
|
|
186
|
+
followthemoney-3.7.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|