Skip to content

Commit 6f54d26

Browse files
v1.5.1.9
PyMe 1.5.1.9 has been released ================== 1. The AIGC generation interface and code support Kimi k2. 2. AIGC directly converts PyMe projects from other Python files to support Kimi k2. 3. Fixed the display bug in the traditional Chinese version.
1 parent faf74f6 commit 6f54d26

21 files changed

Lines changed: 533 additions & 1 deletion

PyMe/PyMe.exe

2.8 KB
Binary file not shown.
1.5 KB
Binary file not shown.
3 KB
Binary file not shown.
1.5 KB
Binary file not shown.
1.5 KB
Binary file not shown.
1.5 KB
Binary file not shown.
-103 KB
Binary file not shown.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright 2007 Pallets
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
1. Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in the
12+
documentation and/or other materials provided with the distribution.
13+
14+
3. Neither the name of the copyright holder nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
24+
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Lines changed: 128 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,128 @@
1+
Metadata-Version: 2.1
2+
Name: Werkzeug
3+
Version: 2.0.1
4+
Summary: The comprehensive WSGI web application library.
5+
Home-page: https://palletsprojects.com/p/werkzeug/
6+
Author: Armin Ronacher
7+
Author-email: armin.ronacher@active-4.com
8+
Maintainer: Pallets
9+
Maintainer-email: contact@palletsprojects.com
10+
License: BSD-3-Clause
11+
Project-URL: Donate, https://palletsprojects.com/donate
12+
Project-URL: Documentation, https://werkzeug.palletsprojects.com/
13+
Project-URL: Changes, https://werkzeug.palletsprojects.com/changes/
14+
Project-URL: Source Code, https://github.com/pallets/werkzeug/
15+
Project-URL: Issue Tracker, https://github.com/pallets/werkzeug/issues/
16+
Project-URL: Twitter, https://twitter.com/PalletsTeam
17+
Project-URL: Chat, https://discord.gg/pallets
18+
Platform: UNKNOWN
19+
Classifier: Development Status :: 5 - Production/Stable
20+
Classifier: Environment :: Web Environment
21+
Classifier: Intended Audience :: Developers
22+
Classifier: License :: OSI Approved :: BSD License
23+
Classifier: Operating System :: OS Independent
24+
Classifier: Programming Language :: Python
25+
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
26+
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
27+
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application
28+
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
29+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
30+
Requires-Python: >=3.6
31+
Description-Content-Type: text/x-rst
32+
Requires-Dist: dataclasses ; python_version < "3.7"
33+
Provides-Extra: watchdog
34+
Requires-Dist: watchdog ; extra == 'watchdog'
35+
36+
Werkzeug
37+
========
38+
39+
*werkzeug* German noun: "tool". Etymology: *werk* ("work"), *zeug* ("stuff")
40+
41+
Werkzeug is a comprehensive `WSGI`_ web application library. It began as
42+
a simple collection of various utilities for WSGI applications and has
43+
become one of the most advanced WSGI utility libraries.
44+
45+
It includes:
46+
47+
- An interactive debugger that allows inspecting stack traces and
48+
source code in the browser with an interactive interpreter for any
49+
frame in the stack.
50+
- A full-featured request object with objects to interact with
51+
headers, query args, form data, files, and cookies.
52+
- A response object that can wrap other WSGI applications and handle
53+
streaming data.
54+
- A routing system for matching URLs to endpoints and generating URLs
55+
for endpoints, with an extensible system for capturing variables
56+
from URLs.
57+
- HTTP utilities to handle entity tags, cache control, dates, user
58+
agents, cookies, files, and more.
59+
- A threaded WSGI server for use while developing applications
60+
locally.
61+
- A test client for simulating HTTP requests during testing without
62+
requiring running a server.
63+
64+
Werkzeug doesn't enforce any dependencies. It is up to the developer to
65+
choose a template engine, database adapter, and even how to handle
66+
requests. It can be used to build all sorts of end user applications
67+
such as blogs, wikis, or bulletin boards.
68+
69+
`Flask`_ wraps Werkzeug, using it to handle the details of WSGI while
70+
providing more structure and patterns for defining powerful
71+
applications.
72+
73+
.. _WSGI: https://wsgi.readthedocs.io/en/latest/
74+
.. _Flask: https://www.palletsprojects.com/p/flask/
75+
76+
77+
Installing
78+
----------
79+
80+
Install and update using `pip`_:
81+
82+
.. code-block:: text
83+
84+
pip install -U Werkzeug
85+
86+
.. _pip: https://pip.pypa.io/en/stable/quickstart/
87+
88+
89+
A Simple Example
90+
----------------
91+
92+
.. code-block:: python
93+
94+
from werkzeug.wrappers import Request, Response
95+
96+
@Request.application
97+
def application(request):
98+
return Response('Hello, World!')
99+
100+
if __name__ == '__main__':
101+
from werkzeug.serving import run_simple
102+
run_simple('localhost', 4000, application)
103+
104+
105+
Donate
106+
------
107+
108+
The Pallets organization develops and supports Werkzeug and other
109+
popular packages. In order to grow the community of contributors and
110+
users, and allow the maintainers to devote more time to the projects,
111+
`please donate today`_.
112+
113+
.. _please donate today: https://palletsprojects.com/donate
114+
115+
116+
Links
117+
-----
118+
119+
- Documentation: https://werkzeug.palletsprojects.com/
120+
- Changes: https://werkzeug.palletsprojects.com/changes/
121+
- PyPI Releases: https://pypi.org/project/Werkzeug/
122+
- Source Code: https://github.com/pallets/werkzeug/
123+
- Issue Tracker: https://github.com/pallets/werkzeug/issues/
124+
- Website: https://palletsprojects.com/p/werkzeug/
125+
- Twitter: https://twitter.com/PalletsTeam
126+
- Chat: https://discord.gg/pallets
127+
128+

0 commit comments

Comments
 (0)