81 lines
156 KiB
YAML
81 lines
156 KiB
YAML
|
|
---
|
||
|
|
version_control: pypi
|
||
|
|
src_repo: cherrypy
|
||
|
|
tag_prefix: "^v"
|
||
|
|
seperator: "."
|
||
|
|
last_query:
|
||
|
|
time_stamp: 2020-04-26 03:23:26.903944250 +00:00
|
||
|
|
raw_data: '{"info":{"author":"CherryPy Team","author_email":"team@cherrypy.org","bugtrack_url":null,"classifiers":["Development
|
||
|
|
Status :: 5 - Production/Stable","Environment :: Web Environment","Framework ::
|
||
|
|
CherryPy","Intended Audience :: Developers","License :: Freely Distributable","License
|
||
|
|
:: OSI Approved :: BSD License","Operating System :: OS Independent","Programming
|
||
|
|
Language :: Python","Programming Language :: Python :: 3","Programming Language
|
||
|
|
:: Python :: 3.5","Programming Language :: Python :: 3.6","Programming Language
|
||
|
|
:: Python :: 3.7","Programming Language :: Python :: 3.8","Programming Language
|
||
|
|
:: Python :: Implementation","Programming Language :: Python :: Implementation
|
||
|
|
:: CPython","Programming Language :: Python :: Implementation :: Jython","Programming
|
||
|
|
Language :: Python :: Implementation :: PyPy","Topic :: Internet :: WWW/HTTP","Topic
|
||
|
|
:: Internet :: WWW/HTTP :: Dynamic Content","Topic :: Internet :: WWW/HTTP ::
|
||
|
|
HTTP Servers","Topic :: Internet :: WWW/HTTP :: WSGI","Topic :: Internet :: WWW/HTTP
|
||
|
|
:: WSGI :: Application","Topic :: Internet :: WWW/HTTP :: WSGI :: Server","Topic
|
||
|
|
:: Software Development :: Libraries :: Application Frameworks"],"description":"..
|
||
|
|
image:: https://img.shields.io/pypi/v/cherrypy.svg\n :target: https://pypi.org/project/cherrypy\n\n..
|
||
|
|
image:: https://tidelift.com/badges/package/pypi/CherryPy\n :target: https://tidelift.com/subscription/pkg/pypi-cherrypy?utm_source=pypi-cherrypy&utm_medium=readme\n :alt:
|
||
|
|
CherryPy is available as part of the Tidelift Subscription\n\n.. image:: https://img.shields.io/badge/Python%203%20only-pip%20install%20%22%3E%3D18.0.0%22-%234da45e.svg\n :target:
|
||
|
|
https://python3statement.org/\n\n.. image:: https://img.shields.io/badge/Python%203%20and%202-pip%20install%20%22%3C18.0.0%22-%2349a7e9.svg\n :target:
|
||
|
|
https://python3statement.org/#sections40-timeline\n\n\n\n.. image:: https://readthedocs.org/projects/cherrypy/badge/?version=latest\n :target:
|
||
|
|
https://docs.cherrypy.org/en/latest/?badge=latest\n\n.. image:: https://img.shields.io/badge/StackOverflow-CherryPy-blue.svg\n :target:
|
||
|
|
https://stackoverflow.com/questions/tagged/cheroot+or+cherrypy\n\n.. image:: https://img.shields.io/badge/Mailing%20list-cherrypy--users-orange.svg\n :target:
|
||
|
|
https://groups.google.com/group/cherrypy-users\n\n.. image:: https://img.shields.io/gitter/room/cherrypy/cherrypy.svg\n :target:
|
||
|
|
https://gitter.im/cherrypy/cherrypy\n\n.. image:: https://img.shields.io/travis/cherrypy/cherrypy/master.svg?label=Linux%20build%20%40%20Travis%20CI\n :target:
|
||
|
|
https://travis-ci.org/cherrypy/cherrypy\n\n.. image:: https://circleci.com/gh/cherrypy/cherrypy/tree/master.svg?style=svg\n :target:
|
||
|
|
https://circleci.com/gh/cherrypy/cherrypy/tree/master\n\n.. image:: https://img.shields.io/appveyor/ci/CherryPy/cherrypy/master.svg?label=Windows%20build%20%40%20Appveyor\n :target:
|
||
|
|
https://ci.appveyor.com/project/CherryPy/cherrypy/branch/master\n\n.. image::
|
||
|
|
https://img.shields.io/badge/license-BSD-blue.svg?maxAge=3600\n :target: https://pypi.org/project/cheroot\n\n..
|
||
|
|
image:: https://img.shields.io/pypi/pyversions/cherrypy.svg\n :target: https://pypi.org/project/cherrypy\n\n..
|
||
|
|
image:: https://badges.github.io/stability-badges/dist/stable.svg\n :target:
|
||
|
|
https://github.com/badges/stability-badges\n :alt: stable\n\n.. image:: https://api.codacy.com/project/badge/Grade/48b11060b5d249dc86e52dac2be2c715\n :target:
|
||
|
|
https://www.codacy.com/app/webknjaz/cherrypy-upstream?utm_source=github.com&utm_medium=referral&utm_content=cherrypy/cherrypy&utm_campaign=Badge_Grade\n\n..
|
||
|
|
image:: https://codecov.io/gh/cherrypy/cherrypy/branch/master/graph/badge.svg\n :target:
|
||
|
|
https://codecov.io/gh/cherrypy/cherrypy\n :alt: codecov\n\nWelcome to the GitHub
|
||
|
|
repository of `CherryPy <https://cherrypy.org/>`_!\n\nCherryPy is a pythonic,
|
||
|
|
object-oriented HTTP framework.\n\n1. It allows building web applications in much
|
||
|
|
the same way one would\n build any other object-oriented program.\n2. This design
|
||
|
|
results in less and more readable code being developed faster.\n It''s all just
|
||
|
|
properties and methods.\n3. It is now more than ten years old and has proven fast
|
||
|
|
and very\n stable.\n4. It is being used in production by many sites, from the
|
||
|
|
simplest to\n the most demanding.\n5. And perhaps most importantly, it is fun
|
||
|
|
to work with :-)\n\nHere''s how easy it is to write \"Hello World\" in CherryPy:\n\n..
|
||
|
|
code:: python\n\n import cherrypy\n\n class HelloWorld(object):\n @cherrypy.expose\n def
|
||
|
|
index(self):\n return \"Hello World!\"\n\n cherrypy.quickstart(HelloWorld())\n\nAnd
|
||
|
|
it continues to work that intuitively when systems grow, allowing\nfor the Python
|
||
|
|
object model to be dynamically presented as a web site\nand/or API.\n\nWhile CherryPy
|
||
|
|
is one of the easiest and most intuitive frameworks out\nthere, the prerequisite
|
||
|
|
for understanding the `CherryPy\ndocumentation <https://docs.cherrypy.org/en/latest/>`_
|
||
|
|
is that you have\na general understanding of Python and web development.\nAdditionally:\n\n- Tutorials
|
||
|
|
are included in the repository:\n https://github.com/cherrypy/cherrypy/tree/master/cherrypy/tutorial\n- A
|
||
|
|
general wiki at:\n https://github.com/cherrypy/cherrypy/wiki\n\nIf the docs
|
||
|
|
are insufficient to address your needs, the CherryPy\ncommunity has several `avenues
|
||
|
|
for support\n<https://docs.cherrypy.org/en/latest/support.html>`_.\n\nFor Enterprise\n--------------\n\nCherryPy
|
||
|
|
is available as part of the Tidelift Subscription.\n\nThe CherryPy maintainers
|
||
|
|
and the maintainers of thousands of other packages\nare working with Tidelift
|
||
|
|
to deliver one enterprise subscription that covers\nall of the open source you
|
||
|
|
use.\n\n`Learn more <https://tidelift.com/subscription/pkg/pypi-cherrypy?utm_source=pypi-cherrypy&utm_medium=referral&utm_campaign=github>`_.\n\nContributing\n------------\n\nPlease
|
||
|
|
follow the `contribution guidelines\n<https://docs.cherrypy.org/en/latest/contribute.html>`_.\nAnd
|
||
|
|
by all means, absorb the `Zen of\nCherryPy <https://github.com/cherrypy/cherrypy/wiki/The-Zen-of-CherryPy>`_.\n\n\n","description_content_type":"","docs_url":null,"download_url":"","downloads":{"last_day":-1,"last_month":-1,"last_week":-1},"home_page":"https://www.cherrypy.org","keywords":"","license":"","maintainer":"","maintainer_email":"","name":"CherryPy","package_url":"https://pypi.org/project/CherryPy/","platform":"","project_url":"https://pypi.org/project/CherryPy/","project_urls":{"CI:
|
||
|
|
AppVeyor":"https://ci.appveyor.com/project/cherrypy/cherrypy","CI: Circle":"https://circleci.com/gh/cherrypy/cherrypy","CI:
|
||
|
|
Travis":"https://travis-ci.org/cherrypy/cherrypy","Docs: RTD":"https://docs.cherrypy.org","GitHub:
|
||
|
|
issues":"https://github.com/cherrypy/cherrypy/issues","GitHub: repo":"https://github.com/cherrypy/cherrypy","Homepage":"https://www.cherrypy.org","Tidelift:
|
||
|
|
funding":"https://tidelift.com/subscription/pkg/pypi-cherrypy?utm_source=pypi-cherrypy&utm_medium=referral&utm_campaign=pypi"},"release_url":"https://pypi.org/project/CherryPy/18.6.0/","requires_dist":["cheroot
|
||
|
|
(>=8.2.1)","portend (>=2.1.1)","more-itertools","zc.lockfile","jaraco.collections","pywin32
|
||
|
|
; sys_platform == \"win32\"","sphinx ; extra == ''docs''","docutils ; extra ==
|
||
|
|
''docs''","alabaster ; extra == ''docs''","rst.linker (>=1.11) ; extra == ''docs''","jaraco.packaging
|
||
|
|
(>=3.2) ; extra == ''docs''","simplejson ; extra == ''json''","python-memcached
|
||
|
|
(>=1.58) ; extra == ''memcached_session''","routes (>=2.3.1) ; extra == ''routes_dispatcher''","pyOpenSSL
|
||
|
|
; extra == ''ssl''","coverage ; extra == ''testing''","codecov ; extra == ''testing''","objgraph
|
||
|
|
; extra == ''testing''","pytest (<5.4.0,>=5.3.5) ; extra == ''testing''","pytest-cov
|
||
|
|
; extra == ''testing''","pytest-sugar ; extra == ''testing''","backports.unittest-mock
|
||
|
|
; extra == ''testing''","path.py ; extra == ''testing''","requests-toolbelt ;
|
||
|
|
extra == ''testing''","pytest-services (>=2) ; extra == ''testing''","flup ; extra
|
||
|
|
== ''xcgi''"],"requires_python":">=3.5","summary":"Object-Oriented HTTP framework","version":"18.6.0","yanked":false},"last_serial":7042334,"releases":{"0.10":[{"comment_text":"","digests":{"md5":"1754cbda726f75ddda2f48dc1582b699","sha256":"3fdc9517ac80227e1a417bb68a16e42e5a0d6e4fcc34c901c1531f416440cf16"},"downloads":-1,"filename":"cherrypy-0.10.tar.gz","has_sig":false,"md5_digest":"1754cbda726f75ddda2f48dc1582b699","packagetype":"sdist","python_version":"source","requires_python":null,"size":2207713,"upload_time":"2015-03-24T17:45:48","upload_time_iso_8601":"2015-03-24T17:45:48.074420Z","url":"https://files.pythonhosted.org/packages/20/44/a013b6dd9b4b62f23f9f02d8a8a1941841dee511d6c5c96c993018546a7c/cherrypy-0.10.tar.gz","yanked":false}],"10.0.0":[{"comment_text":"","digests":{"md5":"9f5d457f5b3b5298f137f8ca36bfe9ba","sha256":"98c417d8252cee462611856da689bfb8a2022b8a0a7dfa1371756b024395331a"},"downloads":-1,"filename":"CherryPy-10.0.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"9f5d457f5b3b5298f137f8ca36bfe9ba","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.6,!=3.0.*","size":434657,"upload_time":"2017-01-20T16:16:41","upload_time_iso_8601":"2017-01-20T16:16:41.713276Z","url":"https://files.pythonhosted.org/packages/19/b6/6d28aafa56e72dafb97b0da8c386ae9cc7b08170cb3d84bc09c07361a057/CherryPy-10.0.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"96a96331117586623e95f1a64fb61284","sha256":"7dd0be88dee4315ea58e486386ea7e80478128c43012bbe485e360f5b4e677ed"},"downloads":-1,"filename":"CherryPy-10.0.0.tar.gz","has_sig":false,"md5_digest":"96a96331117586623e95f1a64fb61284","packagetype":"sdist","python_version":"source","requires_python":">=2.6,!=3.0.*","size":687127,"upload_time":"2017-01-20T16:16:43","upload_time_iso_8601":"2017-01-20T16:16:43.753489Z","url":"https://files.pythonhosted.org/packages/b0/17/431502be8cb9dbaa33b80217598b650b696d006f8d8b372f5d7480a8c5c6/CherryPy-10.0.0.tar.gz","yanked":false}],"10.1.0":[{"comment_text":"","digests":{"md5":"191ef1470a42d62a02f7f59e3ce1be3a","sha256":"2bdfcbb0c265946fa9ac455cdb3d4c88b7423852c6e487be13c1c9f7e9738ea8"},"downloads":-1,"filename":"CherryPy-10.1.0-py2.py3-none-any.whl","has_sig":false,"md5_digest":"191ef1470a42d62a02f7f59e3ce1be3a","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.6,!=3.0.*","size":434702,"upload_time":"2017-02-08T00:20:27","upload_time_iso_8601":"2017-02-08T00:20:27.472289Z","url":"https://files.pythonhosted.org/packages/15/a9/98bb7483bb6598c19d6bcef6cdd818ecebcb1ade7b78314d46d6a83dc24c/CherryPy-10.1.0-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"a3d92593d465847edd6cfba18475868e","sha256":"ff7c75050a1e6264073015387006e81c3b48a6d0f3b88ac0cd2fb5d0d170d70a"},"downloads":-1,"filename":"CherryPy-10.1.0.tar.gz","has_sig":false,"md5_digest":"a3d92593d465847edd6cfba18475868e","packagetype":"sdist","python_version":"source","requires_python":">=2.6,!=3.0.*","size":687566,"upload_time":"2017-02-08T00:20:29","upload_time_iso_8601":"2017-02-08T00:20:29.912259Z","url":"https://files.pythonhosted.org/packages/f3/2d/f845bad1564620dac1e60a83873c9053d59b95a8b3711defe44cae1294e3/CherryPy-10.1.0.tar.gz","yanked":false}],"10.1.1":[{"comment_text":"","digests":{"md5":"8b0b9da04d28cf1c270453b75eeb43a2","sha256":"e7a182eacb5b00a29bb99bf9a43c2efb353f4c7f5b792411b858836b8c3aad11"},"downloads":-1,"filename":"CherryPy-10.1.1-py2.py3-none-any.whl","has_sig":false,"md5_digest":"8b0b9da04d28cf1c270453b75eeb43a2","packagetype":"bdist_wheel","python_version":"py2.py3","requires_python":">=2.6,!=3.0.*","size":434565,"upload_time":"2017-02-18T22:39:29","upload_time_iso_8601":"2017-02-18T22:39:29.786384Z","url":"https://files.pythonhosted.org/packages/04/7e/08857376cdd0302ac4b0167f7a29d089a1b2610f91f368aa83d2bd4e346a/CherryPy-10.1.1-py2.py3-none-any.whl","yanked":false},{"comment_text":"","digests":{"md5":"4957d9f40c7a0772ad4f2e3fbb5a627f","sha256":"a78a604e3afb0074cafa9c15c4ca25af0db4e52b2931e4a2c4b7df09151aa032"},"downloads":-1,"filename":"CherryPy-10.1.1.tar.
|