pycupra 0.1.11__py3-none-any.whl → 0.1.13__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.
@@ -0,0 +1,155 @@
1
+ // Copyright 2014 The Chromium Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+ //
5
+ // Request and reply to the "checkin server" devices poll every few hours.
6
+
7
+ syntax = "proto2";
8
+
9
+ option optimize_for = LITE_RUNTIME;
10
+
11
+ package checkin_proto;
12
+
13
+ import "android_checkin.proto";
14
+
15
+ // A concrete name/value pair sent to the device's Gservices database.
16
+ message GservicesSetting {
17
+ required bytes name = 1;
18
+ required bytes value = 2;
19
+ }
20
+
21
+ // Devices send this every few hours to tell us how they're doing.
22
+ message AndroidCheckinRequest {
23
+ // IMEI (used by GSM phones) is sent and stored as 15 decimal
24
+ // digits; the 15th is a check digit.
25
+ optional string imei = 1; // IMEI, reported but not logged.
26
+
27
+ // MEID (used by CDMA phones) is sent and stored as 14 hexadecimal
28
+ // digits (no check digit).
29
+ optional string meid = 10; // MEID, reported but not logged.
30
+
31
+ // MAC address (used by non-phone devices). 12 hexadecimal digits;
32
+ // no separators (eg "0016E6513AC2", not "00:16:E6:51:3A:C2").
33
+ repeated string mac_addr = 9; // MAC address, reported but not logged.
34
+
35
+ // An array parallel to mac_addr, describing the type of interface.
36
+ // Currently accepted values: "wifi", "ethernet", "bluetooth". If
37
+ // not present, "wifi" is assumed.
38
+ repeated string mac_addr_type = 19;
39
+
40
+ // Serial number (a manufacturer-defined unique hardware
41
+ // identifier). Alphanumeric, case-insensitive.
42
+ optional string serial_number = 16;
43
+
44
+ // Older CDMA networks use an ESN (8 hex digits) instead of an MEID.
45
+ optional string esn = 17; // ESN, reported but not logged
46
+
47
+ optional int64 id = 2; // Android device ID, not logged
48
+ optional int64 logging_id = 7; // Pseudonymous logging ID for Sawmill
49
+ optional string digest = 3; // Digest of device provisioning, not logged.
50
+ optional string locale = 6; // Current locale in standard (xx_XX) format
51
+ required AndroidCheckinProto checkin = 4;
52
+
53
+ // DEPRECATED, see AndroidCheckinProto.requested_group
54
+ optional string desired_build = 5;
55
+
56
+ // Blob of data from the Market app to be passed to Market API server
57
+ optional string market_checkin = 8;
58
+
59
+ // SID cookies of any google accounts stored on the phone. Not logged.
60
+ repeated string account_cookie = 11;
61
+
62
+ // Time zone. Not currently logged.
63
+ optional string time_zone = 12;
64
+
65
+ // Security token used to validate the checkin request.
66
+ // Required for android IDs issued to Froyo+ devices, not for legacy IDs.
67
+ optional fixed64 security_token = 13;
68
+
69
+ // Version of checkin protocol.
70
+ //
71
+ // There are currently two versions:
72
+ //
73
+ // - version field missing: android IDs are assigned based on
74
+ // hardware identifiers. unsecured in the sense that you can
75
+ // "unregister" someone's phone by sending a registration request
76
+ // with their IMEI/MEID/MAC.
77
+ //
78
+ // - version=2: android IDs are assigned randomly. The device is
79
+ // sent a security token that must be included in all future
80
+ // checkins for that android id.
81
+ //
82
+ // - version=3: same as version 2, but the 'fragment' field is
83
+ // provided, and the device understands incremental updates to the
84
+ // gservices table (ie, only returning the keys whose values have
85
+ // changed.)
86
+ //
87
+ // (version=1 was skipped to avoid confusion with the "missing"
88
+ // version field that is effectively version 1.)
89
+ optional int32 version = 14;
90
+
91
+ // OTA certs accepted by device (base-64 SHA-1 of cert files). Not
92
+ // logged.
93
+ repeated string ota_cert = 15;
94
+
95
+ // Honeycomb and newer devices send configuration data with their checkin.
96
+ // optional DeviceConfigurationProto device_configuration = 18;
97
+
98
+ // A single CheckinTask on the device may lead to multiple checkin
99
+ // requests if there is too much log data to upload in a single
100
+ // request. For version 3 and up, this field will be filled in with
101
+ // the number of the request, starting with 0.
102
+ optional int32 fragment = 20;
103
+
104
+ // For devices supporting multiple users, the name of the current
105
+ // profile (they all check in independently, just as if they were
106
+ // multiple physical devices). This may not be set, even if the
107
+ // device is using multiuser. (checkin.user_number should be set to
108
+ // the ordinal of the user.)
109
+ optional string user_name = 21;
110
+
111
+ // For devices supporting multiple user profiles, the serial number
112
+ // for the user checking in. Not logged. May not be set, even if
113
+ // the device supportes multiuser. checkin.user_number is the
114
+ // ordinal of the user (0, 1, 2, ...), which may be reused if users
115
+ // are deleted and re-created. user_serial_number is never reused
116
+ // (unless the device is wiped).
117
+ optional int32 user_serial_number = 22;
118
+
119
+ // NEXT TAG: 23
120
+ }
121
+
122
+ // The response to the device.
123
+ message AndroidCheckinResponse {
124
+ required bool stats_ok = 1; // Whether statistics were recorded properly.
125
+ optional int64 time_msec = 3; // Time of day from server (Java epoch).
126
+ // repeated AndroidIntentProto intent = 2;
127
+
128
+ // Provisioning is sent if the request included an obsolete digest.
129
+ //
130
+ // For version <= 2, 'digest' contains the digest that should be
131
+ // sent back to the server on the next checkin, and 'setting'
132
+ // contains the entire gservices table (which replaces the entire
133
+ // current table on the device).
134
+ //
135
+ // for version >= 3, 'digest' will be absent. If 'settings_diff'
136
+ // is false, then 'setting' contains the entire table, as in version
137
+ // 2. If 'settings_diff' is true, then 'delete_setting' contains
138
+ // the keys to delete, and 'setting' contains only keys to be added
139
+ // or for which the value has changed. All other keys in the
140
+ // current table should be left untouched. If 'settings_diff' is
141
+ // absent, don't touch the existing gservices table.
142
+ //
143
+ optional string digest = 4;
144
+ optional bool settings_diff = 9;
145
+ repeated string delete_setting = 10;
146
+ repeated GservicesSetting setting = 5;
147
+
148
+ optional bool market_ok = 6; // If Market got the market_checkin data OK.
149
+
150
+ optional fixed64 android_id = 7; // From the request, or newly assigned
151
+ optional fixed64 security_token = 8; // The associated security token
152
+
153
+ optional string version_info = 11;
154
+ // NEXT TAG: 12
155
+ }
@@ -0,0 +1,328 @@
1
+ // Copyright 2013 The Chromium Authors. All rights reserved.
2
+ // Use of this source code is governed by a BSD-style license that can be
3
+ // found in the LICENSE file.
4
+ //
5
+ // MCS protocol for communication between Chrome client and Mobile Connection
6
+ // Server .
7
+
8
+ syntax = "proto2";
9
+
10
+ option optimize_for = LITE_RUNTIME;
11
+
12
+ package mcs_proto;
13
+
14
+ /*
15
+ Common fields/comments:
16
+
17
+ stream_id: no longer sent by server, each side keeps a counter
18
+ last_stream_id_received: sent only if a packet was received since last time
19
+ a last_stream was sent
20
+ status: new bitmask including the 'idle' as bit 0.
21
+
22
+ */
23
+
24
+ /**
25
+ TAG: 0
26
+ */
27
+ message HeartbeatPing {
28
+ optional int32 stream_id = 1;
29
+ optional int32 last_stream_id_received = 2;
30
+ optional int64 status = 3;
31
+ }
32
+
33
+ /**
34
+ TAG: 1
35
+ */
36
+ message HeartbeatAck {
37
+ optional int32 stream_id = 1;
38
+ optional int32 last_stream_id_received = 2;
39
+ optional int64 status = 3;
40
+ }
41
+
42
+ message ErrorInfo {
43
+ required int32 code = 1;
44
+ optional string message = 2;
45
+ optional string type = 3;
46
+ optional Extension extension = 4;
47
+ }
48
+
49
+ // MobileSettings class.
50
+ // "u:f", "u:b", "u:s" - multi user devices reporting foreground, background
51
+ // and stopped users.
52
+ // hbping: heatbeat ping interval
53
+ // rmq2v: include explicit stream IDs
54
+
55
+ message Setting {
56
+ required string name = 1;
57
+ required string value = 2;
58
+ }
59
+
60
+ message HeartbeatStat {
61
+ required string ip = 1;
62
+ required bool timeout = 2;
63
+ required int32 interval_ms = 3;
64
+ }
65
+
66
+ message HeartbeatConfig {
67
+ optional bool upload_stat = 1;
68
+ optional string ip = 2;
69
+ optional int32 interval_ms = 3;
70
+ }
71
+
72
+ // ClientEvents are used to inform the server of failed and successful
73
+ // connections.
74
+ message ClientEvent {
75
+ enum Type {
76
+ UNKNOWN = 0;
77
+ // Count of discarded events if the buffer filled up and was trimmed.
78
+ DISCARDED_EVENTS = 1;
79
+ // Failed connection event: the connection failed to be established or we
80
+ // had a login error.
81
+ FAILED_CONNECTION = 2;
82
+ // Successful connection event: information about the last successful
83
+ // connection, including the time at which it was established.
84
+ SUCCESSFUL_CONNECTION = 3;
85
+ }
86
+
87
+ // Common fields [1-99]
88
+ optional Type type = 1;
89
+
90
+ // Fields for DISCARDED_EVENTS messages [100-199]
91
+ optional uint32 number_discarded_events = 100;
92
+
93
+ // Fields for FAILED_CONNECTION and SUCCESSFUL_CONNECTION messages [200-299]
94
+ // Network type is a value in net::NetworkChangeNotifier::ConnectionType.
95
+ optional int32 network_type = 200;
96
+ // Reserved for network_port.
97
+ reserved 201;
98
+ optional uint64 time_connection_started_ms = 202;
99
+ optional uint64 time_connection_ended_ms = 203;
100
+ // Error code should be a net::Error value.
101
+ optional int32 error_code = 204;
102
+
103
+ // Fields for SUCCESSFUL_CONNECTION messages [300-399]
104
+ optional uint64 time_connection_established_ms = 300;
105
+ }
106
+
107
+ /**
108
+ TAG: 2
109
+ */
110
+ message LoginRequest {
111
+ enum AuthService {
112
+ ANDROID_ID = 2;
113
+ }
114
+ required string id = 1; // Must be present ( proto required ), may be empty
115
+ // string.
116
+ // mcs.android.com.
117
+ required string domain = 2;
118
+ // Decimal android ID
119
+ required string user = 3;
120
+
121
+ required string resource = 4;
122
+
123
+ // Secret
124
+ required string auth_token = 5;
125
+
126
+ // Format is: android-HEX_DEVICE_ID
127
+ // The user is the decimal value.
128
+ optional string device_id = 6;
129
+
130
+ // RMQ1 - no longer used
131
+ optional int64 last_rmq_id = 7;
132
+
133
+ repeated Setting setting = 8;
134
+ //optional int32 compress = 9;
135
+ repeated string received_persistent_id = 10;
136
+
137
+ // Replaced by "rmq2v" setting
138
+ // optional bool include_stream_ids = 11;
139
+
140
+ optional bool adaptive_heartbeat = 12;
141
+ optional HeartbeatStat heartbeat_stat = 13;
142
+ // Must be true.
143
+ optional bool use_rmq2 = 14;
144
+ optional int64 account_id = 15;
145
+
146
+ // ANDROID_ID = 2
147
+ optional AuthService auth_service = 16;
148
+
149
+ optional int32 network_type = 17;
150
+ optional int64 status = 18;
151
+
152
+ // 19, 20, and 21 are not currently populated by Chrome.
153
+ reserved 19, 20, 21;
154
+
155
+ // Events recorded on the client after the last successful connection.
156
+ repeated ClientEvent client_event = 22;
157
+ }
158
+
159
+ /**
160
+ * TAG: 3
161
+ */
162
+ message LoginResponse {
163
+ required string id = 1;
164
+ // Not used.
165
+ optional string jid = 2;
166
+ // Null if login was ok.
167
+ optional ErrorInfo error = 3;
168
+ repeated Setting setting = 4;
169
+ optional int32 stream_id = 5;
170
+ // Should be "1"
171
+ optional int32 last_stream_id_received = 6;
172
+ optional HeartbeatConfig heartbeat_config = 7;
173
+ // used by the client to synchronize with the server timestamp.
174
+ optional int64 server_timestamp = 8;
175
+ }
176
+
177
+ message StreamErrorStanza {
178
+ required string type = 1;
179
+ optional string text = 2;
180
+ }
181
+
182
+ /**
183
+ * TAG: 4
184
+ */
185
+ message Close {
186
+ }
187
+
188
+ message Extension {
189
+ // 12: SelectiveAck
190
+ // 13: StreamAck
191
+ required int32 id = 1;
192
+ required bytes data = 2;
193
+ }
194
+
195
+ /**
196
+ * TAG: 7
197
+ * IqRequest must contain a single extension. IqResponse may contain 0 or 1
198
+ * extensions.
199
+ */
200
+ message IqStanza {
201
+ enum IqType {
202
+ GET = 0;
203
+ SET = 1;
204
+ RESULT = 2;
205
+ IQ_ERROR = 3;
206
+ }
207
+
208
+ optional int64 rmq_id = 1;
209
+ required IqType type = 2;
210
+ required string id = 3;
211
+ optional string from = 4;
212
+ optional string to = 5;
213
+ optional ErrorInfo error = 6;
214
+
215
+ // Only field used in the 38+ protocol (besides common last_stream_id_received, status, rmq_id)
216
+ optional Extension extension = 7;
217
+
218
+ optional string persistent_id = 8;
219
+ optional int32 stream_id = 9;
220
+ optional int32 last_stream_id_received = 10;
221
+ optional int64 account_id = 11;
222
+ optional int64 status = 12;
223
+ }
224
+
225
+ message AppData {
226
+ required string key = 1;
227
+ required string value = 2;
228
+ }
229
+
230
+ /**
231
+ * TAG: 8
232
+ */
233
+ message DataMessageStanza {
234
+ // Not used.
235
+ // optional int64 rmq_id = 1;
236
+
237
+ // This is the message ID, set by client, DMP.9 (message_id)
238
+ optional string id = 2;
239
+
240
+ // Project ID of the sender, DMP.1
241
+ required string from = 3;
242
+
243
+ // Part of DMRequest - also the key in DataMessageProto.
244
+ optional string to = 4;
245
+
246
+ // Package name. DMP.2
247
+ required string category = 5;
248
+
249
+ // The collapsed key, DMP.3
250
+ optional string token = 6;
251
+
252
+ // User data + GOOGLE. prefixed special entries, DMP.4
253
+ repeated AppData app_data = 7;
254
+
255
+ // Not used.
256
+ optional bool from_trusted_server = 8;
257
+
258
+ // Part of the ACK protocol, returned in DataMessageResponse on server side.
259
+ // It's part of the key of DMP.
260
+ optional string persistent_id = 9;
261
+
262
+ // In-stream ack. Increments on each message sent - a bit redundant
263
+ // Not used in DMP/DMR.
264
+ optional int32 stream_id = 10;
265
+ optional int32 last_stream_id_received = 11;
266
+
267
+ // Not used.
268
+ // optional string permission = 12;
269
+
270
+ // Sent by the device shortly after registration.
271
+ optional string reg_id = 13;
272
+
273
+ // Not used.
274
+ // optional string pkg_signature = 14;
275
+ // Not used.
276
+ // optional string client_id = 15;
277
+
278
+ // serial number of the target user, DMP.8
279
+ // It is the 'serial number' according to user manager.
280
+ optional int64 device_user_id = 16;
281
+
282
+ // Time to live, in seconds.
283
+ optional int32 ttl = 17;
284
+ // Timestamp ( according to client ) when message was sent by app, in seconds
285
+ optional int64 sent = 18;
286
+
287
+ // How long has the message been queued before the flush, in seconds.
288
+ // This is needed to account for the time difference between server and
289
+ // client: server should adjust 'sent' based on its 'receive' time.
290
+ optional int32 queued = 19;
291
+
292
+ optional int64 status = 20;
293
+
294
+ // Optional field containing the binary payload of the message.
295
+ optional bytes raw_data = 21;
296
+
297
+ // Not used.
298
+ // The maximum delay of the message, in seconds.
299
+ // optional int32 max_delay = 22;
300
+
301
+ // Not used.
302
+ // How long the message was delayed before it was sent, in seconds.
303
+ // optional int32 actual_delay = 23;
304
+
305
+ // If set the server requests immediate ack. Used for important messages and
306
+ // for testing.
307
+ optional bool immediate_ack = 24;
308
+
309
+ // Not used.
310
+ // Enables message receipts from MCS/GCM back to CCS clients
311
+ // optional bool delivery_receipt_requested = 25;
312
+ }
313
+
314
+ /**
315
+ Included in IQ with ID 13, sent from client or server after 10 unconfirmed
316
+ messages.
317
+ */
318
+ message StreamAck {
319
+ // No last_streamid_received required. This is included within an IqStanza,
320
+ // which includes the last_stream_id_received.
321
+ }
322
+
323
+ /**
324
+ Included in IQ sent after LoginResponse from server with ID 12.
325
+ */
326
+ message SelectiveAck {
327
+ repeated string id = 1;
328
+ }
@@ -1,11 +1,9 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pycupra
3
- Version: 0.1.11
3
+ Version: 0.1.13
4
4
  Summary: A library to read and send vehicle data via Cupra/Seat portal using the same API calls as the MyCupra/MySeat mobile app.
5
- Home-page: https://github.com/WulfgarW/pycupra
6
- Author: WulfgarW
7
- License: APACHE-2.0
8
- Provides: pycupra
5
+ License-Expression: Apache-2.0
6
+ Requires-Python: >=3.10
9
7
  Description-Content-Type: text/markdown
10
8
  License-File: LICENSE
11
9
  Requires-Dist: aiohttp
@@ -14,14 +12,8 @@ Requires-Dist: cryptography
14
12
  Requires-Dist: lxml
15
13
  Requires-Dist: PyJWT
16
14
  Requires-Dist: xmltodict
17
- Dynamic: author
18
- Dynamic: description
19
- Dynamic: description-content-type
20
- Dynamic: home-page
15
+ Requires-Dist: pandas
21
16
  Dynamic: license-file
22
- Dynamic: provides
23
- Dynamic: requires-dist
24
- Dynamic: summary
25
17
 
26
18
  # PyCupra
27
19
 
@@ -1,6 +1,6 @@
1
+ example/PyCupra.py,sha256=FMg3974wOAo_lVhpjTu2omXENbyecZ_93divOMBeS6I,26722
1
2
  pycupra/__init__.py,sha256=p0880jPkLqOErX3u3qaLboBLOsEHFpe44axApdaGeqI,231
2
- pycupra/__version__.py,sha256=CBIUvP7kBoPPjvk-0KBtBB_vkj1PUBBiezoLxmbQBps,208
3
- pycupra/connection.py,sha256=-wfamvOPP0gDGo5Picd2zx9pHGs90vVqqCxp6SFn6PQ,93278
3
+ pycupra/connection.py,sha256=blnAdaFcXTYhHkKVP4akbL0FdMrU2SNTnpZe_-j4iuE,93359
4
4
  pycupra/const.py,sha256=5b4uuNUE1AGZHmqQfIZv-76Ad20mJTXXQPGI8TU6FfY,10631
5
5
  pycupra/dashboard.py,sha256=_8qlVr1k_L3_7A7dDc9ugzpGK_Dg6UZgv_Pp-1pPaPE,45337
6
6
  pycupra/exceptions.py,sha256=Nq_F79GP8wjHf5lpvPy9TbSIrRHAJrFMo0T1N9TcgSQ,2917
@@ -8,18 +8,21 @@ pycupra/firebase.py,sha256=lmI4a8f5VAlmHAqP2OiJWZhn7dmhyHkIBxL252qdtkA,3454
8
8
  pycupra/utilities.py,sha256=6sDxWP13-XtxmqhuBJBGdVbkj48BQ9AxFMrBPxH0J7g,2679
9
9
  pycupra/vehicle.py,sha256=svuZ9xabbHa67saOQ1yGJcB8WCxV3zJmp32LFl8f_kQ,164254
10
10
  pycupra/firebase_messaging/__init__.py,sha256=oerLHWvEf4qRqu3GxSX6SLY_OYI430ydAiAhKtzyMEM,666
11
+ pycupra/firebase_messaging/android_checkin.proto,sha256=AW1Ew0iU3NdZpFCocNsG3MxFhEsoRcQH0yMpKhkj0Zg,3109
11
12
  pycupra/firebase_messaging/android_checkin_pb2.py,sha256=-U1oGroFt3KRuGDieae3iTcux6mAfx1TFkE1Q35ul2E,2849
12
- pycupra/firebase_messaging/android_checkin_pb2.pyi,sha256=7KL-zQIz2Zz7uftcLkv57Podzu-yk6trn50FN4X4A8E,9379
13
+ pycupra/firebase_messaging/android_checkin_pb2.pyi,sha256=3ZOH0c4aUujdeCLshpwslQ1DDzdLNzzp7_JV3yOGQYg,9636
14
+ pycupra/firebase_messaging/checkin.proto,sha256=bTIfw9ffqmNRgOLmJjpCrbJsOPLb5jEcy58EH_CsGaY,6265
13
15
  pycupra/firebase_messaging/checkin_pb2.py,sha256=lFzCIAkYz9NFUpRbVuW-2kM_EaYKVWHeifHS1PV2eHQ,2795
14
16
  pycupra/firebase_messaging/checkin_pb2.pyi,sha256=mHOqbedt5jZDI20jcyFrTMSnQ0f_tq4zkIlHiaSC3xI,14626
15
17
  pycupra/firebase_messaging/const.py,sha256=XMy8kJ37uBSkTpVpdLeSjxk5UIPuvDuo-rxYdgmo2G8,1191
16
18
  pycupra/firebase_messaging/fcmpushclient.py,sha256=5kAp6rnl9EJqVPn9OfHFKUfFDRWA9LAVbfiL-pLRSqo,30550
17
19
  pycupra/firebase_messaging/fcmregister.py,sha256=yZngC-0ZfTygtjfdzg03OW_3xk2n_uSQQ3Lrash5Y_E,18091
20
+ pycupra/firebase_messaging/mcs.proto,sha256=HUgnx-KTQiXIER1bJ0swpCt1W0BILru3lxhwmBezj-A,8265
18
21
  pycupra/firebase_messaging/mcs_pb2.py,sha256=nwXY7IDgLYPxgpSGs6wyTSyYDdomQsyGqH8R8EgODLg,7733
19
22
  pycupra/firebase_messaging/mcs_pb2.pyi,sha256=HfIhInC3wRg8_caKwUm-V3knE2jTdEQvBy6uXgQ5rHY,33959
20
23
  pycupra/firebase_messaging/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
21
- pycupra-0.1.11.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
22
- pycupra-0.1.11.dist-info/METADATA,sha256=Xh1CM38qBXwPXTUvOIUEXVOMKKP0DgB6jkMlGLEQngA,3758
23
- pycupra-0.1.11.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
24
- pycupra-0.1.11.dist-info/top_level.txt,sha256=9Lbj_jG4JvpGwt6K3AwhWFc0XieDnuHFOP4x44wSXSQ,8
25
- pycupra-0.1.11.dist-info/RECORD,,
24
+ pycupra-0.1.13.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
25
+ pycupra-0.1.13.dist-info/METADATA,sha256=c9S1nFVpwzfGMc4hXZwfqHWYQ4xBTbEQ6S-8Q_9KSsA,3577
26
+ pycupra-0.1.13.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
27
+ pycupra-0.1.13.dist-info/top_level.txt,sha256=utR3J3sG_3PvNyamWDcJnkyxszbts_8tosWSHZ7zfLg,16
28
+ pycupra-0.1.13.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
pycupra/__version__.py DELETED
@@ -1,6 +0,0 @@
1
- """
2
- pycupra - A Python 3 library for interacting with the My Cupra/My Seat portal.
3
-
4
- For more details and documentation, visit the github page at https://github.com/WulfgarW/pycupra
5
- """
6
- __version__ = "0.1.11"