Mise à jour de Monitor.py et autres scripts
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,84 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: tornado
|
||||
Version: 6.5.1
|
||||
Summary: Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed.
|
||||
Home-page: http://www.tornadoweb.org/
|
||||
Author: Facebook
|
||||
Author-email: python-tornado@googlegroups.com
|
||||
License: Apache-2.0
|
||||
Project-URL: Source, https://github.com/tornadoweb/tornado
|
||||
Classifier: License :: OSI Approved :: Apache Software License
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: 3.12
|
||||
Classifier: Programming Language :: Python :: 3.13
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: Python :: Implementation :: PyPy
|
||||
Requires-Python: >= 3.9
|
||||
Description-Content-Type: text/x-rst
|
||||
License-File: LICENSE
|
||||
Dynamic: author
|
||||
Dynamic: author-email
|
||||
Dynamic: classifier
|
||||
Dynamic: description
|
||||
Dynamic: description-content-type
|
||||
Dynamic: home-page
|
||||
Dynamic: license
|
||||
Dynamic: license-file
|
||||
Dynamic: project-url
|
||||
Dynamic: requires-python
|
||||
Dynamic: summary
|
||||
|
||||
Tornado Web Server
|
||||
==================
|
||||
|
||||
.. image:: https://badges.gitter.im/Join%20Chat.svg
|
||||
:alt: Join the chat at https://gitter.im/tornadoweb/tornado
|
||||
:target: https://gitter.im/tornadoweb/tornado?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
|
||||
|
||||
`Tornado <http://www.tornadoweb.org>`_ is a Python web framework and
|
||||
asynchronous networking library, originally developed at `FriendFeed
|
||||
<http://friendfeed.com>`_. By using non-blocking network I/O, Tornado
|
||||
can scale to tens of thousands of open connections, making it ideal for
|
||||
`long polling <http://en.wikipedia.org/wiki/Push_technology#Long_Polling>`_,
|
||||
`WebSockets <http://en.wikipedia.org/wiki/WebSocket>`_, and other
|
||||
applications that require a long-lived connection to each user.
|
||||
|
||||
Hello, world
|
||||
------------
|
||||
|
||||
Here is a simple "Hello, world" example web app for Tornado:
|
||||
|
||||
.. code-block:: python
|
||||
|
||||
import asyncio
|
||||
import tornado
|
||||
|
||||
class MainHandler(tornado.web.RequestHandler):
|
||||
def get(self):
|
||||
self.write("Hello, world")
|
||||
|
||||
def make_app():
|
||||
return tornado.web.Application([
|
||||
(r"/", MainHandler),
|
||||
])
|
||||
|
||||
async def main():
|
||||
app = make_app()
|
||||
app.listen(8888)
|
||||
await asyncio.Event().wait()
|
||||
|
||||
if __name__ == "__main__":
|
||||
asyncio.run(main())
|
||||
|
||||
This example does not use any of Tornado's asynchronous features; for
|
||||
that see this `simple chat room
|
||||
<https://github.com/tornadoweb/tornado/tree/stable/demos/chat>`_.
|
||||
|
||||
Documentation
|
||||
-------------
|
||||
|
||||
Documentation and links to additional resources are available at
|
||||
https://www.tornadoweb.org
|
||||
@@ -0,0 +1,171 @@
|
||||
tornado-6.5.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
tornado-6.5.1.dist-info/METADATA,sha256=-7y6ALmuUbAeA9DjXECOkIwlJJDaKxmbXPCLzXaaUAk,2770
|
||||
tornado-6.5.1.dist-info/RECORD,,
|
||||
tornado-6.5.1.dist-info/WHEEL,sha256=mEBzkqF84NcfpTBLt1jEDCtiDPXd2qaoQRqbUcljomU,216
|
||||
tornado-6.5.1.dist-info/licenses/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
||||
tornado-6.5.1.dist-info/top_level.txt,sha256=5QAK1MeNpWgYdqWoU8iYlDuGB8j6NDPgx-uSUHTe0A4,8
|
||||
tornado/__init__.py,sha256=raZBI4iTwwfOGbothzF5vvv97-YBru0s2SxjBxFY4yM,1761
|
||||
tornado/__init__.pyi,sha256=RUdPKzNnl42WS0PQvAnhH-ZkooufxLEl7l_jbq07sfI,714
|
||||
tornado/__pycache__/__init__.cpython-311.pyc,,
|
||||
tornado/__pycache__/_locale_data.cpython-311.pyc,,
|
||||
tornado/__pycache__/auth.cpython-311.pyc,,
|
||||
tornado/__pycache__/autoreload.cpython-311.pyc,,
|
||||
tornado/__pycache__/concurrent.cpython-311.pyc,,
|
||||
tornado/__pycache__/curl_httpclient.cpython-311.pyc,,
|
||||
tornado/__pycache__/escape.cpython-311.pyc,,
|
||||
tornado/__pycache__/gen.cpython-311.pyc,,
|
||||
tornado/__pycache__/http1connection.cpython-311.pyc,,
|
||||
tornado/__pycache__/httpclient.cpython-311.pyc,,
|
||||
tornado/__pycache__/httpserver.cpython-311.pyc,,
|
||||
tornado/__pycache__/httputil.cpython-311.pyc,,
|
||||
tornado/__pycache__/ioloop.cpython-311.pyc,,
|
||||
tornado/__pycache__/iostream.cpython-311.pyc,,
|
||||
tornado/__pycache__/locale.cpython-311.pyc,,
|
||||
tornado/__pycache__/locks.cpython-311.pyc,,
|
||||
tornado/__pycache__/log.cpython-311.pyc,,
|
||||
tornado/__pycache__/netutil.cpython-311.pyc,,
|
||||
tornado/__pycache__/options.cpython-311.pyc,,
|
||||
tornado/__pycache__/process.cpython-311.pyc,,
|
||||
tornado/__pycache__/queues.cpython-311.pyc,,
|
||||
tornado/__pycache__/routing.cpython-311.pyc,,
|
||||
tornado/__pycache__/simple_httpclient.cpython-311.pyc,,
|
||||
tornado/__pycache__/tcpclient.cpython-311.pyc,,
|
||||
tornado/__pycache__/tcpserver.cpython-311.pyc,,
|
||||
tornado/__pycache__/template.cpython-311.pyc,,
|
||||
tornado/__pycache__/testing.cpython-311.pyc,,
|
||||
tornado/__pycache__/util.cpython-311.pyc,,
|
||||
tornado/__pycache__/web.cpython-311.pyc,,
|
||||
tornado/__pycache__/websocket.cpython-311.pyc,,
|
||||
tornado/__pycache__/wsgi.cpython-311.pyc,,
|
||||
tornado/_locale_data.py,sha256=AO8ZtZ75VeZsiRpirbH-FNvz3OFDQxGQcXmqT29vaWo,4503
|
||||
tornado/auth.py,sha256=PQ0qL3fW3TnauWAaIG7nprOKVPMvQKNqvCEN0hzOfqs,48955
|
||||
tornado/autoreload.py,sha256=UY29Qf0gBl_jwrS3QmGhzLYvn-mD9KOJ4a7XxM9PK30,13136
|
||||
tornado/concurrent.py,sha256=n0aO3LLEbYrB4nXUvmNQcxenhlEfLsG7I3921JdM_Wg,8376
|
||||
tornado/curl_httpclient.py,sha256=d4mAVmPMH5Nt8ylzK5D0RkMy6Z0D2yktX1PPxa4me4o,24904
|
||||
tornado/escape.py,sha256=0CtyR7CRIH5iVRq5eSzhq5C_G4FQNpN7IxqHIhtyEb0,14221
|
||||
tornado/gen.py,sha256=gWn-cybtjXRmgvPp-2kdvRm4F4Gxdi7Ccq9aU-JQRmE,31435
|
||||
tornado/http1connection.py,sha256=LsYZF_O2h-jan3xmtXwEGmGC6LCJTT2dWoOLJRvOhcA,37658
|
||||
tornado/httpclient.py,sha256=7pTqBn6hTEtxjDHrG2TM3Aoa0Q80JqRiiSeGk65UUHs,31843
|
||||
tornado/httpserver.py,sha256=IjwF7Riw1niM-fzqgmEsExTP5frkrGeH4MYJwR3ff4I,16131
|
||||
tornado/httputil.py,sha256=d8-aXWZP_x0Wov11hoVK7ORQvop2t_LrmobXyO8WiwI,43413
|
||||
tornado/ioloop.py,sha256=t2E5mzpuWonsD6PFYmEtHdFz6FzK6Xcb1vlIxwfIr10,37421
|
||||
tornado/iostream.py,sha256=0_TUA1xTW-irJH0aP7a-FrIQ6ZrR7rB_W_Hxwoj771Q,63873
|
||||
tornado/locale.py,sha256=laf3HLPPewLtlv_yCZ02ig1EsWQiBdqY3lzsGzXDpPY,21122
|
||||
tornado/locks.py,sha256=O_97F2ePhIZMJS5I7NtdQXbzZXU1oPrLIZbEUHrurRQ,17260
|
||||
tornado/log.py,sha256=Rij7y_eAZS90Jq4RAhqKICe8EAlrpsFtk8ngK02wnFc,12547
|
||||
tornado/netutil.py,sha256=RUttxVxMAra0RXdHoBWCGsUjdz06CHp-ahH1t1TTyI4,25077
|
||||
tornado/options.py,sha256=78xhETKaMxwrJomUlTOOjpldj0EkTCJIPsENQsMfi84,25860
|
||||
tornado/platform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
tornado/platform/__pycache__/__init__.cpython-311.pyc,,
|
||||
tornado/platform/__pycache__/asyncio.cpython-311.pyc,,
|
||||
tornado/platform/__pycache__/caresresolver.cpython-311.pyc,,
|
||||
tornado/platform/__pycache__/twisted.cpython-311.pyc,,
|
||||
tornado/platform/asyncio.py,sha256=euzuZy_KSp1550Cli_EoYHmaVm1-wqNyckSFOvpb2Tc,28136
|
||||
tornado/platform/caresresolver.py,sha256=2NqxW1tDvM9KSv1OcifyZJs-3ZAS68D1EBwmlRbq42E,3500
|
||||
tornado/platform/twisted.py,sha256=HZY6RWdgNocZ9bdeo8XqGhEMLiM7jh7X9jhy4kyLOI0,2158
|
||||
tornado/process.py,sha256=Mitw4QA3K58FGt3Tg8GLUVwwQ9I9HQfB7eOBoc1EQug,12696
|
||||
tornado/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
tornado/queues.py,sha256=Ik1vXWx-RE130Qa8ZL7XqVGU8cd0NnDMjuDNFwpPzVc,12513
|
||||
tornado/routing.py,sha256=K6y7jEhdlWcycqCyN5wd77pvRDVplOkeA1_CANcRurc,25139
|
||||
tornado/simple_httpclient.py,sha256=FTRI6ftAdoc0bDmETX4_Fet9joLyxvlqgCMLxY11otI,27747
|
||||
tornado/speedups.abi3.so,sha256=GsPMV9mMZ7W4ZXvG1KrhfylsOdOELMudPGa2sl2Gi5A,21128
|
||||
tornado/speedups.pyi,sha256=ze7BL6pk9L9RHDQg4UwvjAapRJ4NsBnNXgxKN1MCY1s,59
|
||||
tornado/tcpclient.py,sha256=BDs2-3S9jwLJyk9tr6ijqdTmA9tezbv2qyrYobPtdug,12126
|
||||
tornado/tcpserver.py,sha256=P9FnhyCcezqRxnR00MpsKN1kPWT5PmGTAHJQG2LBIIk,15006
|
||||
tornado/template.py,sha256=25IMhrx9dikEWoWSs-5TjWw645qCxB6Ooabr23rLnD0,37670
|
||||
tornado/test/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
tornado/test/__main__.py,sha256=My2iTLZY8RZCWDm_FD8lvwEUYQTxuzx2ZxSgafqHnK8,303
|
||||
tornado/test/__pycache__/__init__.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/__main__.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/asyncio_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/auth_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/autoreload_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/circlerefs_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/concurrent_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/curl_httpclient_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/escape_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/gen_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/http1connection_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/httpclient_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/httpserver_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/httputil_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/import_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/ioloop_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/iostream_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/locale_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/locks_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/log_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/netutil_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/options_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/process_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/queues_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/resolve_test_helper.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/routing_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/runtests.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/simple_httpclient_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/tcpclient_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/tcpserver_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/template_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/testing_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/twisted_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/util.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/util_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/web_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/websocket_test.cpython-311.pyc,,
|
||||
tornado/test/__pycache__/wsgi_test.cpython-311.pyc,,
|
||||
tornado/test/asyncio_test.py,sha256=rqyrnTVObxBtsQL_ZLmAJLBGTxYA7dBKH_hd1njbrwo,11891
|
||||
tornado/test/auth_test.py,sha256=vLiCVQnZabaJPVQ0W6pkbbQXKfrenDHctIUNDlH50A4,23311
|
||||
tornado/test/autoreload_test.py,sha256=2I5ka4CGDyignldNvlf4dxi4ZEexbroooCuaiTt6SEE,9176
|
||||
tornado/test/circlerefs_test.py,sha256=IvR2FxlOdQl5psEmtkPTRkOM0HiNOX6d1V284mDZm0g,7321
|
||||
tornado/test/concurrent_test.py,sha256=-euKs99WtCMTpfa2LLmNsC-eBPEnCNnq1viHIOX4o0g,6667
|
||||
tornado/test/csv_translations/fr_FR.csv,sha256=0UsMzfh1cw3yQdhS7pCmRfQoAkbqWpgzzodpZqp7ttM,18
|
||||
tornado/test/curl_httpclient_test.py,sha256=bNKFd9F6wjgFww2VUd4_SQHVEZwV90rGI5QIGhFOxOA,4213
|
||||
tornado/test/escape_test.py,sha256=E4A4Agix9RIbSpaORbYmSLCK8poLFw5T0z-7WchWA_8,12330
|
||||
tornado/test/gen_test.py,sha256=UPEEu0nB7iKU-JV9AlYa_8JCnhRASXW2BtMxjtTy0w8,33825
|
||||
tornado/test/gettext_translations/fr_FR/LC_MESSAGES/tornado_test.mo,sha256=fl0ZVZIlNwwU9lPx29pgZ4X-HfyEVYphJu7UWtll7jo,665
|
||||
tornado/test/gettext_translations/fr_FR/LC_MESSAGES/tornado_test.po,sha256=Clw6HyQUcopGV25qw3pvw3gn1ZqZRYrovsi8PQTQAnM,1049
|
||||
tornado/test/http1connection_test.py,sha256=0Lr47wyU4sGsG4SNWaTIWjgkAIKeK-8OE5SYWXWoEqc,1964
|
||||
tornado/test/httpclient_test.py,sha256=cStxDbEJxoicfGI1nKEgcxtl-sDqGUSXgzqyCSzxeC8,36804
|
||||
tornado/test/httpserver_test.py,sha256=RtUSLjPxiE6npZi9RVKdbt47p1bDvlmLuT2fWCj_tdE,53051
|
||||
tornado/test/httputil_test.py,sha256=Y0cisIoT00lqoVfAnLVUha0LhKTZ0d7Nv-vtGkDsL7A,24793
|
||||
tornado/test/import_test.py,sha256=jiCQP7FN02HX3lEcCdYzOI86LiQ8tFQlQ95Y3VEMeZM,2339
|
||||
tornado/test/ioloop_test.py,sha256=7DptTH84D7Y-DhhcCCrwIP05yqtmJsqqJUQ8l0_qT8k,27962
|
||||
tornado/test/iostream_test.py,sha256=jyqVIo-TCc4nfyoNOBuAG8084mh8dqkfLY5o8XPe9A8,51795
|
||||
tornado/test/locale_test.py,sha256=bW1ooegzBpqv9Iy4m7B5sJWqkMa81wODJ9Azs_JbJS8,6359
|
||||
tornado/test/locks_test.py,sha256=XfPwR4cmRmY7k-RlfocIRlIiFMwabqLfIh9TWpK2zec,16998
|
||||
tornado/test/log_test.py,sha256=CUATiel9I3L6HXRiYSubFRS3Gapqu7oV3sRxss6Pq5Y,8912
|
||||
tornado/test/netutil_test.py,sha256=Z6dNzfl6naxYPcGft_V1Z8DyQavbnOmTeQR-Awclnhk,7038
|
||||
tornado/test/options_test.cfg,sha256=SpUupk-MfXBMhLENqXmD-K5a2Mp888REqfICQupcgqc,69
|
||||
tornado/test/options_test.py,sha256=-_5u3u7AIyVDYdAnkINAo6lR1T7_jN2hnFNEoAmgSEg,11881
|
||||
tornado/test/options_test_types.cfg,sha256=17sAubRDinYX_DRhdCaVJ0UpX1AefZ9o_wQ2ypMVwL0,296
|
||||
tornado/test/options_test_types_str.cfg,sha256=ypIodrtpymSX2HsevGJJ4A07oLifb5ffkBISog364qo,172
|
||||
tornado/test/process_test.py,sha256=9LiV_AB8eQksUm4VX4MfSKeffeUw6X8tlcw6D89lWRU,10677
|
||||
tornado/test/queues_test.py,sha256=EGTV1_BMK3gTjlrFEyqQE1FE2WM9CPA6D7Nj20J2i7c,13981
|
||||
tornado/test/resolve_test_helper.py,sha256=rTiOMC4KVo_21XvsLhtiZCjaquk_zt6DVM_hCyCM7yE,410
|
||||
tornado/test/routing_test.py,sha256=YWZGtYp2UVj2Vf-e1KYdhXz35MgD0zwNXLy7ISYO0Q0,8827
|
||||
tornado/test/runtests.py,sha256=OoFxV3cit-LIzbB0Oir96VY7tSCsbOfXMRJkfU8lAdA,7459
|
||||
tornado/test/simple_httpclient_test.py,sha256=JXNDZNXtq1LVsqWkUhqPgO6W7jMcPrlp4FsltiK89dw,31535
|
||||
tornado/test/static/dir/index.html,sha256=tBwBanUSjISUy0BVan_QNKkYdLau8qs__P0G9oAiP78,18
|
||||
tornado/test/static/robots.txt,sha256=Mx6pCQ2wyfb1l72YQP1bFxgw9uCzuhyyTfqR8Mla7cE,26
|
||||
tornado/test/static/sample.xml,sha256=7LeTf16BWDucipsUaZZK7oDxtKEMDH9sFtsNR1G6pME,666
|
||||
tornado/test/static/sample.xml.bz2,sha256=2Ql5ccWnaSpDdTyioino7Bw_dcGFkG_RQO5Lm5cfT6A,285
|
||||
tornado/test/static/sample.xml.gz,sha256=_App0wKpn31lZVA9P_rslytPm4ei5GvNPVKh55r7l28,264
|
||||
tornado/test/static_foo.txt,sha256=DdAKABzHb8kunGrAvUoTLnHlgdTN-6_PjH1irVmokm8,95
|
||||
tornado/test/tcpclient_test.py,sha256=4EDwJExEUtO1sv4oqvTokD-ZaM422o-WCKiygP0BDwc,16511
|
||||
tornado/test/tcpserver_test.py,sha256=5_aRfmfBO2rFp4z5l56HoHplAI16PLkYDyA9Wew1sA4,7711
|
||||
tornado/test/template_test.py,sha256=hvogNL0EfAtEyYNUhRxqiifzydoV4d_WYkYIZxWBCYw,18541
|
||||
tornado/test/templates/utf8.html,sha256=9d1eiaw5KCjUTCbRRIl_RLSy0LCJXaO-bzVF2L_32fM,7
|
||||
tornado/test/test.crt,sha256=ZwLT9G7BdN5oRcCD48m-iAE9JT8SCSokPVzJYMw9uvo,1042
|
||||
tornado/test/test.key,sha256=LJXshpCeMpmvgHeGdBQBWaRMK4yEIvMagugdQFcvDHQ,1708
|
||||
tornado/test/testing_test.py,sha256=0Kz_IpffRki0E3GbP5QPe7XUkj4nlp77jjM5KQ0pwm4,10509
|
||||
tornado/test/twisted_test.py,sha256=Gbs1m5UrSIoaLILj6jZr1dmxwBK_izExtkI1XuafVpE,2104
|
||||
tornado/test/util.py,sha256=MJllABcX-mmX1buNiJcy9dQ65ZU3Pxpbkn44AMzymP8,4323
|
||||
tornado/test/util_test.py,sha256=IzrVXJF1QpLPFqP7B9p-J1eD3uLrzVpUNk6FYzIYy4Y,13007
|
||||
tornado/test/web_test.py,sha256=rN5KimzMhxg2mc94dzvgwdd731JY_wnNp0sIC3LdhIU,122489
|
||||
tornado/test/websocket_test.py,sha256=zdkfqqPcAlTiyeu1z5fgtnMjfKcRIDVXBGKUBR1_7KE,31785
|
||||
tornado/test/wsgi_test.py,sha256=tQJa7kCQ6CHCqrYzkBcbDjjwl3qipsjailNrcVJgi2o,3918
|
||||
tornado/testing.py,sha256=v2vJzGJU1JSZtDCqrZN9mshPxorSDPQLdctVRw5W-3Q,33153
|
||||
tornado/util.py,sha256=OGp0nDkRG4KZWHimuS9Gm8Gp6-tcqX3aVCWasFiojCs,15780
|
||||
tornado/web.py,sha256=dLhVJTsMaL7df7bP45fk4iIZ9moC27QoUv2yxbJ25Js,145698
|
||||
tornado/websocket.py,sha256=A5jStVL_Eo3J9AQ6-vfSBCtKnQgfpStldKidR3JGilc,63629
|
||||
tornado/wsgi.py,sha256=RNmfbvI4zAKg0ImmHRrtF5LBWt7yylxuTLesuGNTkk0,10799
|
||||
@@ -0,0 +1,8 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (80.8.0)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp39-abi3-manylinux_2_5_x86_64
|
||||
Tag: cp39-abi3-manylinux1_x86_64
|
||||
Tag: cp39-abi3-manylinux_2_17_x86_64
|
||||
Tag: cp39-abi3-manylinux2014_x86_64
|
||||
|
||||
@@ -0,0 +1,202 @@
|
||||
|
||||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
||||
@@ -0,0 +1 @@
|
||||
tornado
|
||||
Reference in New Issue
Block a user