morango 0.7.1__py2.py3-none-any.whl → 0.8.1__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 morango might be problematic. Click here for more details.

Files changed (50) hide show
  1. morango/__init__.py +1 -6
  2. morango/api/viewsets.py +6 -1
  3. morango/apps.py +1 -2
  4. morango/constants/transfer_stages.py +1 -1
  5. morango/constants/transfer_statuses.py +1 -1
  6. morango/migrations/0001_initial.py +0 -2
  7. morango/migrations/0001_squashed_0024_auto_20240129_1757.py +583 -0
  8. morango/migrations/0002_auto_20170511_0400.py +0 -2
  9. morango/migrations/0003_auto_20170519_0543.py +0 -2
  10. morango/migrations/0004_auto_20170520_2112.py +0 -2
  11. morango/migrations/0005_auto_20170629_2139.py +0 -2
  12. morango/migrations/0006_instanceidmodel_system_id.py +0 -2
  13. morango/migrations/0007_auto_20171018_1615.py +0 -2
  14. morango/migrations/0008_auto_20171114_2217.py +0 -2
  15. morango/migrations/0009_auto_20171205_0252.py +0 -2
  16. morango/migrations/0010_auto_20171206_1615.py +0 -2
  17. morango/migrations/0011_sharedkey.py +0 -2
  18. morango/migrations/0012_auto_20180927_1658.py +0 -2
  19. morango/migrations/0013_auto_20190627_1513.py +0 -2
  20. morango/migrations/0014_syncsession_extra_fields.py +0 -2
  21. morango/migrations/0015_auto_20200508_2104.py +2 -3
  22. morango/migrations/0016_store_deserialization_error.py +2 -3
  23. morango/migrations/0017_store_last_transfer_session_id.py +1 -2
  24. morango/migrations/0018_auto_20210714_2216.py +2 -3
  25. morango/migrations/0019_auto_20220113_1807.py +2 -3
  26. morango/migrations/0020_postgres_fix_nullable.py +0 -2
  27. morango/migrations/0021_store_partition_index_create.py +0 -2
  28. morango/migrations/0022_rename_instance_fields.py +0 -2
  29. morango/migrations/0023_add_instance_id_fields.py +0 -2
  30. morango/migrations/0024_auto_20240129_1757.py +28 -0
  31. morango/models/__init__.py +0 -6
  32. morango/models/certificates.py +3 -9
  33. morango/models/core.py +13 -23
  34. morango/models/fields/crypto.py +4 -7
  35. morango/models/fields/uuids.py +2 -1
  36. morango/models/utils.py +5 -6
  37. morango/proquint.py +2 -3
  38. morango/registry.py +1 -32
  39. morango/sync/backends/utils.py +10 -11
  40. morango/sync/syncsession.py +7 -12
  41. morango/urls.py +3 -3
  42. morango/utils.py +2 -3
  43. {morango-0.7.1.dist-info → morango-0.8.1.dist-info}/METADATA +7 -7
  44. morango-0.8.1.dist-info/RECORD +78 -0
  45. {morango-0.7.1.dist-info → morango-0.8.1.dist-info}/WHEEL +1 -1
  46. morango/models/morango_mptt.py +0 -33
  47. morango-0.7.1.dist-info/RECORD +0 -77
  48. {morango-0.7.1.dist-info → morango-0.8.1.dist-info}/AUTHORS.md +0 -0
  49. {morango-0.7.1.dist-info → morango-0.8.1.dist-info}/LICENSE +0 -0
  50. {morango-0.7.1.dist-info → morango-0.8.1.dist-info}/top_level.txt +0 -0
morango/utils.py CHANGED
@@ -1,14 +1,13 @@
1
1
  import os
2
- import six
3
2
  from importlib import import_module
4
3
 
5
4
  from django.conf import settings
6
5
 
7
6
  from morango.constants import settings as default_settings
8
7
  from morango.constants.capabilities import ALLOW_CERTIFICATE_PUSHING
9
- from morango.constants.capabilities import GZIP_BUFFER_POST
10
8
  from morango.constants.capabilities import ASYNC_OPERATIONS
11
9
  from morango.constants.capabilities import FSIC_V2_FORMAT
10
+ from morango.constants.capabilities import GZIP_BUFFER_POST
12
11
 
13
12
 
14
13
  def do_import(import_string):
@@ -32,7 +31,7 @@ class Settings(object):
32
31
  def __getattribute__(self, key):
33
32
  """Coalesces settings with the defaults"""
34
33
  value = getattr(settings, key, getattr(default_settings, key, None))
35
- if key == "MORANGO_INSTANCE_INFO" and isinstance(value, six.string_types):
34
+ if key == "MORANGO_INSTANCE_INFO" and isinstance(value, str):
36
35
  value = dict(do_import(value))
37
36
  return value
38
37
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: morango
3
- Version: 0.7.1
3
+ Version: 0.8.1
4
4
  Summary: Pure Python sqlite-based Django DB replication engine.
5
5
  Home-page: https://github.com/learningequality/morango
6
6
  Author: Learning Equality
@@ -12,22 +12,22 @@ Classifier: Intended Audience :: Developers
12
12
  Classifier: License :: OSI Approved :: MIT License
13
13
  Classifier: Natural Language :: English
14
14
  Classifier: Development Status :: 4 - Beta
15
- Classifier: Programming Language :: Python :: 2.7
16
15
  Classifier: Programming Language :: Python :: 3.6
17
16
  Classifier: Programming Language :: Python :: 3.7
18
17
  Classifier: Programming Language :: Python :: 3.8
19
18
  Classifier: Programming Language :: Python :: 3.9
20
19
  Classifier: Programming Language :: Python :: 3.10
21
20
  Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Requires-Python: >=3.6, <3.13
22
23
  Description-Content-Type: text/markdown
23
24
  License-File: LICENSE
24
25
  License-File: AUTHORS.md
25
- Requires-Dist: django <2,>=1.10
26
- Requires-Dist: django-mptt <0.10.0
26
+ Requires-Dist: django <4,>=3
27
+ Requires-Dist: django-mptt >0.10.0
27
28
  Requires-Dist: rsa <3.5,>=3.4.2
28
- Requires-Dist: djangorestframework ==3.9.1
29
- Requires-Dist: django-ipware <1.2,>=1.1.6
30
- Requires-Dist: future ==0.16.0
29
+ Requires-Dist: djangorestframework >3.10
30
+ Requires-Dist: django-ipware ==4.0.2
31
31
  Requires-Dist: requests
32
32
  Requires-Dist: ifcfg
33
33
 
@@ -0,0 +1,78 @@
1
+ morango/__init__.py,sha256=Ocl79hbbH8_jdr5dGC90VR1cAvZc05Rc0tkZttUnMjo,22
2
+ morango/apps.py,sha256=bs_LaTt1038Oh0OOWqaZKpF8rL9cg8rqW4hftIILPw8,559
3
+ morango/errors.py,sha256=okjt7FqSHIf3x9SmnmoW6aqNJ_g7Ye3Fx7tuQSNUYEI,1223
4
+ morango/proquint.py,sha256=YRjgceaYD_wDE8R-21AK5m6MSzbarIBP_kDxJ_gHsbQ,3679
5
+ morango/registry.py,sha256=uaB2qdVMiWps_eB7F1r43qf_5rteUvgRb6fcEYdCt2Y,9430
6
+ morango/urls.py,sha256=pIjnq01BUNxnC0BucRXMr_0H366U5l88k65r67JtHK8,131
7
+ morango/utils.py,sha256=psppzkIjlrmWI2bq2a1wGW0f_0VhdszYleLbm4C4aAs,3652
8
+ morango/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ morango/api/fields.py,sha256=LjEuUrF86JABN45HSXHpUoWHHBDeb73jqD_uS6QY0EA,273
10
+ morango/api/parsers.py,sha256=PxNHz94V3VrSCEVYxuTRO2h8mTg9H7WSy891BxUvsac,557
11
+ morango/api/permissions.py,sha256=B3biuWZfm1VXbIO5pKR2jYBNQBfgY2oKfX3dargtb6A,3550
12
+ morango/api/serializers.py,sha256=GtG_6wcJst68o3NHuIi2q_pX9cOIIIrqmHDZRgR-BdE,5444
13
+ morango/api/urls.py,sha256=D3VFRf4wm1u-Pswu6ZGqJoG-UHQFTI7GGXcqNyz0t5Y,1037
14
+ morango/api/viewsets.py,sha256=qxc4RhQrnJKVAq6F1X9Yo1tv3eGmvF0QJ8-gBrR9lOA,20859
15
+ morango/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ morango/constants/api_urls.py,sha256=mmGJyyVtrMxjIMAF2iBHbjGVndsvW_z1IQH-GhW3L-g,453
17
+ morango/constants/capabilities.py,sha256=KaTQpfpg6l4G0aGXJnOKi7ibbshdg-1fA9aLl-Qc_Oc,166
18
+ morango/constants/settings.py,sha256=dygRwRZhYkTdRhEltc5QqdoQBLkuZ-f9fdFMVrCaDpQ,2009
19
+ morango/constants/transfer_stages.py,sha256=mp-1V22ba0gKdylJgnUJ8Jh-Qs9-3-LsY_Q_cxRUgmI,1378
20
+ morango/constants/transfer_statuses.py,sha256=BU3_dx7RxXpWF3pDjC9JsDe2xzKSGiqZFVBbdIY7_aQ,509
21
+ morango/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ morango/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
+ morango/management/commands/cleanupsyncs.py,sha256=Huaz8etLNbmW8X-Vy4x1QY801JYln0iyaeUTJF2L3kE,4833
24
+ morango/migrations/0001_initial.py,sha256=ZFEKusKCIUsgUuHpF-eWqEqu7FrhO2ikkfu5KfYfXx0,11892
25
+ morango/migrations/0001_squashed_0024_auto_20240129_1757.py,sha256=K-71iKz9cKpb-zrxuoDJVWafZM3U_hM6EpX6aNzsFjM,21770
26
+ morango/migrations/0002_auto_20170511_0400.py,sha256=9EQcTl2xHd-rwx_NWCLzo8GU3u7MFA3WOryyKYEbHUw,2263
27
+ morango/migrations/0003_auto_20170519_0543.py,sha256=5YfHW6IcT57tgaXW6pnWHmL6kfgauTW2nao9zQr3nP8,641
28
+ morango/migrations/0004_auto_20170520_2112.py,sha256=T7rGjSPXUGnanDr5SJKj5SHZEQYSIaND60vRaK3DObw,517
29
+ morango/migrations/0005_auto_20170629_2139.py,sha256=PL1I3wybrDgDxY8hSmZmUfpxOulr6O2ywui7ue_dvKw,654
30
+ morango/migrations/0006_instanceidmodel_system_id.py,sha256=L4Y5VN1-IBnBPs-lyQrJronf5lrXjvwGFSTKuug-jjo,435
31
+ morango/migrations/0007_auto_20171018_1615.py,sha256=otylWm8eBH8W_fJx-W5C6e8mfhqPdrb-6SZh0GCpFZo,8149
32
+ morango/migrations/0008_auto_20171114_2217.py,sha256=x_2rKsqfH-yRHmuV3qnBgPRBBe0C2Z08aryWcBZU_jw,2085
33
+ morango/migrations/0009_auto_20171205_0252.py,sha256=XxkPK4AsERDw6ZBojS0M1ElMTuhVjxRWDSMDMnvPbDM,359
34
+ morango/migrations/0010_auto_20171206_1615.py,sha256=2Svr2sMBO31fOzm26HdgAL-YmHGOzgWnDMEuoaDWrOU,800
35
+ morango/migrations/0011_sharedkey.py,sha256=fZkD4-2d628Cg0-ekvQnI_CAIVCuei4R2zre9_i87ms,926
36
+ morango/migrations/0012_auto_20180927_1658.py,sha256=29ibsHWltRyUk3lXR3ZLzmeCY2SRWpW7KXU8zmTzIfk,946
37
+ morango/migrations/0013_auto_20190627_1513.py,sha256=eG6pdMh_xqz9nfn9z0F987rR12i6JswSFFKCjsHwsCQ,464
38
+ morango/migrations/0014_syncsession_extra_fields.py,sha256=11qg91F0ZCaxh3AS17xEUH5xlxBDyWSi3RRgbE593xE,440
39
+ morango/migrations/0015_auto_20200508_2104.py,sha256=nD3FkddbgWYDoIau79X5-gq_xMjlJV_EQF14MYff-Fc,667
40
+ morango/migrations/0016_store_deserialization_error.py,sha256=yGenUzUrcIzWDR2_7h0tU_8M-2tBC2-ldjcPrV6510M,441
41
+ morango/migrations/0017_store_last_transfer_session_id.py,sha256=oVQUlvo247JgecQ2NY-Xb5kyoK4rRhb09YbrRj1enmo,521
42
+ morango/migrations/0018_auto_20210714_2216.py,sha256=ghAZmcFXqlWPuSiFt-ikwfZJg-3IKOXiC_sa6nbzme0,1599
43
+ morango/migrations/0019_auto_20220113_1807.py,sha256=jRbNz8OQScW4KN-JsY_KZb7yy5kSO30iWhSAhCHC6w4,1521
44
+ morango/migrations/0020_postgres_fix_nullable.py,sha256=QHgSdEzmIzpLn0HXDWRepmBhvc7S-1emErNQVyrYAfA,1206
45
+ morango/migrations/0021_store_partition_index_create.py,sha256=B9p20AQA0BVqlfmaPYd4RAghYtJKvrdzafWIUAbV7w0,2209
46
+ morango/migrations/0022_rename_instance_fields.py,sha256=xn2PGlgkHOPRYBHrbGdh6XGGHl_X5HPFEIgmGIG0Ycw,592
47
+ morango/migrations/0023_add_instance_id_fields.py,sha256=ovO_AVGLPlLpEc72UhrJ0TpFYCci_CzDcEdmnNJzLew,635
48
+ morango/migrations/0024_auto_20240129_1757.py,sha256=Buy1T4PiTFo8zP7p2HY-3gmiJurQsSnu7CBgTSvOxXg,762
49
+ morango/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ morango/models/__init__.py,sha256=ws6VwRPs7iKLRfFSuRpUESTZlGEmSk0Nv61chh-Gn2Q,1722
51
+ morango/models/certificates.py,sha256=XVq6tKOwLZjq2hw0j5hrBQGsm5H-GSPZ5ZVOg9An9Hw,15110
52
+ morango/models/core.py,sha256=dWSft-HFapnwQzdaycHnMeiE7x7Lr3lJRJl5To3LtXs,38608
53
+ morango/models/fsic_utils.py,sha256=B9RM-uPZFvEXWbsPeeit5qA21gKGpA0NkKCLFIdNI_0,7130
54
+ morango/models/manager.py,sha256=fzzX7k8qV5W5dMBb0ASOBNRJRpvQZbEG1hgyuMtzt4g,163
55
+ morango/models/query.py,sha256=eHcf9PYYEDShN6lRng7Ow9RJwNFPdKI1hDbVUXeyl9U,869
56
+ morango/models/signals.py,sha256=R17Fqddbg2AgAVnH4oZPrDQMWi94R2XsLmnUbrgKS2I,478
57
+ morango/models/utils.py,sha256=8J138TR3FkslovfUWkLLEpODieFtmHKne7Lm1I8iPXk,6588
58
+ morango/models/fields/__init__.py,sha256=dzxg8-_v3irXkPnyCsiVDur0gG0RJfKzFcshjL6Y-9s,225
59
+ morango/models/fields/crypto.py,sha256=Uyjqyt63ztwdaJ7-bftnu8TytSYqAdzFhzVKVeeP5a4,13842
60
+ morango/models/fields/uuids.py,sha256=w7M8KlA8oLPascq14tcor89V92IGxx2XtdweS-0lF6A,4275
61
+ morango/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
62
+ morango/sync/context.py,sha256=_gqfE-RfTIn0UMKFeI2snIJEGCbmR_NRl-Ts5u35B7Q,17815
63
+ morango/sync/controller.py,sha256=rcibQcq579hneUef2p41Ze4OCysLI7rVz6FCFIfYiVA,11575
64
+ morango/sync/operations.py,sha256=jDIHPF8IdqoUOer3aaoq9VHcL0-BVeS7-wlMxMHA1-w,69494
65
+ morango/sync/session.py,sha256=9CTLhpEPM8q1M_b2HHxouZbzm7vBJoImoqPWqdodgII,3853
66
+ morango/sync/syncsession.py,sha256=82TzwxNOH4QSR41mbRWAHWlZOAF_XxaWIRk6EXIWj1o,25292
67
+ morango/sync/utils.py,sha256=BrG8CYVmaAhRNa_HYuPCYSnncskSsW_ig0Cf7xsY2mo,8792
68
+ morango/sync/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
+ morango/sync/backends/base.py,sha256=zQP5hOB2Qw0qv0G00LXFHl2GQ3b0bheyujdNVl5rT-8,10867
70
+ morango/sync/backends/postgres.py,sha256=N0IeXN67AkdQKlD20b8LQZ1ocdarapL8pqu8FQAc6lM,19850
71
+ morango/sync/backends/sqlite.py,sha256=vg7kWFIF346-NjVwexYfjYbrrOyzzvcCmk5uUkqhabw,12850
72
+ morango/sync/backends/utils.py,sha256=UvyYByzRenOwtDvLPO_1wIOE8Yr88FnuAM2c4VSk7uQ,5145
73
+ morango-0.8.1.dist-info/AUTHORS.md,sha256=9Ussd3Fq3RPjHyQT_3AyGss5jiVbn858WQuIBOi1ajI,276
74
+ morango-0.8.1.dist-info/LICENSE,sha256=RkI6MjmrrTKa3aoPAVyk9QdeLZclcrKds6FH3phRSRU,1074
75
+ morango-0.8.1.dist-info/METADATA,sha256=Gk6Hf00RGUrtBT2lQQ4oveoEf99Nj45m7CZ1XweAvkU,2546
76
+ morango-0.8.1.dist-info/WHEEL,sha256=DZajD4pwLWue70CAfc7YaxT1wLUciNBvN_TTcvXpltE,110
77
+ morango-0.8.1.dist-info/top_level.txt,sha256=pzREWN0EeEq3yHDRast9XI081Ow_rtcm7WV0ZQTlIPY,8
78
+ morango-0.8.1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.42.0)
2
+ Generator: bdist_wheel (0.43.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any
@@ -1,33 +0,0 @@
1
- from mptt import managers
2
- from mptt import models
3
- from mptt import querysets
4
-
5
- from .manager import SyncableModelManager
6
- from .query import SyncableModelQuerySet
7
-
8
-
9
- class MorangoTreeQuerySet(querysets.TreeQuerySet, SyncableModelQuerySet):
10
- pass
11
-
12
-
13
- class MorangoMPTTTreeManager(managers.TreeManager, SyncableModelManager):
14
- def get_queryset(self):
15
- return MorangoTreeQuerySet(self.model, using=self._db)
16
-
17
- def _mptt_update(self, qs=None, **items):
18
- items["update_dirty_bit_to"] = None
19
- return super(MorangoMPTTTreeManager, self)._mptt_update(qs, **items)
20
-
21
-
22
- class MorangoMPTTModel(models.MPTTModel):
23
- """
24
- Any model that inherits from ``SyncableModel`` that also wants to inherit from ``MPTTModel`` should instead inherit
25
- from ``MorangoMPTTModel``, which modifies some behavior to make it safe for the syncing system.
26
- """
27
-
28
- _internal_mptt_fields_not_to_serialize = ("lft", "rght", "tree_id", "level")
29
-
30
- objects = MorangoMPTTTreeManager()
31
-
32
- class Meta:
33
- abstract = True
@@ -1,77 +0,0 @@
1
- morango/__init__.py,sha256=4JEWqdXPhqGXLmHDKnCM3ASxeQQ1jNJYFbtMSpnikdQ,190
2
- morango/apps.py,sha256=qJ0Tu2YmprNC-7iYlOb1OTG-JxRAweHLnbyb5kHlU9U,546
3
- morango/errors.py,sha256=okjt7FqSHIf3x9SmnmoW6aqNJ_g7Ye3Fx7tuQSNUYEI,1223
4
- morango/proquint.py,sha256=oHlbNPi7bkqylUhRbq9GbpdtywxU0AXKslJrowcsrqg,3735
5
- morango/registry.py,sha256=QxZ6rluN2mktb-NRKZi_u5WHhZGGZWVmkwoZbX5ZlSQ,10999
6
- morango/urls.py,sha256=osmMP1nhEfNAgSJVJgeoQHP4muHOHxtjk-SEcx7Jdy8,141
7
- morango/utils.py,sha256=_ttgTOw4g1Mb1huzP3Xgc4Bj5HzZq8_2M0TAhNp8MTc,3676
8
- morango/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
- morango/api/fields.py,sha256=LjEuUrF86JABN45HSXHpUoWHHBDeb73jqD_uS6QY0EA,273
10
- morango/api/parsers.py,sha256=PxNHz94V3VrSCEVYxuTRO2h8mTg9H7WSy891BxUvsac,557
11
- morango/api/permissions.py,sha256=B3biuWZfm1VXbIO5pKR2jYBNQBfgY2oKfX3dargtb6A,3550
12
- morango/api/serializers.py,sha256=GtG_6wcJst68o3NHuIi2q_pX9cOIIIrqmHDZRgR-BdE,5444
13
- morango/api/urls.py,sha256=D3VFRf4wm1u-Pswu6ZGqJoG-UHQFTI7GGXcqNyz0t5Y,1037
14
- morango/api/viewsets.py,sha256=SMDx36UTCeyMiuGRiGPFmILmaPe9J8MxQZSr0irfUWQ,20769
15
- morango/constants/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- morango/constants/api_urls.py,sha256=mmGJyyVtrMxjIMAF2iBHbjGVndsvW_z1IQH-GhW3L-g,453
17
- morango/constants/capabilities.py,sha256=KaTQpfpg6l4G0aGXJnOKi7ibbshdg-1fA9aLl-Qc_Oc,166
18
- morango/constants/settings.py,sha256=dygRwRZhYkTdRhEltc5QqdoQBLkuZ-f9fdFMVrCaDpQ,2009
19
- morango/constants/transfer_stages.py,sha256=nmM-ywKPFcwOICPkHN_1e4xFOWTxwnvb99hr7du2HiM,1379
20
- morango/constants/transfer_statuses.py,sha256=__Reiqxal53Obq-Hch-Ty-HJwlEUZLFSBdRF9ytim0I,510
21
- morango/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- morango/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
- morango/management/commands/cleanupsyncs.py,sha256=Huaz8etLNbmW8X-Vy4x1QY801JYln0iyaeUTJF2L3kE,4833
24
- morango/migrations/0001_initial.py,sha256=ZUmqmw6DneAFBfsfhapyC3cIDneV9zqC7Lws61UN2VA,11933
25
- morango/migrations/0002_auto_20170511_0400.py,sha256=6gTEf4g56Y6ZvL0UHGK0AQvURPaWuAmpRVKONdP1GH4,2304
26
- morango/migrations/0003_auto_20170519_0543.py,sha256=ltBTLl130cjwtRao0zw_FXkEWMrGMTRj1mpgpJmaWP0,682
27
- morango/migrations/0004_auto_20170520_2112.py,sha256=rfINmzNZ7XP6XNb1Tx-RA7ItgHvboO8ggiiHakfBVok,558
28
- morango/migrations/0005_auto_20170629_2139.py,sha256=16Vf25ilpBQGoCbS31qRmnmBpnPER78cvfpTO8OfUIE,695
29
- morango/migrations/0006_instanceidmodel_system_id.py,sha256=dGt5i0sHUH_TJt8EhEbwHJ5nHPbMRoCw0buMKzHdlNU,476
30
- morango/migrations/0007_auto_20171018_1615.py,sha256=0Uy_QyS6Io0HZOhX6f8aNi3tUAFBOT8YKDUwIYDbtLU,8190
31
- morango/migrations/0008_auto_20171114_2217.py,sha256=CmgsrY62QR6q4-Knp6Wprdjlisw2Eoj82EWe6G5QxMQ,2126
32
- morango/migrations/0009_auto_20171205_0252.py,sha256=rLxitLhMZmlNQEyhO2fKbz0uP-GY89CVeHg9RnmeBBA,400
33
- morango/migrations/0010_auto_20171206_1615.py,sha256=hSRatMPa02elBmZCIpjyMHCaTRwPS5r6HM_pc1z4Txs,841
34
- morango/migrations/0011_sharedkey.py,sha256=pEi7FOC4F9u9uQvtXZf-WkdjOtGqtx0IzLo-fPU6ucc,967
35
- morango/migrations/0012_auto_20180927_1658.py,sha256=vpDk_-iMdp6HkxsQUIrbg-G3QtkJQiEmloKOxayqUPk,987
36
- morango/migrations/0013_auto_20190627_1513.py,sha256=S2omdNIst5MOYHRf3u6CuXa5LtYdNmGHsX2ix8U2RDQ,505
37
- morango/migrations/0014_syncsession_extra_fields.py,sha256=1-o6Gu8KQs1ZzS8wkAUoQ7GoW43uoybQgClGfL2sSu0,481
38
- morango/migrations/0015_auto_20200508_2104.py,sha256=yt-i9gpBdprUTmoGl9me7a9b4BDfPUCN4nTZ22XdAHk,687
39
- morango/migrations/0016_store_deserialization_error.py,sha256=N0vftS_YKYws7rA-0SnPmT-_sLmyZvXTOr6FqaE2-MU,461
40
- morango/migrations/0017_store_last_transfer_session_id.py,sha256=eV3kSaX83O5gjA3KIBY0D-tzOVzTFMw_HNX31Y9IJtc,561
41
- morango/migrations/0018_auto_20210714_2216.py,sha256=paW3ofWuswa9BHCz2a-EvAUY6Ud-dqf0Cl6AM5sMcQI,1619
42
- morango/migrations/0019_auto_20220113_1807.py,sha256=xL-ZfBRqt5VJnDRywnZMk9q_t5UFXlwZwOV20mpQoAg,1541
43
- morango/migrations/0020_postgres_fix_nullable.py,sha256=BbViJ4TpziwfZcqQ7PRUuKOiJj13veXmozulbx0ouGY,1247
44
- morango/migrations/0021_store_partition_index_create.py,sha256=dqhfP6N0l68uIt3PI3kFbUln48g90mQINj1QO7jfUio,2250
45
- morango/migrations/0022_rename_instance_fields.py,sha256=MxFUGOtnIbG87u_phFAzoe2JkLuGe_CkFO7VHx6Wh8A,633
46
- morango/migrations/0023_add_instance_id_fields.py,sha256=lgTETXKFcXM1CnNwXb6kqJ38H0Ezy_XJhMhNkgLb7Bg,676
47
- morango/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- morango/models/__init__.py,sha256=6sTAlg7gpmX9xRmjw4GPLdjh6_FzZJEN-WEtRBsgGA8,1983
49
- morango/models/certificates.py,sha256=Kc4aDNJZMp4JQMqdpZDx6zp-qqG_OhAa5n4f-Q605r8,15331
50
- morango/models/core.py,sha256=64iEy1DTm_gEyJs4L9BQ8m7FTXkVMyawglIuziqrKmc,38940
51
- morango/models/fsic_utils.py,sha256=B9RM-uPZFvEXWbsPeeit5qA21gKGpA0NkKCLFIdNI_0,7130
52
- morango/models/manager.py,sha256=fzzX7k8qV5W5dMBb0ASOBNRJRpvQZbEG1hgyuMtzt4g,163
53
- morango/models/morango_mptt.py,sha256=K_ZF0lRv3EX6n5K5iCSCjDx4qVnMIG_gq9dAyIIQLIU,1024
54
- morango/models/query.py,sha256=eHcf9PYYEDShN6lRng7Ow9RJwNFPdKI1hDbVUXeyl9U,869
55
- morango/models/signals.py,sha256=R17Fqddbg2AgAVnH4oZPrDQMWi94R2XsLmnUbrgKS2I,478
56
- morango/models/utils.py,sha256=BCxsLIilPzkbfMQ2PnpUgxFc1wLP7o2pyYIf4-UJX9M,6644
57
- morango/models/fields/__init__.py,sha256=dzxg8-_v3irXkPnyCsiVDur0gG0RJfKzFcshjL6Y-9s,225
58
- morango/models/fields/crypto.py,sha256=S22N-SkQUxL2i032i_dDR-VuPXYHQ6AjsbJ9rqfAdaw,13984
59
- morango/models/fields/uuids.py,sha256=aZcT7RmsK3kLq3VgQsSSFJcx6zsj9kHo7VwxVz4LOTE,4283
60
- morango/sync/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
- morango/sync/context.py,sha256=_gqfE-RfTIn0UMKFeI2snIJEGCbmR_NRl-Ts5u35B7Q,17815
62
- morango/sync/controller.py,sha256=rcibQcq579hneUef2p41Ze4OCysLI7rVz6FCFIfYiVA,11575
63
- morango/sync/operations.py,sha256=jDIHPF8IdqoUOer3aaoq9VHcL0-BVeS7-wlMxMHA1-w,69494
64
- morango/sync/session.py,sha256=9CTLhpEPM8q1M_b2HHxouZbzm7vBJoImoqPWqdodgII,3853
65
- morango/sync/syncsession.py,sha256=82u95pFN68-Fk9fm63q8dueZ4lZyuDsvhtEe3fZFrMI,25479
66
- morango/sync/utils.py,sha256=BrG8CYVmaAhRNa_HYuPCYSnncskSsW_ig0Cf7xsY2mo,8792
67
- morango/sync/backends/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
68
- morango/sync/backends/base.py,sha256=zQP5hOB2Qw0qv0G00LXFHl2GQ3b0bheyujdNVl5rT-8,10867
69
- morango/sync/backends/postgres.py,sha256=N0IeXN67AkdQKlD20b8LQZ1ocdarapL8pqu8FQAc6lM,19850
70
- morango/sync/backends/sqlite.py,sha256=vg7kWFIF346-NjVwexYfjYbrrOyzzvcCmk5uUkqhabw,12850
71
- morango/sync/backends/utils.py,sha256=KaTfj8dKrhRhl6wua2m_jKifmLZ2Kzsd8wPi1NWEtHM,5198
72
- morango-0.7.1.dist-info/AUTHORS.md,sha256=9Ussd3Fq3RPjHyQT_3AyGss5jiVbn858WQuIBOi1ajI,276
73
- morango-0.7.1.dist-info/LICENSE,sha256=RkI6MjmrrTKa3aoPAVyk9QdeLZclcrKds6FH3phRSRU,1074
74
- morango-0.7.1.dist-info/METADATA,sha256=GdViBtA_HnZnDsaz7tPeGjNegrsO4C6FBS1XHwAZ4sg,2555
75
- morango-0.7.1.dist-info/WHEEL,sha256=-G_t0oGuE7UD0DrSpVZnq1hHMBV9DD2XkS5v7XpmTnk,110
76
- morango-0.7.1.dist-info/top_level.txt,sha256=pzREWN0EeEq3yHDRast9XI081Ow_rtcm7WV0ZQTlIPY,8
77
- morango-0.7.1.dist-info/RECORD,,