arthexis 0.1.8__py3-none-any.whl → 0.1.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 arthexis might be problematic. Click here for more details.
- {arthexis-0.1.8.dist-info → arthexis-0.1.9.dist-info}/METADATA +42 -4
- arthexis-0.1.9.dist-info/RECORD +92 -0
- arthexis-0.1.9.dist-info/licenses/LICENSE +674 -0
- config/__init__.py +0 -1
- config/auth_app.py +0 -1
- config/celery.py +1 -2
- config/context_processors.py +1 -1
- config/offline.py +2 -0
- config/settings.py +133 -16
- config/urls.py +65 -6
- core/admin.py +1226 -191
- core/admin_history.py +50 -0
- core/admindocs.py +108 -1
- core/apps.py +158 -3
- core/backends.py +46 -4
- core/entity.py +62 -48
- core/fields.py +6 -1
- core/github_helper.py +25 -0
- core/github_issues.py +172 -0
- core/lcd_screen.py +1 -0
- core/liveupdate.py +25 -0
- core/log_paths.py +100 -0
- core/mailer.py +83 -0
- core/middleware.py +57 -0
- core/models.py +1071 -264
- core/notifications.py +11 -1
- core/public_wifi.py +227 -0
- core/release.py +27 -20
- core/sigil_builder.py +131 -0
- core/sigil_context.py +20 -0
- core/sigil_resolver.py +284 -0
- core/system.py +129 -10
- core/tasks.py +118 -19
- core/test_system_info.py +22 -0
- core/tests.py +358 -63
- core/tests_liveupdate.py +17 -0
- core/urls.py +2 -2
- core/user_data.py +329 -167
- core/views.py +383 -57
- core/widgets.py +51 -0
- core/workgroup_urls.py +7 -3
- core/workgroup_views.py +43 -6
- nodes/actions.py +0 -2
- nodes/admin.py +159 -284
- nodes/apps.py +9 -15
- nodes/backends.py +53 -0
- nodes/lcd.py +24 -10
- nodes/models.py +375 -178
- nodes/tasks.py +1 -5
- nodes/tests.py +524 -129
- nodes/utils.py +13 -2
- nodes/views.py +66 -23
- ocpp/admin.py +150 -61
- ocpp/apps.py +1 -1
- ocpp/consumers.py +432 -69
- ocpp/evcs.py +25 -8
- ocpp/models.py +408 -68
- ocpp/simulator.py +13 -6
- ocpp/store.py +258 -30
- ocpp/tasks.py +11 -7
- ocpp/test_export_import.py +8 -7
- ocpp/test_rfid.py +211 -16
- ocpp/tests.py +1198 -135
- ocpp/transactions_io.py +68 -22
- ocpp/urls.py +35 -2
- ocpp/views.py +654 -101
- pages/admin.py +173 -13
- pages/checks.py +0 -1
- pages/context_processors.py +19 -6
- pages/middleware.py +153 -0
- pages/models.py +37 -9
- pages/tests.py +759 -40
- pages/urls.py +3 -0
- pages/utils.py +0 -1
- pages/views.py +576 -25
- arthexis-0.1.8.dist-info/RECORD +0 -80
- arthexis-0.1.8.dist-info/licenses/LICENSE +0 -21
- config/workgroup_app.py +0 -7
- core/checks.py +0 -29
- {arthexis-0.1.8.dist-info → arthexis-0.1.9.dist-info}/WHEEL +0 -0
- {arthexis-0.1.8.dist-info → arthexis-0.1.9.dist-info}/top_level.txt +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: arthexis
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.9
|
|
4
4
|
Summary: Django-based MESH system
|
|
5
|
-
Author-email: "Rafael J.
|
|
6
|
-
License-Expression:
|
|
5
|
+
Author-email: "Rafael J. Guillén-Osorio" <tecnologia@gelectriic.com>
|
|
6
|
+
License-Expression: GPL-3.0-only
|
|
7
7
|
Project-URL: Repository, https://github.com/arthexis/arthexis
|
|
8
8
|
Project-URL: Homepage, https://arthexis.com
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -21,6 +21,7 @@ Requires-Dist: autobahn==24.4.2
|
|
|
21
21
|
Requires-Dist: Automat==25.4.16
|
|
22
22
|
Requires-Dist: billiard==4.2.1
|
|
23
23
|
Requires-Dist: bleach==6.2.0
|
|
24
|
+
Requires-Dist: black==24.10.0
|
|
24
25
|
Requires-Dist: celery==5.5.3
|
|
25
26
|
Requires-Dist: certifi==2025.7.14
|
|
26
27
|
Requires-Dist: cffi==1.17.1
|
|
@@ -36,16 +37,17 @@ Requires-Dist: cron-descriptor==1.4.5
|
|
|
36
37
|
Requires-Dist: cryptography==45.0.5
|
|
37
38
|
Requires-Dist: daphne==4.2.1
|
|
38
39
|
Requires-Dist: diff-match-patch==20241021
|
|
40
|
+
Requires-Dist: defusedxml==0.7.1
|
|
39
41
|
Requires-Dist: Django==5.2.4
|
|
40
42
|
Requires-Dist: django-celery-beat==2.8.1
|
|
41
43
|
Requires-Dist: django-debug-toolbar==6.0.0
|
|
42
44
|
Requires-Dist: django-import-export==4.3.9
|
|
43
45
|
Requires-Dist: django-object-actions==5.0.0
|
|
44
|
-
Requires-Dist: django-post_office==3.10.1
|
|
45
46
|
Requires-Dist: django-timezone-field==7.1
|
|
46
47
|
Requires-Dist: dnspython==2.7.0
|
|
47
48
|
Requires-Dist: docutils==0.22
|
|
48
49
|
Requires-Dist: gpiozero==2.0.1; sys_platform == "linux"
|
|
50
|
+
Requires-Dist: graphviz==0.20.3
|
|
49
51
|
Requires-Dist: h11==0.16.0
|
|
50
52
|
Requires-Dist: httpcore==1.0.9
|
|
51
53
|
Requires-Dist: httpx==0.28.1
|
|
@@ -55,6 +57,7 @@ Requires-Dist: incremental==24.7.2
|
|
|
55
57
|
Requires-Dist: kombu==5.5.4
|
|
56
58
|
Requires-Dist: libipld==3.1.1
|
|
57
59
|
Requires-Dist: Markdown==3.8.2
|
|
60
|
+
Requires-Dist: mcp==1.14.0
|
|
58
61
|
Requires-Dist: mfrc522==0.0.7; sys_platform == "linux"
|
|
59
62
|
Requires-Dist: outcome==1.3.0.post0
|
|
60
63
|
Requires-Dist: packaging==25.0
|
|
@@ -101,6 +104,7 @@ Requires-Dist: wcwidth==0.2.13
|
|
|
101
104
|
Requires-Dist: webencodings==0.5.1
|
|
102
105
|
Requires-Dist: websocket-client==1.8.0
|
|
103
106
|
Requires-Dist: websockets==13.1
|
|
107
|
+
Requires-Dist: whitenoise==6.9.0
|
|
104
108
|
Requires-Dist: plyer==2.1.0; sys_platform == "win32"
|
|
105
109
|
Requires-Dist: wsproto==1.2.0
|
|
106
110
|
Requires-Dist: zope.interface==7.2
|
|
@@ -119,6 +123,40 @@ Arthexis Constellation is a [narrative-driven](https://en.wikipedia.org/wiki/Nar
|
|
|
119
123
|
- Runs on [Windows 11](https://www.microsoft.com/windows/windows-11) and [Ubuntu 22.04 LTS](https://releases.ubuntu.com/22.04/)
|
|
120
124
|
- Tested for the [Raspberry Pi 4 Model B](https://www.raspberrypi.com/products/raspberry-pi-4-model-b/)
|
|
121
125
|
|
|
126
|
+
Project under active development.
|
|
127
|
+
|
|
128
|
+
## Four Role Architecture
|
|
129
|
+
|
|
130
|
+
Arthexis Constellation ships in four node roles tailored to different deployment scenarios.
|
|
131
|
+
|
|
132
|
+
| Role | Description & Common Features |
|
|
133
|
+
| --- | --- |
|
|
134
|
+
| Terminal | Single-User Research & Development<br>Features: GUI Toast |
|
|
135
|
+
| Control | Single-Device Testing & Special Task Appliances<br>Features: AP Public Wi-Fi, Celery Queue, GUI Toast, LCD Screen, NGINX Server, RFID Scanner |
|
|
136
|
+
| Satellite | Multi-Device Edge, Network & Data Acquisition<br>Features: AP Router, Celery Queue, NGINX Server, RFID Scanner |
|
|
137
|
+
| Constellation | Multi-User Cloud & Orchestration<br>Features: Celery Queue, NGINX Server |
|
|
138
|
+
|
|
139
|
+
## Quick Guide
|
|
140
|
+
|
|
141
|
+
### 1. Clone
|
|
142
|
+
- **[Linux](https://en.wikipedia.org/wiki/Linux)**: open a [terminal](https://en.wikipedia.org/wiki/Command-line_interface) and run
|
|
143
|
+
`git clone https://github.com/arthexis/arthexis.git`
|
|
144
|
+
- **[Windows](https://en.wikipedia.org/wiki/Microsoft_Windows)**: open [PowerShell](https://learn.microsoft.com/powershell/) or [Git Bash](https://gitforwindows.org/) and run the same command.
|
|
145
|
+
|
|
146
|
+
### 2. Start and stop
|
|
147
|
+
- **[VS Code](https://code.visualstudio.com/)**: open the folder, go to the
|
|
148
|
+
**Run and Debug** panel (`Ctrl+Shift+D`), select the **Run Server** (or
|
|
149
|
+
**Debug Server**) configuration, and press the green start button. Stop the
|
|
150
|
+
server with the red square button (`Shift+F5`).
|
|
151
|
+
- **[Shell](https://en.wikipedia.org/wiki/Shell_(computing))**: on Linux run [`./start.sh`](start.sh) and stop with [`./stop.sh`](stop.sh); on Windows run [`start.bat`](start.bat) and stop with `Ctrl+C`.
|
|
152
|
+
|
|
153
|
+
### 3. Install and upgrade
|
|
154
|
+
- **Linux**: use [`./install.sh`](install.sh) with options like `--service NAME`, `--public` or `--internal`, `--port PORT`, `--upgrade`, `--auto-upgrade`, `--latest`, `--celery`, `--lcd-screen`, `--no-lcd-screen`, `--clean`, `--datasette`. Upgrade with [`./upgrade.sh`](upgrade.sh) using flags such as `--latest`, `--clean`, or `--no-restart`.
|
|
155
|
+
- **Windows**: run [`install.bat`](install.bat) to install and [`upgrade.bat`](upgrade.bat) to upgrade.
|
|
156
|
+
|
|
157
|
+
### 4. Administration
|
|
158
|
+
Visit [`http://localhost:8888/admin/`](http://localhost:8888/admin/) for the [Django admin](https://docs.djangoproject.com/en/stable/ref/contrib/admin/) and [`http://localhost:8888/admindocs/`](http://localhost:8888/admindocs/) for the [admindocs](https://docs.djangoproject.com/en/stable/ref/contrib/admin/admindocs/). Use port `8000` if you started with [`start.bat`](start.bat) or the `--public` option.
|
|
159
|
+
|
|
122
160
|
## Support
|
|
123
161
|
|
|
124
162
|
Contact us at [tecnologia@gelectriic.com](mailto:tecnologia@gelectriic.com) or visit our [web page](https://www.gelectriic.com/) for [professional services](https://en.wikipedia.org/wiki/Professional_services) and [commercial support](https://en.wikipedia.org/wiki/Technical_support).
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
arthexis-0.1.9.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
2
|
+
config/__init__.py,sha256=8_b7rx_-Xcuzu3Z7mSR94q3PAhjyYqLFQi3IOEz6hcI,108
|
|
3
|
+
config/active_app.py,sha256=MET_G7oHL7GkoSo3VkkMzymM-PwsSZazMLZxpgjFLTo,388
|
|
4
|
+
config/asgi.py,sha256=n09URedOmQ_59II3UCl3iodGSDWOuN_A8DFyfLjuylA,803
|
|
5
|
+
config/auth_app.py,sha256=2NkC_iYQxnpbv0gYxW4xp5DgQtdkVLpa-JzAF-638ZE,205
|
|
6
|
+
config/celery.py,sha256=qRTHgNYfT2OyIz4cW49YiiKgVgzLs2mSfAEQBgso0M4,743
|
|
7
|
+
config/context_processors.py,sha256=Iyr_eGoBZuyfxikU7RxQS3DdMI-wudCpPiHttD9Sd_o,2341
|
|
8
|
+
config/horologia_app.py,sha256=u1hTYcEmIqh82Gt5YNPvR5ta2MnVatELvD9ByFrCH1A,194
|
|
9
|
+
config/loadenv.py,sha256=bhFbHTbRJSkSwrFk3UInKEKQ8ZY-poatOGi7rC57YAI,298
|
|
10
|
+
config/logging.py,sha256=334jADN4dM5GNHaCWlYPOKYa5BhfxbsuejH_QDALG6g,1793
|
|
11
|
+
config/middleware.py,sha256=EvraDumepnKwCDswHGXb1mK7vud_dEEoZ4eh0IQ7fhQ,744
|
|
12
|
+
config/offline.py,sha256=mhQjCUzdOwSzZ6oLgPDJR48xaPIDzOi34ARUEz43seE,1431
|
|
13
|
+
config/settings.py,sha256=wRfx3EH5YHuiSB73Xnq-RqLtkLzISBEPwpcXRhqh-ws,14696
|
|
14
|
+
config/urls.py,sha256=Eap8bmBfKAA43H05QpAJQfLrGamJYHwmOx4j663EJpU,4950
|
|
15
|
+
config/wsgi.py,sha256=Fu-ONO2SgYeU6rhmy909P-uLX-n8ALJQObdm9MHPS-k,450
|
|
16
|
+
core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
core/admin.py,sha256=5Dv16tphT5JoCjn1oLiLMfKKJOIeNjz1AZmmgMc6eBs,71319
|
|
18
|
+
core/admin_history.py,sha256=NIDWkosJoHMaucBvUjq8VmmL-0e8ngJ4l4XA89d4jwQ,1833
|
|
19
|
+
core/admindocs.py,sha256=GufdugiNEG87xGSDYVq4CBMhGRubsQCzgz-FqDIqzpM,5367
|
|
20
|
+
core/apps.py,sha256=YFto4vdVW4uq98s-HypSAZx-q3HXDbKuyU7rYaqVDYs,9059
|
|
21
|
+
core/backends.py,sha256=fOf64Ajg1arDUzz9yDCvFw5T4ZoRljurIUlcT9GYBHM,4540
|
|
22
|
+
core/entity.py,sha256=dkPywTVk981fV8bOEoZw-1SMrdh8T0jVAUZnRxg3dDg,4505
|
|
23
|
+
core/environment.py,sha256=QcOshpWNG0l_agW-b9efNvVFKqdatj6sUK8FT6p92gU,1238
|
|
24
|
+
core/fields.py,sha256=fe9XupyF7K-5L6Dpxt6by_sQXoxSxf3F_eZpFSf_uFk,2459
|
|
25
|
+
core/github_helper.py,sha256=k9LmxL0Ec5MzFwZsbMpWMMJ-5tGMe-5yRoI8V0sbFsw,682
|
|
26
|
+
core/github_issues.py,sha256=LKqt-Ilx5TRYnx2LXttc54Nvuh3_1VRP0u_M3whe09c,4963
|
|
27
|
+
core/lcd_screen.py,sha256=mkKtIJjHGDLaV4t80L-JScsZXbLhlYUDknAcvV9Ijr0,2651
|
|
28
|
+
core/liveupdate.py,sha256=kTgbE2gnU3PPIV-88Bw2swSl1aGp6stSdBYqBFbLvx0,716
|
|
29
|
+
core/log_paths.py,sha256=6UXYk6QIUmRO3ecFaFH3dgJ_pf4C_wUN6b0JqUhLVBY,3045
|
|
30
|
+
core/mailer.py,sha256=ziw6r4AhMcMRMtNOrcqRXimjo17SooaJJ-fkSVfo_aI,2787
|
|
31
|
+
core/middleware.py,sha256=a4XL0pld4YiG-vanHrzYbJNHv64s75lvmG9inoG1ln0,3479
|
|
32
|
+
core/models.py,sha256=rkyUZkonxByZi-QnKxPskSD23voC-x-Ud62vFbBSW9U,75354
|
|
33
|
+
core/notifications.py,sha256=YtNDGxNveZ6t3tlMXJ7wIaZZTWIZfOKy6vN9mXkeYnA,4021
|
|
34
|
+
core/public_wifi.py,sha256=A08IPJqcdgUKSWbktyqsV4ol8C0uxDxZy1s1ECuPdBE,6526
|
|
35
|
+
core/release.py,sha256=thtgbfAnxHlOODM8xUVETgY5aAIbddWan0wW9lKmtQI,11064
|
|
36
|
+
core/sigil_builder.py,sha256=XxzL0d-GDtHR93_gKNChEWWHb40t8V-CJRQGCzaHEHg,4458
|
|
37
|
+
core/sigil_context.py,sha256=8xrGiB2L1dFfSTrVLsFPLKfkhRwCXXZ0-EXvZdPeTMU,459
|
|
38
|
+
core/sigil_resolver.py,sha256=kRzkv669R1JggQ7eAXsIfw8kH9wuB8L71pmZYg4vwqs,10108
|
|
39
|
+
core/system.py,sha256=wzhWpV1uC1YGHZI_2eJvr3yyj5FgQEIoD1cWCAfDkHo,7866
|
|
40
|
+
core/tasks.py,sha256=WBA2WLHNIDhioV7ibTJZLTx_Ix3738qYlP6BpHooJug,5772
|
|
41
|
+
core/test_system_info.py,sha256=2uIKVf38Z-isGZJAVmqu8uAYQ8vTBMuLoWpeMQ7Xi0s,1294
|
|
42
|
+
core/tests.py,sha256=Uzzg6nWMJiMtN4Yi3fDAbza82rHMT8oXPaAapKPZMpg,42559
|
|
43
|
+
core/tests_liveupdate.py,sha256=D1o2gPopnK7wDCeDQlJ-tfitWh4umZQFRxSTCFY-puc,527
|
|
44
|
+
core/urls.py,sha256=x-LNCxCgrLINdBsJTUUcAuMS5EK5Sh1ybvsVuUnJfLw,436
|
|
45
|
+
core/user_data.py,sha256=p5Y7m9gqV8SHaiPtkIfEsdk7oopqh-pA2ohRPJXnzH8,17186
|
|
46
|
+
core/views.py,sha256=RAk9ZEP6Zl2isijsC1AL_jwhMDHjTH-jTJjHNsw-7fY,27929
|
|
47
|
+
core/widgets.py,sha256=ihah_-NtFJ3oRCS3TdcT6iHCUTlg1tUULJsVCu05C0o,1379
|
|
48
|
+
core/workgroup_urls.py,sha256=2bC8mOMkxIj04WsNis0Td6AmmJFr6z27Ol5epIvhO28,424
|
|
49
|
+
core/workgroup_views.py,sha256=pFJ4PIRN3WWpRyombpWDKKteYQYoI7lu7ddSEKojD7I,2983
|
|
50
|
+
nodes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
+
nodes/actions.py,sha256=HHnwByTBc3guOORvrKOuvUFID-_BpBq6OENE_PDgk9s,2335
|
|
52
|
+
nodes/admin.py,sha256=6wmUDTpCFyZdUt8Ef7c8c347JJ-BOPRPlADFMsUxd9Y,16560
|
|
53
|
+
nodes/apps.py,sha256=KijGydsQBS-8Q8uBc0ahDZXSSCMzP3tQcYIEigJxdCE,2077
|
|
54
|
+
nodes/backends.py,sha256=cHMpliDO453O8gVmtBRTg2VT0tZ1XL_cgneMyuo3In8,2080
|
|
55
|
+
nodes/lcd.py,sha256=7MqS3jV_De2ysSmTtXQfYTWaxdfbmm6YfNdb_7qIVZc,5923
|
|
56
|
+
nodes/models.py,sha256=Hq-4dK0IxSZ0JSAGjX4wlTBT0AZFDE6Y6801Rl1pFv4,30229
|
|
57
|
+
nodes/tasks.py,sha256=jorbN4h0PqWMBRMFdkGgJtvG8GPFwGr5Hxlm5In3EeY,1568
|
|
58
|
+
nodes/tests.py,sha256=CqZwGQRrqqVFcIunfnLaP0S3eV0alBBPhZl8LKsh308,59797
|
|
59
|
+
nodes/urls.py,sha256=20yZDZf4DNgIZ9hQWsUzjp8k5Fryg9ukk761_KGQt9k,548
|
|
60
|
+
nodes/utils.py,sha256=B9BD3bKBkwDjIqyp0pyjnKQQlRbGRVQndfoaMEJoNDc,2815
|
|
61
|
+
nodes/views.py,sha256=uUHDTgARj4eOUOrEUCx41GZzWajT5vHSa9svcAuLYVo,10261
|
|
62
|
+
ocpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
63
|
+
ocpp/admin.py,sha256=sHJaSfFFx6T1J4WBKp_-_Y0zJXZDCJJxFpXrOgH6jTg,14825
|
|
64
|
+
ocpp/apps.py,sha256=mCZ5Z0ei7z7c62luIcIhbEuwL1N4czQFSToOkGvRmms,867
|
|
65
|
+
ocpp/consumers.py,sha256=C7ZfTuGxf3EDt2cizlSxsdn1KnbpbqUb-rfIUD-mKr4,28171
|
|
66
|
+
ocpp/evcs.py,sha256=TppUZ9ACaiXsfhF_DsL0I9jEyZFPbdUpFWP9Ljbe6gI,33973
|
|
67
|
+
ocpp/models.py,sha256=RXfdlZ268otOZsWQVEcc0n0YmsrDqserHFNSSuCFIzs,22253
|
|
68
|
+
ocpp/routing.py,sha256=g9vPnLw-D1N8L_mW0_oCe-nTDibjC0Et-SFxe8NFAOI,308
|
|
69
|
+
ocpp/simulator.py,sha256=iS9Y-ZRdQXd6TuRoviDOVtOgyDtc4in4FkKFwmTrZD8,13764
|
|
70
|
+
ocpp/store.py,sha256=h4Mq82dR_8LIXelD99ND12HSHWHEvWhPNNXMyDAwm1M,13247
|
|
71
|
+
ocpp/tasks.py,sha256=cOcJBshckFKs8GnACvmYZUBG116amtLRAzEP-JNqlZ0,905
|
|
72
|
+
ocpp/test_export_import.py,sha256=TK1__E4K5WrLYPIx-1iJWoIhuRCnOtXc2cYEpGigd3U,4660
|
|
73
|
+
ocpp/test_rfid.py,sha256=1Xw54WNLzIv4IvvKbQEAs3jtdcg5sTqQBLJK9ZzCqwE,19301
|
|
74
|
+
ocpp/tests.py,sha256=4JCXBL5ieIl4rAiIUFB_aCN6vLNa4OkFF8DdylFysR0,90789
|
|
75
|
+
ocpp/transactions_io.py,sha256=OvRynP3DeC9ZpHD3Ez-0YPNPJXFcdSOSKg0nRrwzBJ0,6507
|
|
76
|
+
ocpp/urls.py,sha256=jl6AQLtmLMvrNXP3dQKgPe9Kvaul4oaYd80DskpzVBc,1750
|
|
77
|
+
ocpp/views.py,sha256=lTxK23r62ridqoSNkj_us7IokQ9T0RYZMBtr24F2ef8,35879
|
|
78
|
+
pages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
+
pages/admin.py,sha256=IdaAibuYJbRMuxw9vniTcuToGCaRFJewwXQ2XQ-1384,12476
|
|
80
|
+
pages/apps.py,sha256=mfCxegmnRqKcszyEwpQhZpW9JWOuEYdVereU_w49BXg,298
|
|
81
|
+
pages/checks.py,sha256=an-MlMCIG-FSKmdgOhYV0VOoB_wDQD7dxKD03Hjrzts,1567
|
|
82
|
+
pages/context_processors.py,sha256=Ph4PEaq8NbiG50idlBXHzMgMGgyX5aVg1rBmb9bOvcs,2897
|
|
83
|
+
pages/middleware.py,sha256=fUdAscLa6h2EqJTFUjhVijfSf82gBfm6XUZTVygWAnk,5227
|
|
84
|
+
pages/models.py,sha256=VBGpZVQrOHR6ShvqY5MT_Um8rVUktbKMPnq9KJCsTRo,8375
|
|
85
|
+
pages/tests.py,sha256=gOxh0invZL2vcyXY9QhfPxO6OmUwoOWVNFQwvynoZf8,56715
|
|
86
|
+
pages/urls.py,sha256=7V2nI74v1SdsQ6_vN-8VbOJA_htP3uoogq1ISYmAlpY,687
|
|
87
|
+
pages/utils.py,sha256=7kik1W0Gk6SFxYGhg6shfI2W9Xdcv1sCpkRCQ883a88,311
|
|
88
|
+
pages/views.py,sha256=VXciSuB4798pCHG7ZaOExQSC3zL1OSP0KeuyUja_xUk,28854
|
|
89
|
+
arthexis-0.1.9.dist-info/METADATA,sha256=WMykpJVayOXcPMDi4bi__VU1mj-kJNGAfKlL7sOW2I0,8029
|
|
90
|
+
arthexis-0.1.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
91
|
+
arthexis-0.1.9.dist-info/top_level.txt,sha256=J2a2q8_BWrCZ8H2WFUNMBfO2jz8j2gax6zZh-_1QDac,29
|
|
92
|
+
arthexis-0.1.9.dist-info/RECORD,,
|