simo 2.6.8__py3-none-any.whl → 2.6.9__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 simo might be problematic. Click here for more details.
- simo/automation/__pycache__/controllers.cpython-38.pyc +0 -0
- simo/automation/controllers.py +3 -1
- simo/core/__pycache__/api.cpython-38.pyc +0 -0
- simo/core/api.py +4 -1
- simo/fleet/__pycache__/controllers.cpython-38.pyc +0 -0
- simo/fleet/controllers.py +4 -26
- simo/fleet/migrations/__pycache__/0043_auto_20241203_0930.cpython-38.pyc +0 -0
- simo/users/migrations/0039_auto_20241117_1039.py +25 -24
- simo/users/migrations/__pycache__/0039_auto_20241117_1039.cpython-38.pyc +0 -0
- {simo-2.6.8.dist-info → simo-2.6.9.dist-info}/METADATA +1 -1
- {simo-2.6.8.dist-info → simo-2.6.9.dist-info}/RECORD +15 -14
- {simo-2.6.8.dist-info → simo-2.6.9.dist-info}/LICENSE.md +0 -0
- {simo-2.6.8.dist-info → simo-2.6.9.dist-info}/WHEEL +0 -0
- {simo-2.6.8.dist-info → simo-2.6.9.dist-info}/entry_points.txt +0 -0
- {simo-2.6.8.dist-info → simo-2.6.9.dist-info}/top_level.txt +0 -0
|
Binary file
|
simo/automation/controllers.py
CHANGED
|
@@ -198,6 +198,9 @@ class PresenceLighting(Script):
|
|
|
198
198
|
if must_on and on_sensor:
|
|
199
199
|
print("Presence detected!")
|
|
200
200
|
|
|
201
|
+
if must_on:
|
|
202
|
+
self.last_presence = 0
|
|
203
|
+
|
|
201
204
|
additional_conditions_met = True
|
|
202
205
|
for condition in self.conditions:
|
|
203
206
|
|
|
@@ -226,7 +229,6 @@ class PresenceLighting(Script):
|
|
|
226
229
|
additional_conditions_met = False
|
|
227
230
|
break
|
|
228
231
|
|
|
229
|
-
|
|
230
232
|
if not self.is_on:
|
|
231
233
|
if not must_on:
|
|
232
234
|
return
|
|
Binary file
|
simo/core/api.py
CHANGED
|
@@ -734,11 +734,12 @@ class ControllerTypes(InstanceMixin, viewsets.GenericViewSet):
|
|
|
734
734
|
for uid, cls in get_controller_types_map(user=request.user).items():
|
|
735
735
|
if cls.gateway_class.name not in data:
|
|
736
736
|
data[cls.gateway_class.name] = []
|
|
737
|
+
if not cls.manual_add:
|
|
738
|
+
continue
|
|
737
739
|
data[cls.gateway_class.name].append({
|
|
738
740
|
'uid': uid,
|
|
739
741
|
'name': cls.name,
|
|
740
742
|
'is_discoverable': cls.is_discoverable,
|
|
741
|
-
'manual_add': cls.manual_add,
|
|
742
743
|
'discovery_msg': cls.discovery_msg,
|
|
743
744
|
'info': cls.info(cls)
|
|
744
745
|
})
|
|
@@ -767,6 +768,8 @@ class GWControllerTypes(InstanceMixin, viewsets.GenericViewSet):
|
|
|
767
768
|
'info': cls.gateway_class.info,
|
|
768
769
|
'controllers': []
|
|
769
770
|
}
|
|
771
|
+
if not cls.manual_add:
|
|
772
|
+
continue
|
|
770
773
|
data[cls.gateway_class.uid]['controllers'].append({
|
|
771
774
|
'uid': uid,
|
|
772
775
|
'name': cls.name,
|
|
Binary file
|
simo/fleet/controllers.py
CHANGED
|
@@ -100,36 +100,21 @@ class BurglarSmokeDetector(BinarySensor):
|
|
|
100
100
|
]
|
|
101
101
|
|
|
102
102
|
|
|
103
|
-
# class AnalogSensor(FleeDeviceMixin, BasicSensorMixin, BaseNumericSensor):
|
|
104
|
-
# config_form = ColonelNumericSensorConfigForm
|
|
105
|
-
# name = "Analog sensor"
|
|
106
|
-
#
|
|
107
|
-
# def _get_occupied_pins(self):
|
|
108
|
-
# return [
|
|
109
|
-
# self.component.config['pin_no'],
|
|
110
|
-
# ]
|
|
111
|
-
|
|
112
|
-
|
|
113
103
|
class DS18B20Sensor(FleeDeviceMixin, BasicSensorMixin, BaseNumericSensor):
|
|
114
104
|
config_form = DS18B20SensorConfigForm
|
|
115
105
|
name = "DS18B20 Temperature sensor"
|
|
116
106
|
|
|
117
107
|
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
# 'pressure': self.sensor.pressure, 'gas': self.sensor.gas
|
|
122
|
-
# }
|
|
123
|
-
# which is used by BME680Sensor
|
|
124
|
-
|
|
125
|
-
class BaseClimateSensor(FleeDeviceMixin, BasicSensorMixin, BaseMultiSensor):
|
|
108
|
+
class DHTSensor(FleeDeviceMixin, BasicSensorMixin, BaseMultiSensor):
|
|
109
|
+
config_form = ColonelDHTSensorConfigForm
|
|
110
|
+
name = "DHT climate sensor"
|
|
126
111
|
app_widget = NumericSensorWidget
|
|
127
112
|
|
|
128
113
|
def __init__(self, *args, **kwargs):
|
|
129
114
|
super().__init__(*args, **kwargs)
|
|
130
115
|
self.sys_temp_units = 'C'
|
|
131
116
|
if hasattr(self.component, 'zone') \
|
|
132
|
-
|
|
117
|
+
and self.component.zone.instance.units_of_measure == 'imperial':
|
|
133
118
|
self.sys_temp_units = 'F'
|
|
134
119
|
|
|
135
120
|
@property
|
|
@@ -164,13 +149,6 @@ class BaseClimateSensor(FleeDeviceMixin, BasicSensorMixin, BaseMultiSensor):
|
|
|
164
149
|
return new_val
|
|
165
150
|
|
|
166
151
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
class DHTSensor(BaseClimateSensor):
|
|
170
|
-
config_form = ColonelDHTSensorConfigForm
|
|
171
|
-
name = "DHT climate sensor"
|
|
172
|
-
|
|
173
|
-
|
|
174
152
|
class BME680Sensor(FleeDeviceMixin, BaseMultiSensor):
|
|
175
153
|
gateway_class = FleetGatewayHandler
|
|
176
154
|
config_form = BME680SensorConfigForm
|
|
Binary file
|
|
@@ -4,30 +4,31 @@ from django.db import migrations
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
def forwards_func(apps, schema_editor):
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
7
|
+
pass
|
|
8
|
+
# from simo.automation.helpers import haversine_distance
|
|
9
|
+
# UserDeviceReportLog = apps.get_model("users", "UserDeviceReportLog")
|
|
10
|
+
#
|
|
11
|
+
# logs = UserDeviceReportLog.objects.filter(
|
|
12
|
+
# instance__isnull=False
|
|
13
|
+
# ).select_related('instance')
|
|
14
|
+
#
|
|
15
|
+
# print("Calculate at_home on UserDeviceReportLog's!")
|
|
16
|
+
#
|
|
17
|
+
# bulk_update = []
|
|
18
|
+
# for log in tqdm(logs, total=logs.count()):
|
|
19
|
+
# log.at_home = False
|
|
20
|
+
# if not log.relay:
|
|
21
|
+
# log.at_home = True
|
|
22
|
+
# elif log.location:
|
|
23
|
+
# log.at_home = haversine_distance(
|
|
24
|
+
# log.instance.location, log.location
|
|
25
|
+
# ) < 250
|
|
26
|
+
# if log.at_home:
|
|
27
|
+
# bulk_update.append(log)
|
|
28
|
+
# if len(bulk_update) > 1000:
|
|
29
|
+
# UserDeviceReportLog.objects.bulk_update(bulk_update, ["at_home"])
|
|
30
|
+
# bulk_update = []
|
|
31
|
+
# UserDeviceReportLog.objects.bulk_update(bulk_update, ["at_home"])
|
|
31
32
|
|
|
32
33
|
|
|
33
34
|
def reverse_func(apps, schema_editor):
|
|
Binary file
|
|
@@ -13,7 +13,7 @@ simo/__pycache__/urls.cpython-38.pyc,sha256=u0x6EqT8S1YfDOSPgbI8Kf-RDlveY9OV-EDX
|
|
|
13
13
|
simo/__pycache__/wsgi.cpython-38.pyc,sha256=TpRxO7VM_ql31hbKphVdanydC5RI1nHB4l0QA2pdWxo,322
|
|
14
14
|
simo/automation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
simo/automation/app_widgets.py,sha256=gaqImMZjuMHm7nIb9a4D-Y3qipz_WhSPAHXcwGx4Uzs,199
|
|
16
|
-
simo/automation/controllers.py,sha256=
|
|
16
|
+
simo/automation/controllers.py,sha256=cgTuS9Gwi9R94FTi4kbN9VG74HhddHxEqlCZEbvE-jY,10553
|
|
17
17
|
simo/automation/forms.py,sha256=UWnkxw8pILPK0smRPTo4SLgsZl78zOySx7JIc30Bgtk,10228
|
|
18
18
|
simo/automation/gateways.py,sha256=wElqHHyNd2jdpWuhO9DQ0yORIrObSzJsgZ-4dlKCLo4,9471
|
|
19
19
|
simo/automation/helpers.py,sha256=iP-fxxB8HsFQy3k2CjFubu86aMqvWgmh-p24DiyOrek,4330
|
|
@@ -22,7 +22,7 @@ simo/automation/serializers.py,sha256=PjyFrjdPK1mBsgbNhyqMi9SWzcymqTa742ipy0LhAN
|
|
|
22
22
|
simo/automation/state.py,sha256=aZZvNBae7unnux_zGHCIWCV2z47hVJc-DIL72Hqfkeo,600
|
|
23
23
|
simo/automation/__pycache__/__init__.cpython-38.pyc,sha256=YmP0xAD-mxpQHgdTZeC64sXChA8TriMZD1jckNYi3xg,164
|
|
24
24
|
simo/automation/__pycache__/app_widgets.cpython-38.pyc,sha256=7DfUA9V_1MiwrOe_ta-ts8dYY8xXb9UMg2_9A3XoRcs,523
|
|
25
|
-
simo/automation/__pycache__/controllers.cpython-38.pyc,sha256=
|
|
25
|
+
simo/automation/__pycache__/controllers.cpython-38.pyc,sha256=K0cTMm42Ia4k0p2ZLQOU8aiJjZh32Ku965QfqSR7Vsw,8038
|
|
26
26
|
simo/automation/__pycache__/forms.cpython-38.pyc,sha256=cpA5hA2Iz3JsPC0Dq01ki1I7S9c5DKRcXveHApI1dJo,7772
|
|
27
27
|
simo/automation/__pycache__/gateways.cpython-38.pyc,sha256=4gDB7AeKwumAty-1x1Uyh1dEckw-kntBafMNvayH-PA,7621
|
|
28
28
|
simo/automation/__pycache__/helpers.cpython-38.pyc,sha256=4VSSarOFnUk_KExWwvDlx5dEhv8aHUCHMZDtGG--pUY,3627
|
|
@@ -61,7 +61,7 @@ simo/backups/migrations/__pycache__/0004_alter_backup_options_alter_backuplog_op
|
|
|
61
61
|
simo/backups/migrations/__pycache__/__init__.cpython-38.pyc,sha256=Lz1fs6V05h2AoxTOLNye0do9bEMnyuaXB_hHOjG5-HU,172
|
|
62
62
|
simo/core/__init__.py,sha256=_s2TjJfQImsMrTIxqLAx9AZie1Ojmm6sCHASdl3WLGU,50
|
|
63
63
|
simo/core/admin.py,sha256=nmFDO57D5hXHDfl0wjJ9J5jBxyCqW4Gp_uqHhpS2uuw,18564
|
|
64
|
-
simo/core/api.py,sha256=
|
|
64
|
+
simo/core/api.py,sha256=eJCV5kScDWfVUa7RprMWvu8PQlGX2T3vCGIhIl4Z6Jw,30306
|
|
65
65
|
simo/core/api_auth.py,sha256=vCxvczA8aWNcW0VyKs5WlC_ytlqeGP_H_hkKUNVkCwM,1247
|
|
66
66
|
simo/core/api_meta.py,sha256=e9iqVv-3d651lMvZY-ILG4F35Puh2XunnwykiBUbl5E,5055
|
|
67
67
|
simo/core/app_widgets.py,sha256=VxZzapuc-a29wBH7JzpvNF2SK1ECrgNUySId5ke1ffc,2509
|
|
@@ -94,7 +94,7 @@ simo/core/views.py,sha256=yx9I0byeVUa-LAOnklpWIYwpNNOf5m9fyjKBvj4YCh4,2475
|
|
|
94
94
|
simo/core/widgets.py,sha256=J9e06C6I22F6xKic3VMgG7WeX07glAcl-4bF2Mg180A,2827
|
|
95
95
|
simo/core/__pycache__/__init__.cpython-38.pyc,sha256=ZJFM_XN0RmJMULQulgA_wFiOnEtsMoedcOWnXjH-Y8o,208
|
|
96
96
|
simo/core/__pycache__/admin.cpython-38.pyc,sha256=WAfdq_hAdkW-_QwJ0E7NSd25yxnPRi_HjJ-uKFMJzcg,14146
|
|
97
|
-
simo/core/__pycache__/api.cpython-38.pyc,sha256=
|
|
97
|
+
simo/core/__pycache__/api.cpython-38.pyc,sha256=uSPeR38cxPN2H875ky5tDlF_tkkuInzB92qaK4lQWUA,23249
|
|
98
98
|
simo/core/__pycache__/api_auth.cpython-38.pyc,sha256=mi3mu5qEKio_PvfQEvr3Q6AhdPLAHxzxAxrMbAz_pKU,1712
|
|
99
99
|
simo/core/__pycache__/api_meta.cpython-38.pyc,sha256=PrJrXcjbhXQkYrvEVG9jpRzkB8XYBMRQuKjXrgU9POA,3742
|
|
100
100
|
simo/core/__pycache__/app_widgets.cpython-38.pyc,sha256=oN657XMMZ6GYN9nblv7fX3kdnTEzSP9XV6PXM6Z0wl4,4358
|
|
@@ -10253,7 +10253,7 @@ simo/fleet/api.py,sha256=rJwAYJvp0uslW7O6Q4XOpOa8hfCdy3keUD7b3UNL43E,3424
|
|
|
10253
10253
|
simo/fleet/auto_urls.py,sha256=UX66eR2ykMqFgfIllW-RTdjup5-FieCWl_BVm3CcXKg,702
|
|
10254
10254
|
simo/fleet/base_types.py,sha256=wL9RVkHr0gA7HI1wZq0pruGEIgvQqpfnCL4cC3ywsvw,102
|
|
10255
10255
|
simo/fleet/ble.py,sha256=eHA_9ABjbmH1vUVCv9hiPXQL2GZZSEVwfO0xyI1S0nI,1081
|
|
10256
|
-
simo/fleet/controllers.py,sha256=
|
|
10256
|
+
simo/fleet/controllers.py,sha256=PezfOT-1N_UONSsbyTXEIyGO6Po57KdEBRv4yzk_sw0,28605
|
|
10257
10257
|
simo/fleet/forms.py,sha256=2pbX1otTb1HqJ3aksRWz-FbsJ3YIyx6weV_tMFonecY,64772
|
|
10258
10258
|
simo/fleet/gateways.py,sha256=C7dyapWDlJ5erYPNLkSoH50I8kj0lIXicSno0_CrdXc,5783
|
|
10259
10259
|
simo/fleet/managers.py,sha256=ZNeHFSkF5kzsl9E1DCBevOW6kXJlD6kw0LU4B-JMOG8,828
|
|
@@ -10270,7 +10270,7 @@ simo/fleet/__pycache__/api.cpython-38.pyc,sha256=rZ1mkfkaMBEXhi9sw_jTKdk2CPJhBNx
|
|
|
10270
10270
|
simo/fleet/__pycache__/auto_urls.cpython-38.pyc,sha256=Tc6a6BCXHjijP8U2jE2ghlJwnSNrGm59-hW5t-80wF0,689
|
|
10271
10271
|
simo/fleet/__pycache__/base_types.cpython-38.pyc,sha256=deyPwjpT6xZiFxBGFnj5b7R-lbdOTh2krgpJhrcGVhc,274
|
|
10272
10272
|
simo/fleet/__pycache__/ble.cpython-38.pyc,sha256=Nrof9w7cm4OlpFWHeVnmvvanh2_oF9oQ3TknJiV93-0,1267
|
|
10273
|
-
simo/fleet/__pycache__/controllers.cpython-38.pyc,sha256=
|
|
10273
|
+
simo/fleet/__pycache__/controllers.cpython-38.pyc,sha256=UtuihR455FLsHFAtMBh6haJzypp_HTyo3o8kPH02gnI,24739
|
|
10274
10274
|
simo/fleet/__pycache__/forms.cpython-38.pyc,sha256=VQqXDYGpTMMOrV3PGXFbWD_49XjglqJO2LWIHidMom0,43550
|
|
10275
10275
|
simo/fleet/__pycache__/gateways.cpython-38.pyc,sha256=MIpXuGWitGNdsxJ99fWvMXJ6sVE96ac7iR4K4aM4Sds,5148
|
|
10276
10276
|
simo/fleet/__pycache__/managers.cpython-38.pyc,sha256=Vmm23zoQnS3-uS5_WJt2n3wtjhLiEhLWaYxXJCU6Gts,1339
|
|
@@ -10367,6 +10367,7 @@ simo/fleet/migrations/__pycache__/0039_auto_20241016_1047.cpython-38.pyc,sha256=
|
|
|
10367
10367
|
simo/fleet/migrations/__pycache__/0040_alter_colonel_pwm_frequency.cpython-38.pyc,sha256=o_trHQUyQfYzWO_iWmZpvzc-uVJlBjK-GfyKhPOVSjc,736
|
|
10368
10368
|
simo/fleet/migrations/__pycache__/0041_alter_colonel_instance_and_more.cpython-38.pyc,sha256=76yu9gz3pcAq5IYbNeZIoOSgdi0HVqTvc3EdXLGriQI,1178
|
|
10369
10369
|
simo/fleet/migrations/__pycache__/0042_auto_20241120_1028.cpython-38.pyc,sha256=yK2HRc7MYMc4i9ev7FaguBdnXUnUmpFn8E8JOP_yluA,1030
|
|
10370
|
+
simo/fleet/migrations/__pycache__/0043_auto_20241203_0930.cpython-38.pyc,sha256=0QWVIvorcCuhfuGFu0fMdu5vkxcQSosxjt8KT6Ld07E,980
|
|
10370
10371
|
simo/fleet/migrations/__pycache__/__init__.cpython-38.pyc,sha256=5k1KW0jeSDzw6RnVPRq4CaO13Lg7M0F-pxA_gqqZ6Mg,170
|
|
10371
10372
|
simo/fleet/templates/fleet/controllers_info/Button.md,sha256=GIuxqG617174NEtpPeCGVocxO4YMe7-CacgVSu_L5-E,739
|
|
10372
10373
|
simo/fleet/templates/fleet/controllers_info/ENS160AirQualitySensor.md,sha256=3LSTY9YPFuVPIbVsYCAifcotrXJcOXl2k774_vo6nAE,770
|
|
@@ -10540,7 +10541,7 @@ simo/users/migrations/0035_instanceuser_last_seen_speed_kmh_and_more.py,sha256=l
|
|
|
10540
10541
|
simo/users/migrations/0036_instanceuser_phone_on_charge_user_phone_on_charge.py,sha256=uHXLRmFAASdB9sPivYkRu7WV4rxZDI3RaEwl2i7U_xg,615
|
|
10541
10542
|
simo/users/migrations/0037_rename_last_seen_location_datetime_instanceuser_last_seen_and_more.py,sha256=8f_7fC7k0Dm-0gGVHMI9_490BbEC_SfuAPrAADrZ7BA,1543
|
|
10542
10543
|
simo/users/migrations/0038_userdevicereportlog_at_home_and_more.py,sha256=qL1ZjUJDiSrJat59ToqpNBwnMMPb3Q5mwHq-qd1eFcI,691
|
|
10543
|
-
simo/users/migrations/0039_auto_20241117_1039.py,sha256=
|
|
10544
|
+
simo/users/migrations/0039_auto_20241117_1039.py,sha256=BCIIDfvRzIHaP3SM-Df1XYjWzVLugFqAYGcFofaQepE,1369
|
|
10544
10545
|
simo/users/migrations/0040_userdevicereportlog_location_smoothed_and_more.py,sha256=umGDjQGpCrQocNxaCvwdTsOmSxcRC61NcUdHGUczoc4,855
|
|
10545
10546
|
simo/users/migrations/0041_userdevicereportlog_speed_kmh_received.py,sha256=WoJ-ImX1lNIl7CKO_HMt3jbFjoenFGBUm9HZWidb-eA,433
|
|
10546
10547
|
simo/users/migrations/0042_remove_userdevicereportlog_location_smoothed_and_more.py,sha256=p-GFu6qjkxqeA0TI8aaIum0k6fQfc39RIKbfGPSf0Yk,499
|
|
@@ -10586,7 +10587,7 @@ simo/users/migrations/__pycache__/0035_instanceuser_last_seen_speed_kmh_and_more
|
|
|
10586
10587
|
simo/users/migrations/__pycache__/0036_instanceuser_phone_on_charge_user_phone_on_charge.cpython-38.pyc,sha256=y1ZDJ8VM5_vJOxTPRERjwukiGXJ89UhDc4bHiHZwQ_w,723
|
|
10587
10588
|
simo/users/migrations/__pycache__/0037_rename_last_seen_location_datetime_instanceuser_last_seen_and_more.cpython-38.pyc,sha256=W4Rc6SRNNJ_yAYrEyoklD5LFmQPAL9mTDrXHMfP8R4I,1162
|
|
10588
10589
|
simo/users/migrations/__pycache__/0038_userdevicereportlog_at_home_and_more.cpython-38.pyc,sha256=khDSeTH3-jJ4yO1D6-i3Pm_NekJkVwBSUJ-rAxu0cr4,836
|
|
10589
|
-
simo/users/migrations/__pycache__/0039_auto_20241117_1039.cpython-38.pyc,sha256=
|
|
10590
|
+
simo/users/migrations/__pycache__/0039_auto_20241117_1039.cpython-38.pyc,sha256=2Qi46pncWXhcy6EaqXdLuynw3nCxqDC_KtS_3MToH1g,798
|
|
10590
10591
|
simo/users/migrations/__pycache__/0040_userdevicereportlog_location_smoothed_and_more.cpython-38.pyc,sha256=I0W00mt73gjKunnwAyf3kz1FKfgm2HRwCJY_ogATSS0,918
|
|
10591
10592
|
simo/users/migrations/__pycache__/0041_userdevicereportlog_speed_kmh_received.cpython-38.pyc,sha256=XWC9Emcc1Bm498UZ-6Lo7-i2Vq77vndjMA9xRdJbdfU,676
|
|
10592
10593
|
simo/users/migrations/__pycache__/0042_remove_userdevicereportlog_location_smoothed_and_more.cpython-38.pyc,sha256=sSnWjU7rg5LXlRCxUFb_m2lUIcB4EHgtAnl-C9MMJvE,656
|
|
@@ -10600,9 +10601,9 @@ simo/users/templates/invitations/expired_msg.html,sha256=47DEQpj8HBSa-_TImW-5JCe
|
|
|
10600
10601
|
simo/users/templates/invitations/expired_suggestion.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10601
10602
|
simo/users/templates/invitations/taken_msg.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10602
10603
|
simo/users/templates/invitations/taken_suggestion.html,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10603
|
-
simo-2.6.
|
|
10604
|
-
simo-2.6.
|
|
10605
|
-
simo-2.6.
|
|
10606
|
-
simo-2.6.
|
|
10607
|
-
simo-2.6.
|
|
10608
|
-
simo-2.6.
|
|
10604
|
+
simo-2.6.9.dist-info/LICENSE.md,sha256=M7wm1EmMGDtwPRdg7kW4d00h1uAXjKOT3HFScYQMeiE,34916
|
|
10605
|
+
simo-2.6.9.dist-info/METADATA,sha256=cCWJSmJj43zsbyPzT4tUyfvv4mU2nbkwzh0nTHzyJdk,1952
|
|
10606
|
+
simo-2.6.9.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
10607
|
+
simo-2.6.9.dist-info/entry_points.txt,sha256=S9PwnUYmTSW7681GKDCxUbL0leRJIaRk6fDQIKgbZBA,135
|
|
10608
|
+
simo-2.6.9.dist-info/top_level.txt,sha256=GmS1hrAbpVqn9OWZh6UX82eIOdRLgYA82RG9fe8v4Rs,5
|
|
10609
|
+
simo-2.6.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|