ramifice 0.5.4__py3-none-any.whl → 0.5.5__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.
@@ -34,10 +34,14 @@ class UnitMixin:
34
34
  # Check the presence of a Model state.
35
35
  if model_state is None:
36
36
  raise PanicError("Error: Model State - Not found!")
37
+ # Get language list.
38
+ lang_list = translations.LANGUAGES
37
39
  # Get clean fields of Unit.
38
40
  unit_field: str = unit.field
39
41
  title = unit.title
40
- title = {lang: title.get(lang, "- -") for lang in translations.LANGUAGES}
42
+ if len(title) != len(lang_list):
43
+ raise PanicError("Unit.title => There are no translations for some languages!")
44
+ title = {lang: title[lang] for lang in lang_list}
41
45
  target_value = unit.value
42
46
  # Get dynamic field data.
43
47
  choices: list | None = model_state["data_dynamic_fields"][unit_field]
@@ -67,7 +67,7 @@ class ChoiceFloatDynField(Field, ChoiceGroup, JsonMixin):
67
67
  JsonMixin.__init__(self)
68
68
 
69
69
  self.value: float | None = None
70
- self.choices: dict[str, float] | None = None
70
+ self.choices: list[tuple[float, str]] | None = None
71
71
 
72
72
  def has_value(self, is_migrate: bool = False) -> bool:
73
73
  """Does the field value match the possible options in choices."""
@@ -78,6 +78,6 @@ class ChoiceFloatDynField(Field, ChoiceGroup, JsonMixin):
78
78
  choices = self.choices
79
79
  if not bool(choices):
80
80
  return False
81
- if value not in choices.values(): # type: ignore[union-attr]
81
+ if value not in [item[0] for item in choices]: # type: ignore[union-attr]
82
82
  return False
83
83
  return True
@@ -27,7 +27,7 @@ class ChoiceFloatField(Field, ChoiceGroup, JsonMixin):
27
27
  default: float | None = None,
28
28
  required: bool = False,
29
29
  readonly: bool = False,
30
- choices: dict[str, float] | None = None,
30
+ choices: list[tuple[float | int | str, str]] | None = None,
31
31
  ):
32
32
  Field.__init__(
33
33
  self,
@@ -52,8 +52,13 @@ class ChoiceFloatField(Field, ChoiceGroup, JsonMixin):
52
52
  self.choices = choices
53
53
 
54
54
  if globals.DEBUG:
55
- if choices is not None and not isinstance(choices, dict):
56
- raise AssertionError("Parameter `choices` - Not а `dict` type!")
55
+ if choices is not None:
56
+ if not isinstance(choices, list):
57
+ raise AssertionError("Parameter `choices` - Not а `list` type!")
58
+ if len(choices) == 0:
59
+ raise AssertionError(
60
+ "The `choices` parameter should not contain an empty list!"
61
+ )
57
62
  if default is not None and not isinstance(default, float):
58
63
  raise AssertionError("Parameter `default` - Not а `float` type!")
59
64
  if default is not None and choices is not None and not self.has_value():
@@ -89,6 +94,6 @@ class ChoiceFloatField(Field, ChoiceGroup, JsonMixin):
89
94
  choices = self.choices
90
95
  if not bool(choices):
91
96
  return False
92
- if value not in choices.values(): # type: ignore[union-attr]
97
+ if value not in [item[0] for item in choices]: # type: ignore[union-attr]
93
98
  return False
94
99
  return True
@@ -67,7 +67,7 @@ class ChoiceFloatMultDynField(Field, ChoiceGroup, JsonMixin):
67
67
  JsonMixin.__init__(self)
68
68
 
69
69
  self.value: list[float] | None = None
70
- self.choices: dict[str, float] | None = None
70
+ self.choices: list[tuple[float, str]] | None = None
71
71
 
72
72
  def has_value(self, is_migrate: bool = False) -> bool:
73
73
  """Does the field value match the possible options in choices."""
@@ -78,7 +78,7 @@ class ChoiceFloatMultDynField(Field, ChoiceGroup, JsonMixin):
78
78
  choices = self.choices
79
79
  if len(value) == 0 or not bool(choices):
80
80
  return False
81
- value_list = choices.values() # type: ignore[union-attr]
81
+ value_list = [item[0] for item in choices] # type: ignore[union-attr]
82
82
  for item in value:
83
83
  if item not in value_list:
84
84
  return False
@@ -27,7 +27,7 @@ class ChoiceFloatMultField(Field, ChoiceGroup, JsonMixin):
27
27
  default: list[float] | None = None,
28
28
  required: bool = False,
29
29
  readonly: bool = False,
30
- choices: dict[str, float] | None = None,
30
+ choices: list[tuple[float | int | str, str]] | None = None,
31
31
  ):
32
32
  Field.__init__(
33
33
  self,
@@ -54,8 +54,8 @@ class ChoiceFloatMultField(Field, ChoiceGroup, JsonMixin):
54
54
 
55
55
  if globals.DEBUG:
56
56
  if choices is not None:
57
- if not isinstance(choices, dict):
58
- raise AssertionError("Parameter `choices` - Not а `dict` type!")
57
+ if not isinstance(choices, list):
58
+ raise AssertionError("Parameter `choices` - Not а `list` type!")
59
59
  if len(choices) == 0:
60
60
  raise AssertionError(
61
61
  "The `choices` parameter should not contain an empty list!"
@@ -100,7 +100,7 @@ class ChoiceFloatMultField(Field, ChoiceGroup, JsonMixin):
100
100
  choices = self.choices
101
101
  if len(value) == 0 or not bool(choices):
102
102
  return False
103
- value_list = choices.values() # type: ignore[union-attr]
103
+ value_list = [item[0] for item in choices] # type: ignore[union-attr]
104
104
  for item in value:
105
105
  if item not in value_list:
106
106
  return False
@@ -67,7 +67,7 @@ class ChoiceIntDynField(Field, ChoiceGroup, JsonMixin):
67
67
  JsonMixin.__init__(self)
68
68
 
69
69
  self.value: int | None = None
70
- self.choices: dict[str, int] | None = None
70
+ self.choices: list[tuple[int, str]] | None = None
71
71
 
72
72
  def has_value(self, is_migrate: bool = False) -> bool:
73
73
  """Does the field value match the possible options in choices."""
@@ -78,6 +78,6 @@ class ChoiceIntDynField(Field, ChoiceGroup, JsonMixin):
78
78
  choices = self.choices
79
79
  if not bool(choices):
80
80
  return False
81
- if value not in choices.values(): # type: ignore[union-attr]
81
+ if value not in [item[0] for item in choices]: # type: ignore[union-attr]
82
82
  return False
83
83
  return True
@@ -27,7 +27,7 @@ class ChoiceIntField(Field, ChoiceGroup, JsonMixin):
27
27
  default: int | None = None,
28
28
  required: bool = False,
29
29
  readonly: bool = False,
30
- choices: dict[str, int] | None = None,
30
+ choices: list[tuple[int, str]] | None = None,
31
31
  ):
32
32
  Field.__init__(
33
33
  self,
@@ -52,8 +52,13 @@ class ChoiceIntField(Field, ChoiceGroup, JsonMixin):
52
52
  self.choices = choices
53
53
 
54
54
  if globals.DEBUG:
55
- if choices is not None and not isinstance(choices, dict):
56
- raise AssertionError("Parameter `choices` - Not а `dict` type!")
55
+ if choices is not None:
56
+ if not isinstance(choices, list):
57
+ raise AssertionError("Parameter `choices` - Not а `list` type!")
58
+ if len(choices) == 0:
59
+ raise AssertionError(
60
+ "The `choices` parameter should not contain an empty list!"
61
+ )
57
62
  if default is not None and not isinstance(default, int):
58
63
  raise AssertionError("Parameter `default` - Not а `str` type!")
59
64
  if default is not None and choices is not None and not self.has_value():
@@ -89,6 +94,6 @@ class ChoiceIntField(Field, ChoiceGroup, JsonMixin):
89
94
  choices = self.choices
90
95
  if not bool(choices):
91
96
  return False
92
- if value not in choices.values(): # type: ignore[union-attr]
97
+ if value not in [item[0] for item in choices]: # type: ignore[union-attr]
93
98
  return False
94
99
  return True
@@ -67,7 +67,7 @@ class ChoiceIntMultDynField(Field, ChoiceGroup, JsonMixin):
67
67
  JsonMixin.__init__(self)
68
68
 
69
69
  self.value: list[int] | None = None
70
- self.choices: dict[str, int] | None = None
70
+ self.choices: list[tuple[int, str]] | None = None
71
71
 
72
72
  def has_value(self, is_migrate: bool = False) -> bool:
73
73
  """Does the field value match the possible options in choices."""
@@ -78,7 +78,7 @@ class ChoiceIntMultDynField(Field, ChoiceGroup, JsonMixin):
78
78
  choices = self.choices
79
79
  if len(value) == 0 or not bool(choices):
80
80
  return False
81
- value_list = choices.values() # type: ignore[union-attr]
81
+ value_list = [item[0] for item in choices] # type: ignore[union-attr]
82
82
  for item in value:
83
83
  if item not in value_list:
84
84
  return False
@@ -27,7 +27,7 @@ class ChoiceIntMultField(Field, ChoiceGroup, JsonMixin):
27
27
  default: list[int] | None = None,
28
28
  required: bool = False,
29
29
  readonly: bool = False,
30
- choices: dict[str, int] | None = None,
30
+ choices: list[tuple[int, str]] | None = None,
31
31
  ):
32
32
  Field.__init__(
33
33
  self,
@@ -54,8 +54,8 @@ class ChoiceIntMultField(Field, ChoiceGroup, JsonMixin):
54
54
 
55
55
  if globals.DEBUG:
56
56
  if choices is not None:
57
- if not isinstance(choices, dict):
58
- raise AssertionError("Parameter `choices` - Not а `dict` type!")
57
+ if not isinstance(choices, list):
58
+ raise AssertionError("Parameter `choices` - Not а `list` type!")
59
59
  if len(choices) == 0:
60
60
  raise AssertionError(
61
61
  "The `choices` parameter should not contain an empty list!"
@@ -100,7 +100,7 @@ class ChoiceIntMultField(Field, ChoiceGroup, JsonMixin):
100
100
  choices = self.choices
101
101
  if len(value) == 0 or not bool(choices):
102
102
  return False
103
- value_list = choices.values() # type: ignore[union-attr]
103
+ value_list = [item[0] for item in choices] # type: ignore[union-attr]
104
104
  for item in value:
105
105
  if item not in value_list:
106
106
  return False
@@ -67,7 +67,7 @@ class ChoiceTextDynField(Field, ChoiceGroup, JsonMixin):
67
67
  JsonMixin.__init__(self)
68
68
 
69
69
  self.value: str | None = None
70
- self.choices: dict[str, str] | None = None
70
+ self.choices: list[tuple[str, str]] | None = None
71
71
 
72
72
  def has_value(self, is_migrate: bool = False) -> bool:
73
73
  """Does the field value match the possible options in choices."""
@@ -78,6 +78,6 @@ class ChoiceTextDynField(Field, ChoiceGroup, JsonMixin):
78
78
  choices = self.choices
79
79
  if not bool(choices):
80
80
  return False
81
- if value not in choices.values(): # type: ignore[union-attr]
81
+ if value not in [item[0] for item in choices]: # type: ignore[union-attr]
82
82
  return False
83
83
  return True
@@ -27,7 +27,7 @@ class ChoiceTextField(Field, ChoiceGroup, JsonMixin):
27
27
  default: str | None = None,
28
28
  required: bool = False,
29
29
  readonly: bool = False,
30
- choices: dict[str, str] | None = None,
30
+ choices: list[tuple[str, str]] | None = None,
31
31
  ):
32
32
  Field.__init__(
33
33
  self,
@@ -52,8 +52,13 @@ class ChoiceTextField(Field, ChoiceGroup, JsonMixin):
52
52
  self.choices = choices
53
53
 
54
54
  if globals.DEBUG:
55
- if choices is not None and not isinstance(choices, dict):
56
- raise AssertionError("Parameter `choices` - Not а `dict` type!")
55
+ if choices is not None:
56
+ if not isinstance(choices, list):
57
+ raise AssertionError("Parameter `choices` - Not а `list` type!")
58
+ if len(choices) == 0:
59
+ raise AssertionError(
60
+ "The `choices` parameter should not contain an empty list!"
61
+ )
57
62
  if default is not None:
58
63
  if not isinstance(default, str):
59
64
  raise AssertionError("Parameter `default` - Not а `str` type!")
@@ -94,6 +99,6 @@ class ChoiceTextField(Field, ChoiceGroup, JsonMixin):
94
99
  choices = self.choices
95
100
  if not bool(choices):
96
101
  return False
97
- if value not in choices.values(): # type: ignore[union-attr]
102
+ if value not in [item[0] for item in choices]: # type: ignore[union-attr]
98
103
  return False
99
104
  return True
@@ -67,7 +67,7 @@ class ChoiceTextMultDynField(Field, ChoiceGroup, JsonMixin):
67
67
  JsonMixin.__init__(self)
68
68
 
69
69
  self.value: list[str] | None = None
70
- self.choices: dict[str, str] | None = None
70
+ self.choices: list[tuple[str, str]] | None = None
71
71
 
72
72
  def has_value(self, is_migrate: bool = False) -> bool:
73
73
  """Does the field value match the possible options in choices."""
@@ -78,7 +78,7 @@ class ChoiceTextMultDynField(Field, ChoiceGroup, JsonMixin):
78
78
  choices = self.choices
79
79
  if len(value) == 0 or not bool(choices):
80
80
  return False
81
- value_list = choices.values() # type: ignore[union-attr]
81
+ value_list = [item[0] for item in choices] # type: ignore[union-attr]
82
82
  for item in value:
83
83
  if item not in value_list:
84
84
  return False
@@ -27,7 +27,7 @@ class ChoiceTextMultField(Field, ChoiceGroup, JsonMixin):
27
27
  default: list[str] | None = None,
28
28
  required: bool = False,
29
29
  readonly: bool = False,
30
- choices: dict[str, str] | None = None,
30
+ choices: list[tuple[str, str]] | None = None,
31
31
  ):
32
32
  Field.__init__(
33
33
  self,
@@ -54,8 +54,8 @@ class ChoiceTextMultField(Field, ChoiceGroup, JsonMixin):
54
54
 
55
55
  if globals.DEBUG:
56
56
  if choices is not None:
57
- if not isinstance(choices, dict):
58
- raise AssertionError("Parameter `choices` - Not а `dict` type!")
57
+ if not isinstance(choices, list):
58
+ raise AssertionError("Parameter `choices` - Not а `list` type!")
59
59
  if len(choices) == 0:
60
60
  raise AssertionError(
61
61
  "The `choices` parameter should not contain an empty list!"
@@ -100,7 +100,7 @@ class ChoiceTextMultField(Field, ChoiceGroup, JsonMixin):
100
100
  choices = self.choices
101
101
  if len(value) == 0 or not bool(choices):
102
102
  return False
103
- value_list = choices.values() # type: ignore[union-attr]
103
+ value_list = [item[0] for item in choices] # type: ignore[union-attr]
104
104
  for item in value:
105
105
  if item not in value_list:
106
106
  return False
ramifice/models/model.py CHANGED
@@ -78,9 +78,9 @@ class Model(metaclass=ABCMeta):
78
78
  if "Dyn" in f_type.field_type:
79
79
  dyn_data = data_dynamic_fields[f_name]
80
80
  if dyn_data is not None:
81
- f_type.choices = {
82
- item["title"].get(lang, "- -"): item["value"] for item in dyn_data
83
- }
81
+ f_type.choices = [
82
+ (item["value"], item["title"][lang]) for item in dyn_data
83
+ ]
84
84
  else:
85
85
  # This is necessary for
86
86
  # `paladins > refrash > RefrashMixin > refrash_from_db`.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ramifice
3
- Version: 0.5.4
3
+ Version: 0.5.5
4
4
  Summary: ORM-like API MongoDB for Python language.
5
5
  Project-URL: Homepage, https://github.com/kebasyaty/ramifice
6
6
  Project-URL: Documentation, https://kebasyaty.github.io/ramifice/
@@ -542,7 +542,7 @@ async for index in await User.list_indexes():
542
542
  from ramifice import Unit
543
543
  unit = Unit(
544
544
  field="field_name", # The name of the dynamic field.
545
- title="Title", # The name of the choice item.
545
+ title={"en": "Title", "ru": "Заголовок"}, # The name of the choice item.
546
546
  value="Some text ...", # The value of the choice item.
547
547
  # Hint: float | int | str
548
548
  is_delete=False, # True - if you need to remove the item of choice.
@@ -6,21 +6,21 @@ ramifice/commons/indexes.py,sha256=hAcWKZ9MMgLbRtoQ6Af0b8r-PY0dbEYmMBl8z_d1DRo,3
6
6
  ramifice/commons/many.py,sha256=jkah1kO1CXWPB0xW0dbMelCFBSirRYkX9a333EcPE_M,9202
7
7
  ramifice/commons/one.py,sha256=uZsgwg_GgA1VMZDPqhRFMmCdtvcv6xsL4DWbCOwGV3w,6730
8
8
  ramifice/commons/tools.py,sha256=ectaILVYCSwNbB0VAys6nIhdsJbwuxAupNvcQfweC88,2366
9
- ramifice/commons/unit_manager.py,sha256=sMoeANBW9OZUDijn3zg5wxt9TN9lF0qYgiHzljr9xyw,4303
9
+ ramifice/commons/unit_manager.py,sha256=4spjvTv29AYSWaIP2A4k9E1vawPmwFau9GFK_yaveb8,4488
10
10
  ramifice/fields/__init__.py,sha256=yRfX7Tvpuh27Ggcx5u9e1RRYK7Wu59EVJYxxetmuP1w,1290
11
11
  ramifice/fields/bool_field.py,sha256=WWubSwsFJZu8b3MviDd2zXnNYOQaYw8toklFNSTVFLA,2072
12
- ramifice/fields/choice_float_dyn_field.py,sha256=Yrd9cNKLm0mhU-P3IojwFRLSbuxdp7f2NMGJhrRWsf8,3093
13
- ramifice/fields/choice_float_field.py,sha256=GX7ygsflgXFwwU5Gacq8EsXTdzdgNxWfT5ys8z4s2K8,3675
14
- ramifice/fields/choice_float_mult_dyn_field.py,sha256=zDaJ_-qSytIXfY4EH43QwPB0dtkQfHPCGSZI7VMDnoo,3156
15
- ramifice/fields/choice_float_mult_field.py,sha256=TArh0D13F9JuJjFn7WDrBzAqDCL03T35z1nZB4T55Rw,4232
16
- ramifice/fields/choice_int_dyn_field.py,sha256=pryP7KDvRexKBo9mQTwN61Rnyuhiiv_ZHw56wWFe_bs,3087
17
- ramifice/fields/choice_int_field.py,sha256=OyuADapAIwlutYvAtu-g7hwmq251e9cHMqKP4dm9Du8,3663
18
- ramifice/fields/choice_int_mult_dyn_field.py,sha256=BZbH0SUcJji6daazj3ovBYCaY1o00rMBbEFzCzDu7b4,3152
19
- ramifice/fields/choice_int_mult_field.py,sha256=4PZx0Wv1R2Wq5JZWQNqqYi_4OX13KNwdxlwlyKqndZM,4226
20
- ramifice/fields/choice_text_dyn_field.py,sha256=HcJXq9HHgglz_BTOpGfvXmxH2BGhXze_-QAampmTGnI,3083
21
- ramifice/fields/choice_text_field.py,sha256=JHauvxmYIbxUMjCgOHI0IcBNT2zv2gPH0njp6qXlKr4,3868
22
- ramifice/fields/choice_text_mult_dyn_field.py,sha256=GmoRveIQjidAV-NOmfEO2irlG6agRHpMKNUFVzKSGiM,3148
23
- ramifice/fields/choice_text_mult_field.py,sha256=RHB38fNL4ppasE-x2jJE73s221sDZ-YX3-WgpYsI_kA,4222
12
+ ramifice/fields/choice_float_dyn_field.py,sha256=GMyKWLjNCP7TeQl1rnM3S7GBPd0N0so_CCCYcuGQLZM,3113
13
+ ramifice/fields/choice_float_field.py,sha256=gXs6-QqFcG37aeHt_6QsgQOJyYa9Q5N95p7g9oEOP9E,3918
14
+ ramifice/fields/choice_float_mult_dyn_field.py,sha256=Uq8eyjiOVVL_K__-C5UJCsUcgXdFYMluZBSJatGz528,3176
15
+ ramifice/fields/choice_float_mult_field.py,sha256=1RO4cri-LzZgqZrSK8InF5zKfOMzlbj79Kue1_EPj8M,4264
16
+ ramifice/fields/choice_int_dyn_field.py,sha256=O4cTaFIZdxZgb3AZmDIHrYwavBaG-pf-s3fF8fSeu2I,3107
17
+ ramifice/fields/choice_int_field.py,sha256=VJi_9Ilp9Vei4qDqii4OSV_xzpZJHmxeYb5Lfxkvf6Y,3894
18
+ ramifice/fields/choice_int_mult_dyn_field.py,sha256=G4iLbgipjNIuwQjh0mXo04npp7wpDnvVOlb3LmJKUEg,3172
19
+ ramifice/fields/choice_int_mult_field.py,sha256=J-oRNoPoF-cgAbHlxtVTU7E-OeLf-Z-E2gL2036qhRc,4246
20
+ ramifice/fields/choice_text_dyn_field.py,sha256=xFAOzdTKzrJg73-7CvNjovj-Dnj0ONmZi-sUz2vvcEI,3103
21
+ ramifice/fields/choice_text_field.py,sha256=L1j36BX6pKtS661ZSYtrD9tuAjxD2puRGOvrdEBqcS8,4099
22
+ ramifice/fields/choice_text_mult_dyn_field.py,sha256=HtDd7X70VlIJ2SdCTVr_8dZvw_oPw79QC0YjGaOZQlA,3168
23
+ ramifice/fields/choice_text_mult_field.py,sha256=UGKbAJQaX1pq0KFJnvgEYYKlrr_eGsaFY2eOA-43NRw,4242
24
24
  ramifice/fields/color_field.py,sha256=NdYey3Og8hh7oK7yDljrG6K8frgqj4C2OTXFnJVAYFQ,3526
25
25
  ramifice/fields/date_field.py,sha256=w875p6JwssKhEZJLBHmC8sE5wArn161rlQi0Zt-qEZo,5214
26
26
  ramifice/fields/date_time_field.py,sha256=OGi-ED-Gm_AWGzczHA1qch59IuWy3KkVIJHQl3OlatU,5249
@@ -45,7 +45,7 @@ ramifice/fields/general/number_group.py,sha256=AqlCY-t6JHZ2QVBe7mk5nPt6z8M4VJ_RA
45
45
  ramifice/fields/general/text_group.py,sha256=6GD2Fe6Toz6zZjAAlcy5rPVCAGh6Yn1ltdIrFg9RF18,1057
46
46
  ramifice/models/__init__.py,sha256=h_QQ5rSJNZ-7kmx7wIFd8E8RmUS94b_x4jdwMbq8zm4,15
47
47
  ramifice/models/decorator.py,sha256=U1ukWWq2voEwvKonQAzihqGYVsoyPrOQ2jDXJZ-UcMc,7251
48
- ramifice/models/model.py,sha256=MmHsb73G-h1io3EP1qy6cSOxqJ0CeaB1bzxgTT4XP_c,7113
48
+ ramifice/models/model.py,sha256=Ydz4kpYiEjjhxkiwhJmSIZM--lKe0QE38yL6wh2eITM,7104
49
49
  ramifice/models/pseudo.py,sha256=0PBLHUmoT5eXzIaZtTQ20IaNUPRAuRGGfRWbUypPtfc,6765
50
50
  ramifice/paladins/__init__.py,sha256=PIP3AXI2KBRXNcLJUF0d7ygJ7VLOAxlhb4HRKQ9MGYY,516
51
51
  ramifice/paladins/check.py,sha256=ennDiVAoCZIS3aKBK0eA-Vt8VJQnbIv90be5IFYraFg,7026
@@ -79,7 +79,7 @@ ramifice/utils/mixins/add_valid.py,sha256=TLOObedzXNA9eCylfAVbVCqIKE5sV-P5AdIN7a
79
79
  ramifice/utils/mixins/hooks.py,sha256=33jvJRhfnJeL2Hd_YFXk3M_7wjqHaByU2wRjKyboL6s,914
80
80
  ramifice/utils/mixins/indexing.py,sha256=Z0427HoaVRyNmSNN8Fx0mSICgAKV-gDdu3iR5qYUEbs,329
81
81
  ramifice/utils/mixins/json_converter.py,sha256=WhigXyDAV-FfILaZuwvRFRIk0D90Rv3dG5t-mv5fVyc,1107
82
- ramifice-0.5.4.dist-info/METADATA,sha256=G7x9T9_WihchEvWZhdsdn7wsAoPaSXxNazI1ZoZASec,22500
83
- ramifice-0.5.4.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
84
- ramifice-0.5.4.dist-info/licenses/LICENSE,sha256=LrEL0aTZx90HDwFUQCJutORiDjJL9AnuVvCtspXIqt4,1095
85
- ramifice-0.5.4.dist-info/RECORD,,
82
+ ramifice-0.5.5.dist-info/METADATA,sha256=6W2LY7y6TfZ0IuzAo23fTINKZgqSz_YA_UwgdmtmDyw,22536
83
+ ramifice-0.5.5.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
84
+ ramifice-0.5.5.dist-info/licenses/LICENSE,sha256=LrEL0aTZx90HDwFUQCJutORiDjJL9AnuVvCtspXIqt4,1095
85
+ ramifice-0.5.5.dist-info/RECORD,,