cherrypy-foundation 1.0.0a16__py3-none-any.whl → 1.0.0a18__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.
- cherrypy_foundation/components/Datatable.js +2 -2
- cherrypy_foundation/components/__init__.py +2 -2
- cherrypy_foundation/components/tests/test_static.py +1 -1
- cherrypy_foundation/error_page.py +2 -2
- cherrypy_foundation/flash.py +2 -2
- cherrypy_foundation/form.py +2 -2
- cherrypy_foundation/logging.py +2 -2
- cherrypy_foundation/passwd.py +2 -2
- cherrypy_foundation/plugins/db.py +1 -1
- cherrypy_foundation/plugins/ldap.py +3 -1
- cherrypy_foundation/plugins/restapi.py +1 -1
- cherrypy_foundation/plugins/scheduler.py +1 -1
- cherrypy_foundation/plugins/smtp.py +8 -2
- cherrypy_foundation/plugins/tests/test_db.py +2 -2
- cherrypy_foundation/plugins/tests/test_ldap.py +1 -1
- cherrypy_foundation/plugins/tests/test_scheduler.py +1 -1
- cherrypy_foundation/plugins/tests/test_scheduler_db.py +1 -1
- cherrypy_foundation/plugins/tests/test_smtp.py +31 -1
- cherrypy_foundation/sessions.py +82 -0
- cherrypy_foundation/tests/__init__.py +1 -1
- cherrypy_foundation/tests/test_error_page.py +1 -1
- cherrypy_foundation/tests/test_flash.py +3 -3
- cherrypy_foundation/tests/test_form.py +3 -3
- cherrypy_foundation/tests/test_logging.py +78 -0
- cherrypy_foundation/tests/test_passwd.py +2 -2
- cherrypy_foundation/tests/test_url.py +2 -2
- cherrypy_foundation/tools/auth.py +31 -27
- cherrypy_foundation/tools/auth_mfa.py +87 -83
- cherrypy_foundation/tools/i18n.py +1 -1
- cherrypy_foundation/tools/jinja2.py +1 -1
- cherrypy_foundation/tools/ratelimit.py +33 -19
- cherrypy_foundation/tools/secure_headers.py +1 -1
- cherrypy_foundation/tools/sessions_timeout.py +23 -21
- cherrypy_foundation/tools/tests/test_auth.py +20 -3
- cherrypy_foundation/tools/tests/test_auth_mfa.py +6 -4
- cherrypy_foundation/tools/tests/test_i18n.py +1 -1
- cherrypy_foundation/tools/tests/test_jinja2.py +2 -2
- cherrypy_foundation/tools/tests/test_ratelimit.py +2 -2
- cherrypy_foundation/tools/tests/test_secure_headers.py +4 -4
- cherrypy_foundation/url.py +2 -2
- cherrypy_foundation/widgets.py +2 -2
- {cherrypy_foundation-1.0.0a16.dist-info → cherrypy_foundation-1.0.0a18.dist-info}/METADATA +21 -9
- {cherrypy_foundation-1.0.0a16.dist-info → cherrypy_foundation-1.0.0a18.dist-info}/RECORD +46 -44
- {cherrypy_foundation-1.0.0a16.dist-info → cherrypy_foundation-1.0.0a18.dist-info}/WHEEL +1 -1
- {cherrypy_foundation-1.0.0a16.dist-info → cherrypy_foundation-1.0.0a18.dist-info}/licenses/LICENSE.md +0 -0
- {cherrypy_foundation-1.0.0a16.dist-info → cherrypy_foundation-1.0.0a18.dist-info}/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cherrypy-foundation
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 1.0.0a18
|
|
4
|
+
Summary: Cherrypy-foundation
|
|
5
5
|
Author-email: Patrik Dufresne <patrik@ikus-soft.com>
|
|
6
6
|
License: GPLv3
|
|
7
7
|
Project-URL: Homepage, https://gitlab.com/ikus-soft/cherrypy-foundation
|
|
@@ -48,12 +48,24 @@ Dynamic: license-file
|
|
|
48
48
|
<a href="https://sonar.ikus-soft.com/dashboard?id=cherrypy-foundation"><img alt="Coverage" src="https://sonar.ikus-soft.com/api/project_badges/measure?project=cherrypy-foundation&metric=coverage"></a>
|
|
49
49
|
</p>
|
|
50
50
|
|
|
51
|
-
|
|
52
|
-
building web applications with CherryPy. It offers built-in integrations
|
|
53
|
-
with SQLAlchemy for database access, Jinja2 for templating, WTForms for
|
|
54
|
-
form handling, and Bootstrap for UI components, helping streamline
|
|
55
|
-
application development.
|
|
51
|
+
Cherrypy-foundation is a comprehensive toolkit that accelerates web application development with CherryPy. It provides a curated collection of utilities and integrations that handle common web development tasks, allowing you to focus on building your application's unique features.
|
|
56
52
|
|
|
57
|
-
|
|
53
|
+
## What's Included
|
|
58
54
|
|
|
59
|
-
|
|
55
|
+
- **Database Integration**: Seamless SQLAlchemy integration for database operations
|
|
56
|
+
- **Template Engine**: Jinja2 and JinjaX support for flexible, component-based templating
|
|
57
|
+
- **Form Handling**: Enhanced WTForms integration with automatic validation and Bootstrap rendering
|
|
58
|
+
- **URL Management**: Flexible URL generation with `url_for` utility
|
|
59
|
+
- **Error Handling**: Smart error pages that adapt to response content type (HTML, JSON, plain text)
|
|
60
|
+
- **UI Components**: Bootstrap-ready components for rapid interface development
|
|
61
|
+
|
|
62
|
+
## Who Is This For?
|
|
63
|
+
|
|
64
|
+
Cherrypy-foundation is designed for developers who:
|
|
65
|
+
|
|
66
|
+
- Want to build modern web applications with CherryPy without reinventing the wheel
|
|
67
|
+
- Need a lightweight alternative to full-stack frameworks while maintaining flexibility
|
|
68
|
+
- Prefer convention over configuration but value customization options
|
|
69
|
+
- Want battle-tested components that integrate seamlessly with CherryPy's architecture
|
|
70
|
+
|
|
71
|
+
This documentation will guide you through all available features, from basic utilities to advanced integrations, with practical examples to help you get started quickly.
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
cherrypy_foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
cherrypy_foundation/error_page.py,sha256=
|
|
3
|
-
cherrypy_foundation/flash.py,sha256=
|
|
4
|
-
cherrypy_foundation/form.py,sha256=
|
|
5
|
-
cherrypy_foundation/logging.py,sha256=
|
|
6
|
-
cherrypy_foundation/passwd.py,sha256=
|
|
7
|
-
cherrypy_foundation/
|
|
8
|
-
cherrypy_foundation/
|
|
2
|
+
cherrypy_foundation/error_page.py,sha256=GEg_KZGRE63ZsTTtmrEpE9GsYcm6shZvp5KLR53sIMA,3248
|
|
3
|
+
cherrypy_foundation/flash.py,sha256=qCghKgVgtjbQVrm6xyIIfRKzf03njFHh6b4tnawzkUM,1542
|
|
4
|
+
cherrypy_foundation/form.py,sha256=8zp72fpYrmMGsIK5LxVY7sL_qqhoMDnIQoMND1s6CXk,3994
|
|
5
|
+
cherrypy_foundation/logging.py,sha256=JyzcuAu3HWzvMTSFBuKpwgnJLz1lRlx-j6EkuTwlb6I,3463
|
|
6
|
+
cherrypy_foundation/passwd.py,sha256=iyz3SgcvpgxsZgPUoTEXiqdKtwOANPrRKYhVPm2d_NQ,2139
|
|
7
|
+
cherrypy_foundation/sessions.py,sha256=uboQcf4W2zsHFoplRtSziZu1KzvhsudIehHGbG1XYW8,2977
|
|
8
|
+
cherrypy_foundation/url.py,sha256=WtfD0XEOs5FNmLvxhnBvi9aW4hQpUz0ZZXPfEXd4To8,2849
|
|
9
|
+
cherrypy_foundation/widgets.py,sha256=-wxNv3wIgf7eB8WyyycfsqSCXep3YhZgBK_5PJ1qYbY,1549
|
|
9
10
|
cherrypy_foundation/components/ColorModes.jinja,sha256=Ai2fy1qHFwEgutvyvvGjKJmffcBdNb7wmY20DJqZ8R4,3528
|
|
10
11
|
cherrypy_foundation/components/Datatable.css,sha256=7wSwgdA61vYCdEuQ0bp2o0oSvu5mGLN1c6ovCUSe718,947
|
|
11
12
|
cherrypy_foundation/components/Datatable.jinja,sha256=qUJyp8FCBdpH9J8kIvVzemRyyra0ushpZtTj5BhN9H8,3391
|
|
12
|
-
cherrypy_foundation/components/Datatable.js,sha256=
|
|
13
|
+
cherrypy_foundation/components/Datatable.js,sha256=4qHj21GPRQzUBk9lWb3Y04EvuwnWmrENG7he5i91lgE,12072
|
|
13
14
|
cherrypy_foundation/components/Field.css,sha256=CtOkvIbix7ykrOKLJxQJLJsWfEwFqfducJ1BH2vlMvA,244
|
|
14
15
|
cherrypy_foundation/components/Field.jinja,sha256=HuhZvHzv0MtFrcpoavbZHOLLdTdse8RcLIExXXx-Rsk,3319
|
|
15
16
|
cherrypy_foundation/components/Field.js,sha256=SFixZ62WlLq7SSCEazMAGhSnc9EnQ1wg6PZX4ayO6ZE,2047
|
|
@@ -24,9 +25,9 @@ cherrypy_foundation/components/SideBySideMultiSelect.js,sha256=5YMz1pgkXeWC_SRRf
|
|
|
24
25
|
cherrypy_foundation/components/Typeahead.css,sha256=iaLKi4lx01MQqSSRrdDUIDCCD6Q_0INCsMRZ3nqdkuw,1718
|
|
25
26
|
cherrypy_foundation/components/Typeahead.jinja,sha256=TjCotrTIzSx7TujxmgNxLIgxvtequCARLCjqeDzlZXU,3218
|
|
26
27
|
cherrypy_foundation/components/Typeahead.js,sha256=mnsPRwM_1xtI7ImGn_pu46QdFw_LK_PDHNCRKp_CVxc,236
|
|
27
|
-
cherrypy_foundation/components/__init__.py,sha256=
|
|
28
|
+
cherrypy_foundation/components/__init__.py,sha256=rd202TEmfnwBVD2xkJA2NMKuYeUSAPmBR_EBdHeVJLg,2007
|
|
28
29
|
cherrypy_foundation/components/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
29
|
-
cherrypy_foundation/components/tests/test_static.py,sha256=
|
|
30
|
+
cherrypy_foundation/components/tests/test_static.py,sha256=ELbyEs2Kd-UYj7b3dvrIBa8vHwanB7XRAceS3knYq6c,3814
|
|
30
31
|
cherrypy_foundation/components/vendor/bootstrap-icons/bootstrap-icons.css,sha256=AEMichyFVzMXWbxt2qy7aJsPBxXWiK7IK9BW0tW1zDs,99556
|
|
31
32
|
cherrypy_foundation/components/vendor/bootstrap-icons/bootstrap-icons.min.css,sha256=pdY4ejLKO67E0CM2tbPtq1DJ3VGDVVdqAR6j3ZwdiE4,87008
|
|
32
33
|
cherrypy_foundation/components/vendor/bootstrap-icons/fonts/bootstrap-icons.woff,sha256=9VUTt7WRy4SjuH_w406iTUgx1v7cIuVLkRymS1tUShU,180288
|
|
@@ -82,41 +83,42 @@ cherrypy_foundation/components/vendor/popper/popper.min.js,sha256=whL0tQWoY1Ku1i
|
|
|
82
83
|
cherrypy_foundation/components/vendor/typeahead/jquery.typeahead.min.css,sha256=gBsvk2nlQnvCXdG7JITz1SrnqWQrO6EsUo_r06-KRtU,12464
|
|
83
84
|
cherrypy_foundation/components/vendor/typeahead/jquery.typeahead.min.js,sha256=eFBtgouYdW587kYINWsjkN-UR8GVWAG_fQe1fpJfjOw,47828
|
|
84
85
|
cherrypy_foundation/plugins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
-
cherrypy_foundation/plugins/db.py,sha256=
|
|
86
|
-
cherrypy_foundation/plugins/ldap.py,sha256=
|
|
87
|
-
cherrypy_foundation/plugins/restapi.py,sha256=
|
|
88
|
-
cherrypy_foundation/plugins/scheduler.py,sha256=
|
|
89
|
-
cherrypy_foundation/plugins/smtp.py,sha256=
|
|
86
|
+
cherrypy_foundation/plugins/db.py,sha256=S2OqujZ-D_TxUM6NbQW7XGDt8eGDup1Wbhf0XCcYSbs,10108
|
|
87
|
+
cherrypy_foundation/plugins/ldap.py,sha256=j2KxkkHZ8PJxywRpkHQHXi1o6ZSiAdMVvTWC1vpXEvU,9970
|
|
88
|
+
cherrypy_foundation/plugins/restapi.py,sha256=1W1mmVh-rIzg_mcFaNQZZXpqF7eN7VhRL9oTEiQOr-w,2843
|
|
89
|
+
cherrypy_foundation/plugins/scheduler.py,sha256=m2XLM7euRjC5bkU4NILvwnRo0w6NWRwmCI19iEiQlE0,10777
|
|
90
|
+
cherrypy_foundation/plugins/smtp.py,sha256=7qZv0VrQxi7gNoVdRds0F6Ya9pyo3LlZ12uFaVpAsms,7658
|
|
90
91
|
cherrypy_foundation/plugins/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
-
cherrypy_foundation/plugins/tests/test_db.py,sha256=
|
|
92
|
-
cherrypy_foundation/plugins/tests/test_ldap.py,sha256=
|
|
93
|
-
cherrypy_foundation/plugins/tests/test_scheduler.py,sha256=
|
|
94
|
-
cherrypy_foundation/plugins/tests/test_scheduler_db.py,sha256
|
|
95
|
-
cherrypy_foundation/plugins/tests/test_smtp.py,sha256=
|
|
96
|
-
cherrypy_foundation/tests/__init__.py,sha256=
|
|
97
|
-
cherrypy_foundation/tests/test_error_page.py,sha256=
|
|
98
|
-
cherrypy_foundation/tests/test_flash.py,sha256=
|
|
99
|
-
cherrypy_foundation/tests/test_form.py,sha256=
|
|
100
|
-
cherrypy_foundation/tests/
|
|
101
|
-
cherrypy_foundation/tests/
|
|
92
|
+
cherrypy_foundation/plugins/tests/test_db.py,sha256=r2kPdYJOu7mqnUBKrQDSkHamHJZhJibW-sxJl5o-MJs,3921
|
|
93
|
+
cherrypy_foundation/plugins/tests/test_ldap.py,sha256=NysUplX-E8k1IHWPPnJxiHwLdNhHqYUUU2ZDkfDx2s8,17269
|
|
94
|
+
cherrypy_foundation/plugins/tests/test_scheduler.py,sha256=uFLXKisV7lCSHKE-AurE7r6chxqcVm_OCQL8RrndH94,3564
|
|
95
|
+
cherrypy_foundation/plugins/tests/test_scheduler_db.py,sha256=_jw1usLhQlV0aoMbTtdJMBQypA5eSCWmOOsFvfM2zJQ,3101
|
|
96
|
+
cherrypy_foundation/plugins/tests/test_smtp.py,sha256=LYUXjDe8TtyruBSm18N73nSxHidBCIb1Om-9zeG56I4,5462
|
|
97
|
+
cherrypy_foundation/tests/__init__.py,sha256=bbdyalzM2mwBbId-7JBPXYuRzk7oUBCncq33ypD9v3Y,2818
|
|
98
|
+
cherrypy_foundation/tests/test_error_page.py,sha256=EmsCXYkFFMReNSORZYCo7qKvL2x98QgtKIlv1nFKIUU,2399
|
|
99
|
+
cherrypy_foundation/tests/test_flash.py,sha256=NNbT3XI1dHk0hXqJsWndCmPPohK9ig87ZYJaRNPJxR8,1994
|
|
100
|
+
cherrypy_foundation/tests/test_form.py,sha256=wfmKcWTEOPi6BOAUy9oDfkX7LJf9DfxtNRER8R3Ma2g,5560
|
|
101
|
+
cherrypy_foundation/tests/test_logging.py,sha256=Lg1yGwFHTSpGbPvNXBi9risypZziJlAOMi1DeennxRs,2623
|
|
102
|
+
cherrypy_foundation/tests/test_passwd.py,sha256=nGqJZYwRPziifLvf5rm3YifxAvIOFdU_6LkHaUvRk8w,1951
|
|
103
|
+
cherrypy_foundation/tests/test_url.py,sha256=sSNwK7KZJcrLtnf_XROYQAPQoYNO5lAsa2BjhFjgmws,6434
|
|
102
104
|
cherrypy_foundation/tests/templates/test_flash.html,sha256=b1S4I9v0n-Y1yoTUh2ZKNysR1NMrqv8ldvqONtmInzw,213
|
|
103
105
|
cherrypy_foundation/tests/templates/test_form.html,sha256=liubTm2q74-3hqQb4weaGJU3sq4vdq868GdVahBafSQ,333
|
|
104
106
|
cherrypy_foundation/tests/templates/test_url.html,sha256=xoyRIkIzzM8Q-M39i80P4j7Wo8Lkzh1rIzRq-40Szak,528
|
|
105
107
|
cherrypy_foundation/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
-
cherrypy_foundation/tools/auth.py,sha256=
|
|
107
|
-
cherrypy_foundation/tools/auth_mfa.py,sha256=
|
|
108
|
-
cherrypy_foundation/tools/i18n.py,sha256=
|
|
109
|
-
cherrypy_foundation/tools/jinja2.py,sha256=
|
|
110
|
-
cherrypy_foundation/tools/ratelimit.py,sha256=
|
|
111
|
-
cherrypy_foundation/tools/secure_headers.py,sha256=
|
|
112
|
-
cherrypy_foundation/tools/sessions_timeout.py,sha256=
|
|
108
|
+
cherrypy_foundation/tools/auth.py,sha256=WRXiZdRXJcd4uZFDb8DAGX-ySqiYytdWyjiQiLZb9Vo,9935
|
|
109
|
+
cherrypy_foundation/tools/auth_mfa.py,sha256=hDwfKc2zFY3bxOm1JRLLFQRXVPL9atBQ-PEwQTEQUww,9579
|
|
110
|
+
cherrypy_foundation/tools/i18n.py,sha256=f4m9fc2FKtcdUpXgnLXzhoipn4oLDuHY94Vv3KPSfp0,17126
|
|
111
|
+
cherrypy_foundation/tools/jinja2.py,sha256=hTiOepdb7kyDEqCK4NH2O-v1lrgPGNX4VV3AWZ-OsAc,5967
|
|
112
|
+
cherrypy_foundation/tools/ratelimit.py,sha256=Vb4oqgwUKntzjk4Xvnqfn4H_qOUeNa0Pld2au8qIU7Y,8781
|
|
113
|
+
cherrypy_foundation/tools/secure_headers.py,sha256=XqmjU5MCK8fTacQ2uTUiODYN4uaa9cCGfQJZVnp4J4g,3921
|
|
114
|
+
cherrypy_foundation/tools/sessions_timeout.py,sha256=M54IpRc3c4rUH0Cbri363O6GhD89EmzrjqvWeul8khc,7484
|
|
113
115
|
cherrypy_foundation/tools/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
|
-
cherrypy_foundation/tools/tests/test_auth.py,sha256=
|
|
115
|
-
cherrypy_foundation/tools/tests/test_auth_mfa.py,sha256=
|
|
116
|
-
cherrypy_foundation/tools/tests/test_i18n.py,sha256=
|
|
117
|
-
cherrypy_foundation/tools/tests/test_jinja2.py,sha256=
|
|
118
|
-
cherrypy_foundation/tools/tests/test_ratelimit.py,sha256=
|
|
119
|
-
cherrypy_foundation/tools/tests/test_secure_headers.py,sha256
|
|
116
|
+
cherrypy_foundation/tools/tests/test_auth.py,sha256=qQxCs8uCgu3C2Of9DRWplpCLLB7zSiJkrV4F9muLkJg,3414
|
|
117
|
+
cherrypy_foundation/tools/tests/test_auth_mfa.py,sha256=qYIlw4tDQUi9R7nPwph6UpMsThWDN1EYW-FrrOF_grQ,15111
|
|
118
|
+
cherrypy_foundation/tools/tests/test_i18n.py,sha256=6lHV3kxriRI5jo-YMnxzKKDFtLhogUrqK7D4X2-m42U,10758
|
|
119
|
+
cherrypy_foundation/tools/tests/test_jinja2.py,sha256=3r96jcm68Jtw_hGwpQOlT8Jao6upPSnwENaScluL-7E,5545
|
|
120
|
+
cherrypy_foundation/tools/tests/test_ratelimit.py,sha256=BZn2lhbuaVeIPq80eUn-SFu0mMN3Mb4ttwVoXbozWUA,3431
|
|
121
|
+
cherrypy_foundation/tools/tests/test_secure_headers.py,sha256=Iu3X7u6VJpWOmuNMv1qZFh0oPWdLZAdoJppRyuTV148,7769
|
|
120
122
|
cherrypy_foundation/tools/tests/components/Button.jinja,sha256=uSLp1GpEIgZNXK_GWglu0E_a1c3jHpDLI66MRfMqGhE,95
|
|
121
123
|
cherrypy_foundation/tools/tests/locales/messages.pot,sha256=5K9piTRL7H5MxDXFIWJsCccSJRA0HwfCQQU8b8VYo30,40
|
|
122
124
|
cherrypy_foundation/tools/tests/locales/de/LC_MESSAGES/messages.mo,sha256=bsJTVL4OefevkxeHDS3VcW3egP6Yq18LFXwjSyoqIng,336
|
|
@@ -126,8 +128,8 @@ cherrypy_foundation/tools/tests/locales/fr/LC_MESSAGES/messages.po,sha256=6_Sk9I
|
|
|
126
128
|
cherrypy_foundation/tools/tests/templates/test_jinja2.html,sha256=s1bHmy-lyf0YW0t-LOx3ugILV2kqFoBNYxziWgrZbo0,216
|
|
127
129
|
cherrypy_foundation/tools/tests/templates/test_jinjax.html,sha256=NImzIW0mUHxilFd61PSoxFC-yu1nayEVwv-5zlgD9yo,179
|
|
128
130
|
cherrypy_foundation/tools/tests/templates/test_jinjax_i18n.html,sha256=yre8j7HBjpTQZHpM0PuB3ASGD3O4vKkJ-y72Fm6STgY,771
|
|
129
|
-
cherrypy_foundation-1.0.
|
|
130
|
-
cherrypy_foundation-1.0.
|
|
131
|
-
cherrypy_foundation-1.0.
|
|
132
|
-
cherrypy_foundation-1.0.
|
|
133
|
-
cherrypy_foundation-1.0.
|
|
131
|
+
cherrypy_foundation-1.0.0a18.dist-info/licenses/LICENSE.md,sha256=trSLYs5qlaow_bBwsLTRKpmTXsXzFksM_YUCMqrgAJQ,35149
|
|
132
|
+
cherrypy_foundation-1.0.0a18.dist-info/METADATA,sha256=QX-jYBOhl_tsc-bjuz1ujuRQs6dh7EpJkgt8XupShb4,3551
|
|
133
|
+
cherrypy_foundation-1.0.0a18.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
134
|
+
cherrypy_foundation-1.0.0a18.dist-info/top_level.txt,sha256=B1vQPTLYhpKJ6W0JkRCWyAf8RPcnwJWdYxixv75-4ew,20
|
|
135
|
+
cherrypy_foundation-1.0.0a18.dist-info/RECORD,,
|
|
File without changes
|
{cherrypy_foundation-1.0.0a16.dist-info → cherrypy_foundation-1.0.0a18.dist-info}/top_level.txt
RENAMED
|
File without changes
|