summaryrefslogtreecommitdiff
path: root/python-mangum.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-04-10 18:19:52 +0000
committerCoprDistGit <infra@openeuler.org>2023-04-10 18:19:52 +0000
commit860a1348c39ccc5afa82ef156cd4390aa0310ca1 (patch)
tree71edfa5b9761809bc4f5b563aeff3d6f4d9ce204 /python-mangum.spec
parent9a14394e84731ac0908ca09a7b9def1ff2008bef (diff)
automatic import of python-mangum
Diffstat (limited to 'python-mangum.spec')
-rw-r--r--python-mangum.spec304
1 files changed, 304 insertions, 0 deletions
diff --git a/python-mangum.spec b/python-mangum.spec
new file mode 100644
index 0000000..7ddc826
--- /dev/null
+++ b/python-mangum.spec
@@ -0,0 +1,304 @@
+%global _empty_manifest_terminate_build 0
+Name: python-mangum
+Version: 0.17.0
+Release: 1
+Summary: AWS Lambda support for ASGI applications
+License: MIT
+URL: https://github.com/jordaneremieff/mangum
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/a6/3d/c9664d56ad6b32d7c7ebf82a77cacc290ebed033f96adf0c98a9114ace4e/mangum-0.17.0.tar.gz
+BuildArch: noarch
+
+Requires: python3-typing-extensions
+
+%description
+# Mangum
+
+<a href="https://pypi.org/project/mangum/">
+ <img src="https://badge.fury.io/py/mangum.svg" alt="Package version">
+</a>
+<a href="https://travis-ci.org/jordaneremieff/mangum">
+ <img src="https://travis-ci.org/jordaneremieff/mangum.svg?branch=master" alt="Build Status">
+</a>
+<img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/mangum.svg?style=flat-square">
+
+Mangum is an adapter for running [ASGI](https://asgi.readthedocs.io/en/latest/) applications in AWS Lambda to handle Function URL, API Gateway, ALB, and Lambda@Edge events.
+
+***Documentation***: https://mangum.io/
+
+## Features
+
+- Event handlers for API Gateway [HTTP](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api.html) and [REST](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-rest-api.html) APIs, [Application Load Balancer](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/lambda-functions.html), [Function URLs](https://docs.aws.amazon.com/lambda/latest/dg/lambda-urls.html), and [CloudFront Lambda@Edge](https://docs.aws.amazon.com/lambda/latest/dg/lambda-edge.html).
+
+- Compatibility with ASGI application frameworks, such as [Starlette](https://www.starlette.io/), [FastAPI](https://fastapi.tiangolo.com/), [Quart](https://pgjones.gitlab.io/quart/) and [Django](https://www.djangoproject.com/).
+
+- Support for binary media types and payload compression in API Gateway using GZip or Brotli.
+
+- Works with existing deployment and configuration tools, including [Serverless Framework](https://www.serverless.com/) and [AWS SAM](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/what-is-sam.html).
+
+- Startup and shutdown [lifespan](https://asgi.readthedocs.io/en/latest/specs/lifespan.html) events.
+
+## Requirements
+
+Python 3.7+
+
+## Installation
+
+```shell
+pip install mangum
+```
+
+## Example
+
+```python
+from mangum import Mangum
+
+async def app(scope, receive, send):
+ await send(
+ {
+ "type": "http.response.start",
+ "status": 200,
+ "headers": [[b"content-type", b"text/plain; charset=utf-8"]],
+ }
+ )
+ await send({"type": "http.response.body", "body": b"Hello, world!"})
+
+
+handler = Mangum(app, lifespan="off")
+```
+
+Or using a framework:
+
+```python
+from fastapi import FastAPI
+from mangum import Mangum
+
+app = FastAPI()
+
+
+@app.get("/")
+def read_root():
+ return {"Hello": "World"}
+
+
+@app.get("/items/{item_id}")
+def read_item(item_id: int, q: str = None):
+ return {"item_id": item_id, "q": q}
+
+handler = Mangum(app, lifespan="off")
+```
+
+
+
+
+%package -n python3-mangum
+Summary: AWS Lambda support for ASGI applications
+Provides: python-mangum
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-mangum
+# Mangum
+
+<a href="https://pypi.org/project/mangum/">
+ <img src="https://badge.fury.io/py/mangum.svg" alt="Package version">
+</a>
+<a href="https://travis-ci.org/jordaneremieff/mangum">
+ <img src="https://travis-ci.org/jordaneremieff/mangum.svg?branch=master" alt="Build Status">
+</a>
+<img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/mangum.svg?style=flat-square">
+
+Mangum is an adapter for running [ASGI](https://asgi.readthedocs.io/en/latest/) applications in AWS Lambda to handle Function URL, API Gateway, ALB, and Lambda@Edge events.
+
+***Documentation***: https://mangum.io/
+
+## Features
+
+- Event handlers for API Gateway [HTTP](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api.html) and [REST](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-rest-api.html) APIs, [Application Load Balancer](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/lambda-functions.html), [Function URLs](https://docs.aws.amazon.com/lambda/latest/dg/lambda-urls.html), and [CloudFront Lambda@Edge](https://docs.aws.amazon.com/lambda/latest/dg/lambda-edge.html).
+
+- Compatibility with ASGI application frameworks, such as [Starlette](https://www.starlette.io/), [FastAPI](https://fastapi.tiangolo.com/), [Quart](https://pgjones.gitlab.io/quart/) and [Django](https://www.djangoproject.com/).
+
+- Support for binary media types and payload compression in API Gateway using GZip or Brotli.
+
+- Works with existing deployment and configuration tools, including [Serverless Framework](https://www.serverless.com/) and [AWS SAM](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/what-is-sam.html).
+
+- Startup and shutdown [lifespan](https://asgi.readthedocs.io/en/latest/specs/lifespan.html) events.
+
+## Requirements
+
+Python 3.7+
+
+## Installation
+
+```shell
+pip install mangum
+```
+
+## Example
+
+```python
+from mangum import Mangum
+
+async def app(scope, receive, send):
+ await send(
+ {
+ "type": "http.response.start",
+ "status": 200,
+ "headers": [[b"content-type", b"text/plain; charset=utf-8"]],
+ }
+ )
+ await send({"type": "http.response.body", "body": b"Hello, world!"})
+
+
+handler = Mangum(app, lifespan="off")
+```
+
+Or using a framework:
+
+```python
+from fastapi import FastAPI
+from mangum import Mangum
+
+app = FastAPI()
+
+
+@app.get("/")
+def read_root():
+ return {"Hello": "World"}
+
+
+@app.get("/items/{item_id}")
+def read_item(item_id: int, q: str = None):
+ return {"item_id": item_id, "q": q}
+
+handler = Mangum(app, lifespan="off")
+```
+
+
+
+
+%package help
+Summary: Development documents and examples for mangum
+Provides: python3-mangum-doc
+%description help
+# Mangum
+
+<a href="https://pypi.org/project/mangum/">
+ <img src="https://badge.fury.io/py/mangum.svg" alt="Package version">
+</a>
+<a href="https://travis-ci.org/jordaneremieff/mangum">
+ <img src="https://travis-ci.org/jordaneremieff/mangum.svg?branch=master" alt="Build Status">
+</a>
+<img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/mangum.svg?style=flat-square">
+
+Mangum is an adapter for running [ASGI](https://asgi.readthedocs.io/en/latest/) applications in AWS Lambda to handle Function URL, API Gateway, ALB, and Lambda@Edge events.
+
+***Documentation***: https://mangum.io/
+
+## Features
+
+- Event handlers for API Gateway [HTTP](https://docs.aws.amazon.com/apigateway/latest/developerguide/http-api.html) and [REST](https://docs.aws.amazon.com/apigateway/latest/developerguide/apigateway-rest-api.html) APIs, [Application Load Balancer](https://docs.aws.amazon.com/elasticloadbalancing/latest/application/lambda-functions.html), [Function URLs](https://docs.aws.amazon.com/lambda/latest/dg/lambda-urls.html), and [CloudFront Lambda@Edge](https://docs.aws.amazon.com/lambda/latest/dg/lambda-edge.html).
+
+- Compatibility with ASGI application frameworks, such as [Starlette](https://www.starlette.io/), [FastAPI](https://fastapi.tiangolo.com/), [Quart](https://pgjones.gitlab.io/quart/) and [Django](https://www.djangoproject.com/).
+
+- Support for binary media types and payload compression in API Gateway using GZip or Brotli.
+
+- Works with existing deployment and configuration tools, including [Serverless Framework](https://www.serverless.com/) and [AWS SAM](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/what-is-sam.html).
+
+- Startup and shutdown [lifespan](https://asgi.readthedocs.io/en/latest/specs/lifespan.html) events.
+
+## Requirements
+
+Python 3.7+
+
+## Installation
+
+```shell
+pip install mangum
+```
+
+## Example
+
+```python
+from mangum import Mangum
+
+async def app(scope, receive, send):
+ await send(
+ {
+ "type": "http.response.start",
+ "status": 200,
+ "headers": [[b"content-type", b"text/plain; charset=utf-8"]],
+ }
+ )
+ await send({"type": "http.response.body", "body": b"Hello, world!"})
+
+
+handler = Mangum(app, lifespan="off")
+```
+
+Or using a framework:
+
+```python
+from fastapi import FastAPI
+from mangum import Mangum
+
+app = FastAPI()
+
+
+@app.get("/")
+def read_root():
+ return {"Hello": "World"}
+
+
+@app.get("/items/{item_id}")
+def read_item(item_id: int, q: str = None):
+ return {"item_id": item_id, "q": q}
+
+handler = Mangum(app, lifespan="off")
+```
+
+
+
+
+%prep
+%autosetup -n mangum-0.17.0
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-mangum -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.17.0-1
+- Package Spec generated