Name | nanoroute JSON |
Version |
2.0.0
JSON |
| download |
home_page | None |
Summary | Small, fast, HTTP URL router |
upload_time | 2024-11-05 06:44:37 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.13 |
license | Creative Commons Legal Code CC0 1.0 Universal CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. Statement of Purpose The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; ii. moral rights retained by the original author(s) and/or performer(s); iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; v. rights protecting the extraction, dissemination, use and reuse of data in a Work; vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 4. Limitations and Disclaimers. a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. |
keywords |
wsgi
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/nickelpro/nanoroute/test.yaml?style=for-the-badge)](https://github.com/nickelpro/nanoroute/actions/workflows/test.yaml)
# nanoroute
A small Python HTTP URL routing facility capable of sub-microsecond routing,
typically <200ns.
Nanoroute is a C++ implementation of a modified version of the priority
radix-tree algorithm pioneered by Julien Schmidt's
[httprouter](https://github.com/julienschmidt/httprouter). Like httprouter,
nanorouter's underlying implementation performs no allocations in the common
case, although some allocations are necessary to create the PyObjects necessary
for the CPython bindings.
The nanoroute package is suitable as a building block for more fully featured
HTTP frameworks. It also provides a simple WSGI interface for integration
directly into WSGI application stacks.
The intended use cases are high-performance message brokers, dispatchers, and
ingestion endpoints. The performance improvements of a high-speed router are
unlikely to be very significant in a typical database-backed Python REST API.
## Quickstart
For complete documentation, see the [docs]().
#### Installation
Nanoroute only supports Python 3.13+. It is available via PyPI, any mechanism
of installing Python packages from PyPI will work:
```
pip install nanoroute
```
#### Registering Routes
Nanoroute provides a single class, the `router`, which can be used to register
handlers for common HTTP verbs.
```python
import nanoroute
app = nanoroute.router()
@app.get('/')
def root(*args, **kwargs):
...
@app.post('/endpoint')
def endpoint(*args, **kwargs):
...
```
The verbs supported via these convenience methods are `GET`, `POST`, `PUT`, and
`DELETE`. Arbitrary sets of any ***valid*** HTTP verbs can be registered
using `router.route()`.
```python
# Register for a single HTTP verb
@app.route('PATCH', '/object')
def handle_patch(*args, **kwargs):
...
# Register for a multiple HTTP verbs
@app.route(['POST', 'PUT'], '/multi-meth')
def handle_multi(*args, **kwargs):
...
```
Finally, any arbitrary object can be registered with nanoroute. The decorator
syntax is merely convenient for typical usage.
```python
# Register arbitrary object for GET '/'
app.get('/')(object())
```
#### Capturing Parameters
Two forms of parameter capture are available, segment capture and catchall.
Segment captures are delimited by `:` and capture from the appearance of the
delimiter until the following `/` or the end of the URL. Catchalls are delimited
by `*` and capture the entire URL following their appearance.
Both types of parameter capture may be followed by a name, which will used as
the key associated with the parameter during route lookup. Anonymous parameters
act as wildcards, they have the same behavior as named parameters but the
captured data is not reported during lookup.
```python
# Captures the middle segment with the name "id"
@app.get('/user/:id/profile')
def get_profile(*args, **kwargs):
...
# Captures the article ID into "id", and then everything after the final "/"
# is captured as "slug" which might contain multiple path segments
@app.get('/article/:id/*slug')
def article(*args, **kwargs):
...
# The first path segment is a wildcard, anything may appear, but nothing is
# captured during route lookup
@app.get('/:/anonymous')
def anon(*args, **kwargs):
...
```
Captures are allowed to appear at arbtirary points in a given segment, so
long as multiple captures do not appear in the same segment.
```python
# Captures an "id" in the middle of a segment
@app.get('/user_:id/profile')
def get_profile(*args, **kwargs):
...
# Error: Invalid wildcard construction. Only one capture is allowed to appear
# in a given path segment
@app.get('/user_:id_:name')
def this_is_an_error(*args, **kwargs):
...
```
Captures that appear in the same place for different paths may have different
names, which will be recorded appropriately.
```python
# Captures the first segment as "foo"
@app.get('/:foo/alpha')
def alpha(*args, **kwargs):
...
# Captures the first segment as "bar"
@app.get('/:bar/beta')
def beta(*args, **kwargs):
...
```
#### Lookup
The base lookup facility is `router.lookup()`, which is intended for other
frameworks to use as a building block. It takes a method and path as arguments
and returns the registered handler and a parameter capture dictionary.
```python
@app.get('/user/:name')
def say_hello(params):
print(f'Hello {params['name']}!')
handler, params = app.lookup('GET', '/user/Jane')
handler(params)
# >>> Hello Jane!
```
As a convenience, a WSGI application is also provided. It is directly equivalent
to the following code:
```python
def wsgi_app(environ, start_response):
handler, params = app.lookup(environ['REQUEST_METHOD'], environ['PATH_INFO'])
environ['nanoroute.params'] = params
return handler(environ, start_response)
app.wsgi_app = wsgi_app
```
Raw data
{
"_id": null,
"home_page": null,
"name": "nanoroute",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.13",
"maintainer_email": null,
"keywords": "WSGI",
"author": null,
"author_email": "Vito Gamberini <vito@gamberini.email>",
"download_url": "https://files.pythonhosted.org/packages/62/d2/75d8fba44bda4f46dd81d0dffe0af4b6c4186c0414c346a4464498399d68/nanoroute-2.0.0.tar.gz",
"platform": null,
"description": "[![GitHub Actions Workflow Status](https://img.shields.io/github/actions/workflow/status/nickelpro/nanoroute/test.yaml?style=for-the-badge)](https://github.com/nickelpro/nanoroute/actions/workflows/test.yaml)\n\n# nanoroute\n\nA small Python HTTP URL routing facility capable of sub-microsecond routing,\ntypically <200ns.\n\nNanoroute is a C++ implementation of a modified version of the priority\nradix-tree algorithm pioneered by Julien Schmidt's\n[httprouter](https://github.com/julienschmidt/httprouter). Like httprouter,\nnanorouter's underlying implementation performs no allocations in the common\ncase, although some allocations are necessary to create the PyObjects necessary\nfor the CPython bindings.\n\nThe nanoroute package is suitable as a building block for more fully featured\nHTTP frameworks. It also provides a simple WSGI interface for integration\ndirectly into WSGI application stacks.\n\nThe intended use cases are high-performance message brokers, dispatchers, and\ningestion endpoints. The performance improvements of a high-speed router are\nunlikely to be very significant in a typical database-backed Python REST API.\n\n## Quickstart\n\nFor complete documentation, see the [docs]().\n\n#### Installation\n\nNanoroute only supports Python 3.13+. It is available via PyPI, any mechanism\nof installing Python packages from PyPI will work:\n\n```\npip install nanoroute\n```\n\n#### Registering Routes\n\nNanoroute provides a single class, the `router`, which can be used to register\nhandlers for common HTTP verbs.\n\n```python\nimport nanoroute\n\napp = nanoroute.router()\n\n@app.get('/')\ndef root(*args, **kwargs):\n ...\n\n@app.post('/endpoint')\ndef endpoint(*args, **kwargs):\n ...\n```\n\nThe verbs supported via these convenience methods are `GET`, `POST`, `PUT`, and\n`DELETE`. Arbitrary sets of any ***valid*** HTTP verbs can be registered\nusing `router.route()`.\n\n```python\n# Register for a single HTTP verb\n@app.route('PATCH', '/object')\ndef handle_patch(*args, **kwargs):\n ...\n\n# Register for a multiple HTTP verbs\n@app.route(['POST', 'PUT'], '/multi-meth')\ndef handle_multi(*args, **kwargs):\n ...\n```\n\nFinally, any arbitrary object can be registered with nanoroute. The decorator\nsyntax is merely convenient for typical usage.\n\n```python\n# Register arbitrary object for GET '/'\napp.get('/')(object())\n```\n\n#### Capturing Parameters\n\nTwo forms of parameter capture are available, segment capture and catchall.\nSegment captures are delimited by `:` and capture from the appearance of the\ndelimiter until the following `/` or the end of the URL. Catchalls are delimited\nby `*` and capture the entire URL following their appearance.\n\nBoth types of parameter capture may be followed by a name, which will used as\nthe key associated with the parameter during route lookup. Anonymous parameters\nact as wildcards, they have the same behavior as named parameters but the\ncaptured data is not reported during lookup.\n\n```python\n# Captures the middle segment with the name \"id\"\n@app.get('/user/:id/profile')\ndef get_profile(*args, **kwargs):\n ...\n\n# Captures the article ID into \"id\", and then everything after the final \"/\"\n# is captured as \"slug\" which might contain multiple path segments\n@app.get('/article/:id/*slug')\ndef article(*args, **kwargs):\n ...\n\n# The first path segment is a wildcard, anything may appear, but nothing is\n# captured during route lookup\n@app.get('/:/anonymous')\ndef anon(*args, **kwargs):\n ...\n```\n\nCaptures are allowed to appear at arbtirary points in a given segment, so\nlong as multiple captures do not appear in the same segment.\n\n```python\n# Captures an \"id\" in the middle of a segment\n@app.get('/user_:id/profile')\ndef get_profile(*args, **kwargs):\n ...\n\n# Error: Invalid wildcard construction. Only one capture is allowed to appear\n# in a given path segment\n@app.get('/user_:id_:name')\ndef this_is_an_error(*args, **kwargs):\n ...\n```\n\nCaptures that appear in the same place for different paths may have different\nnames, which will be recorded appropriately.\n\n```python\n# Captures the first segment as \"foo\"\n@app.get('/:foo/alpha')\ndef alpha(*args, **kwargs):\n ...\n\n# Captures the first segment as \"bar\"\n@app.get('/:bar/beta')\ndef beta(*args, **kwargs):\n ...\n```\n\n#### Lookup\n\nThe base lookup facility is `router.lookup()`, which is intended for other\nframeworks to use as a building block. It takes a method and path as arguments\nand returns the registered handler and a parameter capture dictionary.\n\n```python\n@app.get('/user/:name')\ndef say_hello(params):\n print(f'Hello {params['name']}!')\n\nhandler, params = app.lookup('GET', '/user/Jane')\nhandler(params)\n\n# >>> Hello Jane!\n```\n\nAs a convenience, a WSGI application is also provided. It is directly equivalent\nto the following code:\n```python\ndef wsgi_app(environ, start_response):\n handler, params = app.lookup(environ['REQUEST_METHOD'], environ['PATH_INFO'])\n environ['nanoroute.params'] = params\n return handler(environ, start_response)\n\napp.wsgi_app = wsgi_app\n```\n",
"bugtrack_url": null,
"license": "Creative Commons Legal Code CC0 1.0 Universal CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN \"AS-IS\" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. Statement of Purpose The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an \"owner\") of an original work of authorship and/or a database (each, a \"Work\"). Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works (\"Commons\") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the \"Affirmer\"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights (\"Copyright and Related Rights\"). Copyright and Related Rights include, but are not limited to, the following: i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; ii. moral rights retained by the original author(s) and/or performer(s); iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; v. rights protecting the extraction, dissemination, use and reuse of data in a Work; vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"Waiver\"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the \"License\"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 4. Limitations and Disclaimers. a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work.",
"summary": "Small, fast, HTTP URL router",
"version": "2.0.0",
"project_urls": {
"Documentation": "https://github.com/nickelpro/nanoroute"
},
"split_keywords": [
"wsgi"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "32b74ee3ad92cd3a014507c273580b25e5dc229f0658856190a37240e2ebf20c",
"md5": "a4bce964cc73079fcc78e06fe58cc62e",
"sha256": "7c5327a2797399f07807038ec387114b4b827e2c0f7d5e1db7ff2b1ab49033ae"
},
"downloads": -1,
"filename": "nanoroute-2.0.0-cp312-cp312-manylinux_2_39_x86_64.whl",
"has_sig": false,
"md5_digest": "a4bce964cc73079fcc78e06fe58cc62e",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.13",
"size": 34744,
"upload_time": "2024-11-05T06:44:32",
"upload_time_iso_8601": "2024-11-05T06:44:32.152041Z",
"url": "https://files.pythonhosted.org/packages/32/b7/4ee3ad92cd3a014507c273580b25e5dc229f0658856190a37240e2ebf20c/nanoroute-2.0.0-cp312-cp312-manylinux_2_39_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6544a241d87a17b9ba78b9c81ad08e19566e0c6064d540ae805eeea7fb2334c5",
"md5": "f73f65693cc6e1f9662d727c5c821497",
"sha256": "f57659239b99e53495e0efb175300c8d194264743825e759fabe4d8001bd4d33"
},
"downloads": -1,
"filename": "nanoroute-2.0.0-cp313-cp313-macosx_13_0_arm64.whl",
"has_sig": false,
"md5_digest": "f73f65693cc6e1f9662d727c5c821497",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.13",
"size": 27475,
"upload_time": "2024-11-05T06:44:34",
"upload_time_iso_8601": "2024-11-05T06:44:34.001753Z",
"url": "https://files.pythonhosted.org/packages/65/44/a241d87a17b9ba78b9c81ad08e19566e0c6064d540ae805eeea7fb2334c5/nanoroute-2.0.0-cp313-cp313-macosx_13_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c1b64a03b4a199bc548d7d953460961fc5e7f09d391b67d5c58b886585b4fd3",
"md5": "af7cced42b2c4d0f002f5508c436a3f8",
"sha256": "8a3b8718eb310e259522ef49b47e4d321ec656f363990ece0b1acb84926a7cad"
},
"downloads": -1,
"filename": "nanoroute-2.0.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "af7cced42b2c4d0f002f5508c436a3f8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.13",
"size": 84435,
"upload_time": "2024-11-05T06:44:35",
"upload_time_iso_8601": "2024-11-05T06:44:35.732135Z",
"url": "https://files.pythonhosted.org/packages/8c/1b/64a03b4a199bc548d7d953460961fc5e7f09d391b67d5c58b886585b4fd3/nanoroute-2.0.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "62d275d8fba44bda4f46dd81d0dffe0af4b6c4186c0414c346a4464498399d68",
"md5": "a091f3c5d9f8d364ffe90d8bccd159a1",
"sha256": "fa5f70946423915f26ad18f33d845f492c5d4e852b061696d3ea589e26cf4de9"
},
"downloads": -1,
"filename": "nanoroute-2.0.0.tar.gz",
"has_sig": false,
"md5_digest": "a091f3c5d9f8d364ffe90d8bccd159a1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.13",
"size": 22383,
"upload_time": "2024-11-05T06:44:37",
"upload_time_iso_8601": "2024-11-05T06:44:37.175107Z",
"url": "https://files.pythonhosted.org/packages/62/d2/75d8fba44bda4f46dd81d0dffe0af4b6c4186c0414c346a4464498399d68/nanoroute-2.0.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-11-05 06:44:37",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "nickelpro",
"github_project": "nanoroute",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "nanoroute"
}