followthemoney 3.7.0__py2.py3-none-any.whl → 3.7.2__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.

Potentially problematic release.


This version of followthemoney might be problematic. Click here for more details.

@@ -3,7 +3,7 @@ import os
3
3
  from followthemoney.model import Model
4
4
  from followthemoney.util import set_model_locale
5
5
 
6
- __version__ = "3.7.0"
6
+ __version__ = "3.7.2"
7
7
 
8
8
 
9
9
  model_path = os.path.dirname(__file__)
@@ -24,6 +24,7 @@ class PropertyDict(TypedDict, total=False):
24
24
  hidden: Optional[bool]
25
25
  matchable: Optional[bool]
26
26
  deprecated: Optional[bool]
27
+ maxLength: Optional[int]
27
28
  # stub: Optional[bool]
28
29
  rdf: Optional[str]
29
30
  range: Optional[str]
@@ -58,6 +59,7 @@ class Property:
58
59
  "type",
59
60
  "matchable",
60
61
  "deprecated",
62
+ "max_length",
61
63
  "_range",
62
64
  "format",
63
65
  "range",
@@ -109,6 +111,9 @@ class Property:
109
111
  else:
110
112
  self.matchable = self.type.matchable
111
113
 
114
+ #: The maximum length of the property value.
115
+ self.max_length = int(data.get("maxLength") or self.type.max_length)
116
+
112
117
  #: If the property is of type ``entity``, the set of valid schema to be added
113
118
  #: in this property can be constrained. For example, an asset can be owned,
114
119
  #: but a person cannot be owned.
@@ -197,6 +202,7 @@ class Property:
197
202
  "qname": self.qname,
198
203
  "label": self.label,
199
204
  "type": self.type.name,
205
+ "maxLength": self.max_length,
200
206
  }
201
207
  if self.description:
202
208
  data["description"] = self.description
@@ -54,6 +54,7 @@ Address:
54
54
  postalCode:
55
55
  label: "Postal code"
56
56
  description: "Zip code or postcode."
57
+ maxLength: 16
57
58
  region:
58
59
  label: "Region"
59
60
  description: "Also province or area."
@@ -27,15 +27,18 @@ BankAccount:
27
27
  accountNumber:
28
28
  label: Account number
29
29
  type: identifier
30
+ maxLength: 64
30
31
  iban:
31
32
  label: IBAN
32
33
  # type: identifier
33
34
  # format: iban
34
35
  type: iban
36
+ maxLength: 64
35
37
  bic:
36
38
  label: Bank Identifier Code
37
39
  type: identifier
38
40
  format: bic
41
+ maxLength: 16
39
42
  bank:
40
43
  label: Bank
41
44
  type: entity
@@ -31,6 +31,7 @@ Company:
31
31
  label: "VOEN"
32
32
  description: "Azerbaijan taxpayer ID"
33
33
  type: identifier
34
+ maxLength: 32
34
35
  coatoCode:
35
36
  label: "COATO / SOATO / OKATO"
36
37
  type: identifier
@@ -103,10 +104,7 @@ Company:
103
104
  ticker:
104
105
  label: Stock ticker symbol
105
106
  type: identifier
106
- permId:
107
- label: PermID
108
- description: LSEG/Refinitiv code for a company
109
- type: identifier
110
107
  ricCode:
111
108
  label: Reuters Instrument Code
112
109
  type: identifier
110
+ maxLength: 16
@@ -23,6 +23,7 @@ CryptoWallet:
23
23
  label: Address
24
24
  description: Public key used to identify the wallet
25
25
  type: identifier
26
+ maxLength: 128
26
27
  privateKey:
27
28
  label: Private key
28
29
  creationDate:
@@ -35,5 +35,6 @@ Identification:
35
35
  number:
36
36
  label: "Document number"
37
37
  type: identifier
38
+ maxLength: 64
38
39
  authority:
39
40
  label: "Authority"
@@ -82,6 +82,7 @@ LegalEntity:
82
82
  label: "V.A.T. Identifier"
83
83
  description: "(EU) VAT number"
84
84
  type: identifier
85
+ maxLength: 32
85
86
  jurisdiction:
86
87
  label: Jurisdiction
87
88
  type: country
@@ -109,30 +110,36 @@ LegalEntity:
109
110
  description: "Russian company ID"
110
111
  type: identifier
111
112
  # format: inn
113
+ maxLength: 32
112
114
  ogrnCode:
113
115
  label: "OGRN"
114
116
  description: "Major State Registration Number"
115
117
  type: identifier
116
118
  # format: ogrn
119
+ maxLength: 32
117
120
  leiCode:
118
121
  # cf. https://www.gleif.org/en/about-lei/introducing-the-legal-entity-identifier-lei
119
122
  label: "LEI"
120
123
  description: "Legal Entity Identifier"
121
124
  type: identifier
122
125
  format: lei
126
+ maxLength: 32
123
127
  dunsCode:
124
128
  label: "DUNS"
125
129
  description: "Data Universal Numbering System - Dun & Bradstreet identifier"
126
130
  type: identifier
131
+ maxLength: 32
127
132
  npiCode:
128
133
  label: "NPI"
129
134
  description: "National Provider Identifier"
130
135
  type: identifier
136
+ maxLength: 32
131
137
  swiftBic:
132
138
  label: "SWIFT/BIC"
133
139
  description: "Bank identifier code"
134
140
  type: identifier
135
141
  format: bic
142
+ maxLength: 16
136
143
  parent:
137
144
  label: "Parent company"
138
145
  description: "If this entity is a subsidiary, another entity (company or organisation) is its parent"
@@ -22,3 +22,8 @@ Organization:
22
22
  label: CAGE
23
23
  description: Commercial and Government Entity Code (CAGE)
24
24
  type: identifier
25
+ permId:
26
+ label: PermID
27
+ description: LSEG/Refinitiv code for a company
28
+ type: identifier
29
+ maxLength: 16
@@ -31,6 +31,7 @@ Sanction:
31
31
  unscId:
32
32
  label: "UN SC identifier"
33
33
  type: identifier
34
+ maxLength: 16
34
35
  program:
35
36
  label: "Program"
36
37
  provisions:
@@ -25,6 +25,7 @@ Security:
25
25
  description: International Securities Identification Number
26
26
  type: identifier
27
27
  format: isin
28
+ maxLength: 16
28
29
  registrationNumber:
29
30
  label: Registration number
30
31
  type: identifier
@@ -35,6 +36,7 @@ Security:
35
36
  label: Financial Instrument Global Identifier
36
37
  type: identifier
37
38
  format: figi
39
+ maxLength: 16
38
40
  issuer:
39
41
  label: "Issuer"
40
42
  type: entity
@@ -58,6 +58,7 @@ Thing:
58
58
  label: Wikidata ID
59
59
  type: identifier
60
60
  format: qid
61
+ maxLength: 32
61
62
  keywords:
62
63
  label: Keywords
63
64
  topics:
@@ -20,6 +20,7 @@ Vessel:
20
20
  imoNumber:
21
21
  label: IMO Number
22
22
  type: identifier
23
+ maxLength: 16
23
24
  crsNumber:
24
25
  label: CRS Number
25
26
  type: identifier
@@ -50,3 +51,4 @@ Vessel:
50
51
  mmsi:
51
52
  label: MMSI
52
53
  type: identifier
54
+ maxLength: 16
@@ -19,7 +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
+ maxLength: int
23
23
  group: Optional[str]
24
24
  matchable: Optional[bool]
25
25
  pivot: Optional[bool]
@@ -198,7 +198,7 @@ class PropertyType(object):
198
198
  "label": gettext(self.label),
199
199
  "plural": gettext(self.plural),
200
200
  "description": gettext(self.docs),
201
- "max_length": self.max_length,
201
+ "maxLength": self.max_length,
202
202
  }
203
203
  if self.group:
204
204
  data["group"] = self.group
@@ -51,6 +51,7 @@ class CountryType(EnumType):
51
51
  "gb-sct": gettext("Scotland"),
52
52
  "gb-nir": gettext("Northern Ireland"),
53
53
  "md-pmr": gettext("Transnistria (PMR)"),
54
+ "pk-km": gettext("Kashmir"),
54
55
  }
55
56
  for code, label in locale.territories.items():
56
57
  code = code.lower()
@@ -53,7 +53,11 @@ class NameType(PropertyType):
53
53
  right_clean = clean_name_light(right)
54
54
  if left_clean is None or right_clean is None:
55
55
  return 0.0
56
- return levenshtein_similarity(left_clean, right_clean)
56
+ return levenshtein_similarity(
57
+ left_clean,
58
+ right_clean,
59
+ max_length=self.max_length,
60
+ )
57
61
 
58
62
  def node_id(self, value: str) -> Optional[str]:
59
63
  slug = slugify(value)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: followthemoney
3
- Version: 3.7.0
3
+ Version: 3.7.2
4
4
  Home-page: https://followthemoney.tech/
5
5
  Author: Organized Crime and Corruption Reporting Project
6
6
  Author-email: data@occrp.org
@@ -16,7 +16,7 @@ Requires-Dist: pyyaml<7.0.0,>=5.0.0
16
16
  Requires-Dist: types-PyYAML
17
17
  Requires-Dist: sqlalchemy2-stubs
18
18
  Requires-Dist: banal<1.1.0,>=1.0.6
19
- Requires-Dist: rigour<1.0.0,>=0.5.1
19
+ Requires-Dist: rigour<1.0.0,>=0.6.1
20
20
  Requires-Dist: click<9.0.0,>=8.0
21
21
  Requires-Dist: stringcase<2.0.0,>=1.2.0
22
22
  Requires-Dist: requests<3.0.0,>=2.21.0
@@ -1,4 +1,4 @@
1
- followthemoney/__init__.py,sha256=Hnq1LeCowKt0gvygwvBnqun2pcEb7tSjE5UmGevjQis,360
1
+ followthemoney/__init__.py,sha256=j71b8INufSaUfw3iOCVQKZJPHXgexDz8552rHLIPCEw,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
@@ -8,7 +8,7 @@ followthemoney/model.py,sha256=p4Bk0XPi9z7SKZVgG1FqeM2i45xwAlDIkHwyyUcDKk0,6426
8
8
  followthemoney/namespace.py,sha256=qYplxKn5OO3zDMf3NItKwTwDsJOnski5JbeyhssqhR8,4434
9
9
  followthemoney/offshore.py,sha256=Pf0tx-7GyhIZRueshDRqPNlxkHfGstmW5yNDID5Mnws,1060
10
10
  followthemoney/ontology.py,sha256=7PEoUKISNpkRvVhuLeE3IE9ZiNtdR8mn9_kzZ9yF9l0,2986
11
- followthemoney/property.py,sha256=EXU4kH6rOD9ubmuDXE-3LGc6gwQspW9_NjSacDb4xYA,7494
11
+ followthemoney/property.py,sha256=zi9ss1v0e8Wmv-FuLtZd2aod5iTLfBekBxuOTgIOUMU,7718
12
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
@@ -35,7 +35,7 @@ followthemoney/mapping/property.py,sha256=41V16HJh6da7oKdSJWyRcyMkx2XFd6iDm9-4PH
35
35
  followthemoney/mapping/query.py,sha256=8M6bOlEX2p_bbVwEwTu_1slEtU0cfRJB7ajZp-F07CE,2622
36
36
  followthemoney/mapping/source.py,sha256=sri-XpSjeHZbQtqNcz1eJYvwVSBNqGO5JwhWswiEx3c,649
37
37
  followthemoney/mapping/sql.py,sha256=m3Ho8B2pFsg6q2zj-y55h0O3x9eb6wzjlPBQyZ6DVcI,4752
38
- followthemoney/schema/Address.yaml,sha256=xCKyak0qdJC0W5jfROUq6pEMCcSupNSB6GAxx5QfN5E,1689
38
+ followthemoney/schema/Address.yaml,sha256=9cPZfkNiV-5fNfSzBFcE_dwD0V2_WLpGSLT6kL8GbuQ,1709
39
39
  followthemoney/schema/Airplane.yaml,sha256=NUXQk_Yg9RWyhdeI3s00k9GWHBV2S9-QvIhM22LedBE,579
40
40
  followthemoney/schema/Analyzable.yaml,sha256=WvyhjYqI7QzBt3qPDgO7MDasJH1qQtgQMToHkV_xtlU,1237
41
41
  followthemoney/schema/Article.yaml,sha256=jTH63eP2aZ87W_6m8jS4R_btcrI46tYGeCEqKNLTwLU,266
@@ -43,15 +43,15 @@ 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=YRfuqgB1W82sgBNGxJ_fj0X9fVa6vTnxJhhNqop7a6Y,1392
46
+ followthemoney/schema/BankAccount.yaml,sha256=Pvw9FxJYwwnJMoo3IblyPki9VRjLsM4F30jzKZWv9dE,1452
47
47
  followthemoney/schema/Call.yaml,sha256=kbVCnVxucBrEplxehXHThLSJAJjy_GhWan-IeZZjr0M,980
48
48
  followthemoney/schema/CallForTenders.yaml,sha256=2IWonTzfSbrkynMoEWqv5fekUeFM_xDKpKIbRe1XDbo,3227
49
- followthemoney/schema/Company.yaml,sha256=7dWBPetd7xOJtu8AlhKsjxBYzYBK5E3LssYguSf0glA,3321
49
+ followthemoney/schema/Company.yaml,sha256=s0zAckdj0b2Ht1I7dT101NE4NpBquJKLYfwuAseYJaE,3253
50
50
  followthemoney/schema/Contract.yaml,sha256=-wVVUBu_KvmiWEjXrw1zgY2m9AAkiHCDd-hxFCUzj6k,1586
51
51
  followthemoney/schema/ContractAward.yaml,sha256=b2spaZHYCaP1yR1RCsrI7mUjk-fAF7BUE3dc8Vl3cUQ,1689
52
52
  followthemoney/schema/CourtCase.yaml,sha256=lcovnY0Ne_xcggvkqfCW_RHvsRKo8kFTCPCyovAXRtI,599
53
53
  followthemoney/schema/CourtCaseParty.yaml,sha256=MpodN2251V_MYD2dBOHZ_qD7Uv6cLg8Gd_b-I8HZjPI,588
54
- followthemoney/schema/CryptoWallet.yaml,sha256=n5EDKc7IhITdXX3gJJEdCcLJjdcpB0owCc8rTy9ryfQ,1047
54
+ followthemoney/schema/CryptoWallet.yaml,sha256=1Akp0Bzd_x_0GgsUOxW0zkvNDozoMP_8fJyrSn0dAy4,1068
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
@@ -63,18 +63,18 @@ followthemoney/schema/Event.yaml,sha256=NclU-s8puxBk-KlJuz3EF1dqM99d5DCwD_xFh-TX
63
63
  followthemoney/schema/Family.yaml,sha256=cgZ7ZM_2p_dzUGrLVj8QL86gpeDM-AoK8AbyHjh5b6E,983
64
64
  followthemoney/schema/Folder.yaml,sha256=W12iJHTYua7bF7oTpgiDbarEkfa0Q2gSmfLdl537HQY,180
65
65
  followthemoney/schema/HyperText.yaml,sha256=Wg5dWeLrVjbXiI-ao69tosJ7rI0DvNU8cCo8AhUXwh4,319
66
- followthemoney/schema/Identification.yaml,sha256=hFS4Ukbgj7zgLCGldYkefUZyuMS0lWw1X9Q5l0QyiJ8,833
66
+ followthemoney/schema/Identification.yaml,sha256=6txjZs6-3Kn94c3G4tDeDt9Jb4FW55-xjSnYVrvmiEA,853
67
67
  followthemoney/schema/Image.yaml,sha256=wuznboWECGiV96_GQiXq1-oKNoxO8zKisR4xyusnEn8,394
68
68
  followthemoney/schema/Interest.yaml,sha256=VUrehmsN1WgtS1oAa5jn_JGtSkZGGYLGNahp-R5JhOQ,282
69
69
  followthemoney/schema/Interval.yaml,sha256=WtmSoBngajhpNLtDZ8Ocpdd0I0tLG-7A4afuHXxssow,1919
70
- followthemoney/schema/LegalEntity.yaml,sha256=n47_jL3HBD11-4HNT47W7JC6-3B65YaBxp3cusPrVco,3787
70
+ followthemoney/schema/LegalEntity.yaml,sha256=uHwkJAVjhQnRm4yNEq6Z-V_f5a-prQmaEYyx30svajE,3927
71
71
  followthemoney/schema/License.yaml,sha256=9Ye5vGEBhi7ttGqf0DdAGCJCN3zz5HtGu52dCcmCsQk,452
72
72
  followthemoney/schema/Membership.yaml,sha256=IPmaOX4Ai2r4sGcA5ig2WmLvWHb38akdxp4smEdDWOE,710
73
73
  followthemoney/schema/Mention.yaml,sha256=nBeulR_Jm4x75aJ7yNF0TAVhHJqXQaEzOutLIn_YU-4,1086
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=AxASyXY18xGXO9FmAwIrARoRy8OxxRPUXlbUqch7Vi4,562
77
+ followthemoney/schema/Organization.yaml,sha256=cy8Fu4R1ZE3qSfYlr9tHz600ymB67CnsCHQYffFAAqY,690
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
@@ -90,19 +90,19 @@ followthemoney/schema/ProjectParticipant.yaml,sha256=xNehEu90uqUfboNouezhZQ8ZQLx
90
90
  followthemoney/schema/PublicBody.yaml,sha256=BNfLBqH1OapoEninAjWmqZx_n-G5QUnzzydW7300TiY,301
91
91
  followthemoney/schema/RealEstate.yaml,sha256=NWFHXqEHskYQN-kvQESZpu74nztShqoYSZEjZAr-DHM,1363
92
92
  followthemoney/schema/Representation.yaml,sha256=sCvFnUDQaElq2cqSB0rILcMYb2gaMZqlzxlHxyX9IGg,792
93
- followthemoney/schema/Sanction.yaml,sha256=dic-leERQ1ix3MMRqy-_01wQH-7FR1uK5TUe9vyM1hQ,937
94
- followthemoney/schema/Security.yaml,sha256=dTEeGFxCQu6W17Yh-p0ZeRccj9tnosAnVwFrMDPW9T4,1126
93
+ followthemoney/schema/Sanction.yaml,sha256=bYxbdUvxxi6ZtLUkBN0uMnokzncxrvdTcYV2VQcMl8s,957
94
+ followthemoney/schema/Security.yaml,sha256=X-WrnI5OMizLu52OCX6cJm-JTbr_fg4KussYOvTsylw,1166
95
95
  followthemoney/schema/Similar.yaml,sha256=gD8rZEaPQWzU-rEfsKdn62uEucF3KxYBcPMoSdnxvME,817
96
96
  followthemoney/schema/Succession.yaml,sha256=RMJQqZ4Fv88N1RvWTAgjYg9BB5cELSj5CCAjM681Fpg,749
97
97
  followthemoney/schema/Table.yaml,sha256=GcsIAgSO9t2tvObA9zU2HhxlSqTe9CePmUnagu1Z0vI,641
98
98
  followthemoney/schema/TaxRoll.yaml,sha256=ugMzaaS7uyq2OLD50eGLcfvd6Cg0cSt65-T9GVqpRSA,746
99
- followthemoney/schema/Thing.yaml,sha256=72gInrI4VEWxUcld7w4by1QPI46F-NR8QZJ09JyUcnc,2438
99
+ followthemoney/schema/Thing.yaml,sha256=PeseDMTO8rDzoTrxRjL9efyJQ0_lGgRQRTzwLu5OwiU,2458
100
100
  followthemoney/schema/Trip.yaml,sha256=nLQD_ApmVJ8D56Czl7K700hhNZjzFV9FOQ3NBSQDLiM,771
101
101
  followthemoney/schema/UnknownLink.yaml,sha256=lneS_HZNgeLyJxwzWnLx0ZoyY3MXt99I_K2X_o9z5g8,682
102
102
  followthemoney/schema/UserAccount.yaml,sha256=V1JWwwcggCO4G9ByJY9zlQ0uOVp8HQK2mRXwqaGJnBM,763
103
103
  followthemoney/schema/Value.yaml,sha256=cNHTCtakMTXDW0Qpb6ArZodi9rMJ-Ebvp1WsOIRRzw4,310
104
104
  followthemoney/schema/Vehicle.yaml,sha256=WyjfHL7XxEQQ1h0IyOBYKAZ40BEghQaM7_mkFnWyVBg,990
105
- followthemoney/schema/Vessel.yaml,sha256=dOfWw9HC00xhdGJYSCBg3zr9rJQl6_hvkWM916qGgMw,999
105
+ followthemoney/schema/Vessel.yaml,sha256=k6_EofFv_hW8TkgVE2wQ5AKA7QH7dk6b1ghuVb6T3Yg,1039
106
106
  followthemoney/schema/Video.yaml,sha256=LY3DYMWTHXiAhL0hxBCNCz50cp2sPbUlEhhig5Fbjos,327
107
107
  followthemoney/schema/Workbook.yaml,sha256=iikWPElz4klA7SkWH7eae6xqhbkMCIP_3zdeXzFEMU0,354
108
108
  followthemoney/translations/messages.pot,sha256=P3zcZ-gJhBi8Db7XjaSijhvFhZAInhpcwsA1Vlwjuzg,106899
@@ -131,8 +131,8 @@ followthemoney/translations/tr/LC_MESSAGES/followthemoney.po,sha256=AZC3marhtVVq
131
131
  followthemoney/types/__init__.py,sha256=X9XeM6JktzirAw5gGkyDKGM70NuiJ9Tbjoq0IwVclxU,1745
132
132
  followthemoney/types/address.py,sha256=P6ctzojJks70RZIwk5Bhc9djxejZo4Te0m5pQ9M7bAM,1651
133
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
134
+ followthemoney/types/common.py,sha256=Yk-7LZ6uDgFzKXUZxQ_j5miN2ZMnlBOziU0iFC7FE9I,10202
135
+ followthemoney/types/country.py,sha256=6kBq1xC4yJw--dRTVwBhse23U7eWTUOy2Wt7UWbDY2Q,3114
136
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
@@ -143,7 +143,7 @@ followthemoney/types/ip.py,sha256=BxGARP9JWEWvyRnr7A7xUNwmTxyFd9kwXSZrKR0TK2Q,14
143
143
  followthemoney/types/json.py,sha256=Hefwns1-ziJf310MWvdfX5ICkOgj9cnnMJuqq1e6qKY,1676
144
144
  followthemoney/types/language.py,sha256=gbOnrScpC8bOwlbygaMZa-mddoJonX3GPhCHg03i_0I,2632
145
145
  followthemoney/types/mimetype.py,sha256=EZ5hIdn-wosfLc-GjXDaOzevxaSXPbSPHDUJmPT1h0I,1355
146
- followthemoney/types/name.py,sha256=WsVVDIPJ0Hdlll3XvUgRHlpAbtUxu_p-yJmHaEH-4Gc,2093
146
+ followthemoney/types/name.py,sha256=bQha6rWEb8nP2KDCp1PEohJK-EQ1O4jkyEgB_HuOWlg,2168
147
147
  followthemoney/types/number.py,sha256=9l5v3hcAoJ4V6jaBS_-Kc1gtdJlQrY9L98ElC5e_PLQ,943
148
148
  followthemoney/types/phone.py,sha256=2YFbPBtMepvCWTdcxXq3Fq4AU8B4QYk1FARBpsH8xjs,4040
149
149
  followthemoney/types/registry.py,sha256=hvQ1oIWz_4PpyUnKA5azbaZCulNb5LCIPyC-AQYVVyw,1936
@@ -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.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,,
180
+ followthemoney-3.7.2.dist-info/LICENSE,sha256=Jln3uF70A9AQySyrP9JAW6sQTubLoKVQunvuJqISv7w,1098
181
+ followthemoney-3.7.2.dist-info/METADATA,sha256=ZBVzuF3SxtEvngTv644T1OiKCzosydRPOzyLdYB_J_A,4453
182
+ followthemoney-3.7.2.dist-info/WHEEL,sha256=fS9sRbCBHs7VFcwJLnLXN1MZRR0_TVTxvXKzOnaSFs8,110
183
+ followthemoney-3.7.2.dist-info/entry_points.txt,sha256=wpgi-5-jyqCy-yw0eYZbnhBuPja_q3RJmiEl7NymXtQ,593
184
+ followthemoney-3.7.2.dist-info/namespace_packages.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
185
+ followthemoney-3.7.2.dist-info/top_level.txt,sha256=O33_kGPehy6-69B_k01UgMK55_JOhwqe2de7ND23b-Y,21
186
+ followthemoney-3.7.2.dist-info/RECORD,,