followthemoney 4.1.2__py3-none-any.whl → 4.2.0__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.

@@ -9,7 +9,7 @@ from followthemoney.statement import Statement, StatementEntity, SE
9
9
  from followthemoney.dataset import Dataset, DefaultDataset, DS
10
10
  from followthemoney.util import set_model_locale
11
11
 
12
- __version__ = "4.1.2"
12
+ __version__ = "4.2.0"
13
13
 
14
14
  # Data model singleton
15
15
  model = Model.instance()
followthemoney/entity.py CHANGED
@@ -20,6 +20,21 @@ class ValueEntity(EntityProxy):
20
20
  applications should use this entity class as the base class.
21
21
  """
22
22
 
23
+ __slots__ = [
24
+ "schema",
25
+ "id",
26
+ "key_prefix",
27
+ "context",
28
+ "_properties",
29
+ "_size",
30
+ "_caption",
31
+ "datasets",
32
+ "referents",
33
+ "first_seen",
34
+ "last_seen",
35
+ "last_change",
36
+ ]
37
+
23
38
  def __init__(
24
39
  self,
25
40
  schema: Schema,
followthemoney/helpers.py CHANGED
@@ -7,7 +7,7 @@
7
7
  # probably be the first place to break.
8
8
  from os.path import splitext
9
9
  from typing import Iterable, List, Optional, Set
10
- from normality import safe_filename
10
+ from normality import safe_filename, squash_spaces
11
11
  from mimetypes import guess_extension
12
12
  from itertools import product
13
13
  from datetime import datetime, timedelta
@@ -148,23 +148,21 @@ def inline_names(entity: E, related: E) -> None:
148
148
 
149
149
 
150
150
  def combine_names(entity: E) -> E:
151
- """This function will try to build names from name parts provided as part
152
- of a person entity. This is of course impossible to do culturally correctly
153
- for the whole planet at once, so it should be mostly used for internal-facing
154
- (e.g. matching) processes."""
151
+ """Build a full names from name parts of a Person entity and add them as aliases.
152
+
153
+ This is of course impossible to do culturally correctly for the whole planet at
154
+ once, so it should be mostly used for internal-facing (e.g. matching) processes."""
155
155
  if entity.schema.is_a("Person"):
156
156
  first_names = entity.get("firstName")
157
- second_names = entity.get("secondName")
158
- second_names.append("")
159
- middle_names = entity.get("middleName")
160
- middle_names.append("")
161
- father_names = entity.get("fatherName")
162
- father_names.append("")
157
+ second_names = entity.get("secondName") + [""]
158
+ middle_names = entity.get("middleName") + [""]
159
+ father_names = entity.get("fatherName") + [""]
160
+ mother_names = entity.get("motherName") + [""]
163
161
  last_names = entity.get("lastName")
164
- for (first, second, middle, father, last) in product(
165
- first_names, second_names, middle_names, father_names, last_names
162
+ for (first, second, middle, father, mother, last) in product(
163
+ first_names, second_names, middle_names, father_names, mother_names, last_names
166
164
  ):
167
- name = join_text(first, second, middle, father, last)
165
+ name = squash_spaces(" ".join([first, second, middle, father, mother, last]))
168
166
  if name is not None:
169
167
  entity.add("alias", name)
170
168
 
@@ -0,0 +1,43 @@
1
+ Risk:
2
+ label: Risk
3
+ plural: Risks
4
+ description: "A risk associated with an entity"
5
+ extends:
6
+ - Interval
7
+ matchable: false
8
+ featured:
9
+ - entity
10
+ - country
11
+ - reason
12
+ - status
13
+ - startDate
14
+ required:
15
+ - entity
16
+ caption:
17
+ - reason
18
+ - status
19
+ properties:
20
+ entity:
21
+ label: "Entity"
22
+ reverse:
23
+ name: risks
24
+ label: "Risks"
25
+ type: entity
26
+ range: Thing
27
+ topics:
28
+ label: Topics
29
+ type: topic
30
+ status:
31
+ label: "Status"
32
+ duration:
33
+ label: "Duration"
34
+ type: number
35
+ reason:
36
+ label: "Reason"
37
+ type: text
38
+ country:
39
+ label: "Country"
40
+ type: country
41
+ listingDate:
42
+ label: "Listing date"
43
+ type: date
@@ -38,6 +38,9 @@ Vessel:
38
38
  grossRegisteredTonnage:
39
39
  label: Gross Registered Tonnage
40
40
  type: number
41
+ deadweightTonnage:
42
+ label: Deadweight Tonnage
43
+ type: number
41
44
  nameChangeDate:
42
45
  label: Date of Name Change
43
46
  type: date
@@ -55,10 +55,14 @@ class TopicType(EnumType):
55
55
  "gov.judicial": _("Judicial branch of government"),
56
56
  "gov.security": _("Security services"),
57
57
  "gov.financial": _("Central banking and financial integrity"),
58
+ "gov.religion": _("Religious leadership"),
58
59
  "fin": _("Financial services"),
59
60
  "fin.bank": _("Bank"),
60
61
  "fin.fund": _("Fund"),
61
62
  "fin.adivsor": _("Financial advisor"),
63
+ "mare.detained": _("Maritime detention"),
64
+ "mare.shadow": _("Shadow fleet"),
65
+ "mare.sts": _("Ship-to-ship transfer"),
62
66
  "reg.action": _("Regulator action"),
63
67
  "reg.warn": _("Regulator warning"),
64
68
  "role.pep": _("Politician"),
@@ -87,5 +91,33 @@ class TopicType(EnumType):
87
91
  "poi": _("Person of interest"),
88
92
  }
89
93
 
94
+ RISKS = {
95
+ "corp.disqual",
96
+ "crime.boss",
97
+ "crime.fin",
98
+ "crime.fraud",
99
+ "crime.terror",
100
+ "crime.theft",
101
+ "crime.traffick",
102
+ "crime.war",
103
+ "crime",
104
+ "debarment",
105
+ "export.control",
106
+ "export.risk",
107
+ "poi",
108
+ "mare.detained",
109
+ "mare.shadow",
110
+ "reg.action",
111
+ "reg.warn",
112
+ "role.oligarch",
113
+ "role.pep",
114
+ "role.rca",
115
+ "sanction.counter",
116
+ "sanction.linked",
117
+ "sanction",
118
+ "wanted",
119
+ }
120
+ """A set of topics that imply a counterparty risk in business dealings."""
121
+
90
122
  def _locale_names(self, locale: Locale) -> EnumValues:
91
123
  return {k: gettext(v) for (k, v) in self._TOPICS.items()}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: followthemoney
3
- Version: 4.1.2
3
+ Version: 4.2.0
4
4
  Summary: A data model for anti corruption data modeling and analysis.
5
5
  Project-URL: Documentation, https://followthemoney.tech/
6
6
  Project-URL: Repository, https://github.com/opensanctions/followthemoney.git
@@ -1,9 +1,9 @@
1
- followthemoney/__init__.py,sha256=1G8YlnRJL9_8pMYDUPl29Njf33pRdmat6kmg2elXBbs,856
1
+ followthemoney/__init__.py,sha256=NqtJnba71wycGIhiZrBIfOYbafL_Tm_Qd0ouNm2EYPA,856
2
2
  followthemoney/compare.py,sha256=bZlnj2VMoe67q4Lyq_VwS1a-EJnEK1kC8prbs8jyL9E,5774
3
- followthemoney/entity.py,sha256=hHY9yysn_iFTtXqcHg4hHhYfmgLw4prWul8rD1X82Y0,3184
3
+ followthemoney/entity.py,sha256=bBiX7hNquXemS3vYCUHKtWI_IqX43Z6i8RQDbZ7gXsg,3449
4
4
  followthemoney/exc.py,sha256=GyMgwY4QVm87hLevDfV7gM1MJsDqfNCi_UQw7F_A8X8,858
5
5
  followthemoney/graph.py,sha256=7X1CGHGvmktS2LSZqld2iXWzG7B831eCNYyBqamqEJ8,10921
6
- followthemoney/helpers.py,sha256=Btb6BlHg_c-qCXZo-NP_LURKG-qu-QD3Fj1ev_c7Xic,7956
6
+ followthemoney/helpers.py,sha256=EsneNJ5DZXHTPUYfXLxGESphsPwCtGiWv-71vvVBWus,7982
7
7
  followthemoney/messages.py,sha256=zUEa9CFecU8nRafIzhN6TKCh1kEihiIyIS1qr8PxY4g,806
8
8
  followthemoney/model.py,sha256=bWFVNa-DhYzc8BdSXBZdG2ev6Nh9uHx6i4tin8DvEEU,7374
9
9
  followthemoney/names.py,sha256=LODQqExKEHdH4z6Mmbhlm0KeKRzGcptaSWzYXZ7lONI,1120
@@ -97,6 +97,7 @@ followthemoney/schema/ProjectParticipant.yaml,sha256=xNehEu90uqUfboNouezhZQ8ZQLx
97
97
  followthemoney/schema/PublicBody.yaml,sha256=BNfLBqH1OapoEninAjWmqZx_n-G5QUnzzydW7300TiY,301
98
98
  followthemoney/schema/RealEstate.yaml,sha256=NWFHXqEHskYQN-kvQESZpu74nztShqoYSZEjZAr-DHM,1363
99
99
  followthemoney/schema/Representation.yaml,sha256=sCvFnUDQaElq2cqSB0rILcMYb2gaMZqlzxlHxyX9IGg,792
100
+ followthemoney/schema/Risk.yaml,sha256=2BRVBqb6wiLHxb_V50P-YMAOhjC64UVHDyh5PASpCIA,728
100
101
  followthemoney/schema/Sanction.yaml,sha256=-3_NrTp1KPSsSMkttFzwo81zFKplx15w-9EmwPnE8-o,1278
101
102
  followthemoney/schema/Security.yaml,sha256=w8Och0cslWjHPAs60HZ6JarEXdIbqGlIbN1NlvgN_7Y,1212
102
103
  followthemoney/schema/Similar.yaml,sha256=gD8rZEaPQWzU-rEfsKdn62uEucF3KxYBcPMoSdnxvME,817
@@ -109,7 +110,7 @@ followthemoney/schema/UnknownLink.yaml,sha256=lneS_HZNgeLyJxwzWnLx0ZoyY3MXt99I_K
109
110
  followthemoney/schema/UserAccount.yaml,sha256=2bbPKNtt1R3zWSSkaq_SVzRPfFzX74kAxwtIxTymHA8,840
110
111
  followthemoney/schema/Value.yaml,sha256=cNHTCtakMTXDW0Qpb6ArZodi9rMJ-Ebvp1WsOIRRzw4,310
111
112
  followthemoney/schema/Vehicle.yaml,sha256=Ypl4A5HJFOZfZh3DK0ewN-hyJuCMcovR0mPNddIZrOA,1051
112
- followthemoney/schema/Vessel.yaml,sha256=nFaUJ_0BzFJstvog1iDvwV9DHKHr9ky4DLb1NZGGh1E,1096
113
+ followthemoney/schema/Vessel.yaml,sha256=zWHUfSK8g6Pz58ZyCaK0AFJ4u_UHjEIUGC4c_7oS11Y,1170
113
114
  followthemoney/schema/Video.yaml,sha256=LY3DYMWTHXiAhL0hxBCNCz50cp2sPbUlEhhig5Fbjos,327
114
115
  followthemoney/schema/Workbook.yaml,sha256=iikWPElz4klA7SkWH7eae6xqhbkMCIP_3zdeXzFEMU0,354
115
116
  followthemoney/statement/__init__.py,sha256=7m2VUCAuqNZXIY0WFJRFkw5UG14QuxATL4f_xbqKwhw,633
@@ -158,10 +159,10 @@ followthemoney/types/name.py,sha256=ZWGDebv01qByh_yBYOVoS3Edlm3_JVPShQMklKc6ZOA,
158
159
  followthemoney/types/number.py,sha256=OdVuHDd4IYIIHhx_317JKeMjBAGtsJ2TAcxoZKZ4MkY,3948
159
160
  followthemoney/types/phone.py,sha256=r8uRqWinS0CYnYBTs405k5gO4jeatUDgjdzzijoMKJE,3811
160
161
  followthemoney/types/string.py,sha256=fqyTauAm4mNnNaoH-yH087RBbNh-G5ZZUO3awTGQUUg,1230
161
- followthemoney/types/topic.py,sha256=CS5IoI8gm4MSVxfV6K4mGd20_tT1SaKMkcOt_ObSsAg,3678
162
+ followthemoney/types/topic.py,sha256=Mi0Gx0m3bDeTmyuvM6jdRMqv81O03U4eI99R13KGu2Y,4503
162
163
  followthemoney/types/url.py,sha256=QFpS_JIV8unFHuh_uGv22SWUUkocBoOpzLsAJWom_gI,1455
163
- followthemoney-4.1.2.dist-info/METADATA,sha256=Hy34w4IjkrPyJ2O0nPRhUcamZ3oiN7h_kbGYdyIUnnI,6748
164
- followthemoney-4.1.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
165
- followthemoney-4.1.2.dist-info/entry_points.txt,sha256=caoFTlf213jhg5sz3TNSofutjUTzaKtWATuSIdd9Cps,653
166
- followthemoney-4.1.2.dist-info/licenses/LICENSE,sha256=H6_EVXisnJC0-18CjXIaqrBSFq_VH3OnS7u3dccOv6g,1148
167
- followthemoney-4.1.2.dist-info/RECORD,,
164
+ followthemoney-4.2.0.dist-info/METADATA,sha256=I1JXOtpniNIMi2jPoM1Vpx_IaYezqCP8l9e3qhldGtc,6748
165
+ followthemoney-4.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
166
+ followthemoney-4.2.0.dist-info/entry_points.txt,sha256=caoFTlf213jhg5sz3TNSofutjUTzaKtWATuSIdd9Cps,653
167
+ followthemoney-4.2.0.dist-info/licenses/LICENSE,sha256=H6_EVXisnJC0-18CjXIaqrBSFq_VH3OnS7u3dccOv6g,1148
168
+ followthemoney-4.2.0.dist-info/RECORD,,