並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 9 件 / 9件

新着順 人気順

asgiの検索結果1 - 9 件 / 9件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

asgiに関するエントリは9件あります。 pythonフレームワークqiita などが関連タグです。 人気エントリには 『[FastAPI] Python製のASGI Web フレームワーク FastAPIに入門する - Qiita』などがあります。
  • [FastAPI] Python製のASGI Web フレームワーク FastAPIに入門する - Qiita

    PythonのWeb frameworkで、Flaskのようなマイクロフレームワークにあたります。 パフォーマンスの高さ、書きやすさ、本番運用を強く意識した設計、モダンな機能などが強みです。 FastAPIはStarletteの肩に乗る形で書かれており、非同期処理が扱いやすいです。 特に、以下の様な特徴があります。 ASGI websocketのサポート GraphQLのサポート バックグラウンドプロセスが扱いやすい python type hintによる自動ドキュメント生成 (Swagger UI) pydanticをベースとしたdata validation 率直に言って、responderに非常に似ています。(でた時期も近いですし、responderもStarletteがベースなので) ですが、下の2つはFastAPIの方がよっぽど使いやすく設計されています。 以下の観点から総合的に

      [FastAPI] Python製のASGI Web フレームワーク FastAPIに入門する - Qiita
    • サクッとWSGI・ASGIに触れてみる - okigaki_log

      普段FlaskやFastAPIなどのpythonフレームワークを使っている方は、起動時のメッセージやエラーメッセージなどでWSGIやASGIという言葉をよく目にすることがあると思います。でもフレームワークを使っているだけではWSGIやASGIについてあまり意識する必要はありません。私も言葉だけ知ってるだけで何者かよく知らない状態だったので、今回調べてことにしました。 WSGIとは WSGIに沿ったアプリケーションの実装 ASGIとは ASGIに沿ったアプリケーションの実装 まとめ 参考 WSGIとは WSGIとはWeb Server Gateway Interfaceの略で、Pythonにおいて、WebサーバとWebアプリケーションが通信するための、標準化されたインタフェース定義のことです。アプリケーション(またはフレームワークやツールキット)がWSGI仕様で書かれていれば、WSGI をサ

        サクッとWSGI・ASGIに触れてみる - okigaki_log
      • ASGI(非同期サーバゲートウェイインターフェース)の概要

        PyCon JP 2020 カンファレンス 資料です。

          ASGI(非同期サーバゲートウェイインターフェース)の概要
        • mangum + FastAPI で ASGI な Python アプリケーションを AWS Lambda + API Gateway 上で動かす - らくがきちょう

          mangum を使うと FastAPI や responder といった ASGI アプリケーションを AWS Lambda + API Gateway 上へ簡単にデプロイすることが出来ます。 今回は FastAPI で書いた ASGI アプリケーションを mangum を使って AWS 上でデプロイする手順をメモしておきます。 mangum init の注意点 最初に mangum init する ハンドラは app/asgi.py に定義する mangum のプロジェクト名は AWS ルールに準拠したものにする mangum cli には削除機能が無い プロジェクトディレクトリを作成する mangum-cli をインストールする AWS CLI をセットアップする AWS S3 上に Bucket を作成する デプロイ用の設定ファイルを作成する requirements.txt を修正

            mangum + FastAPI で ASGI な Python アプリケーションを AWS Lambda + API Gateway 上で動かす - らくがきちょう
          • GitHub - litestar-org/litestar: Production-ready, Light, Flexible and Extensible ASGI API framework | Effortlessly Build Performant APIs

            You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

              GitHub - litestar-org/litestar: Production-ready, Light, Flexible and Extensible ASGI API framework | Effortlessly Build Performant APIs
            • ASGI とは|keyem

              ASGIとはWSGIと呼ばれるPythonのWebサーバとWebアプリケーションが通信するためインタフェース定義の後継仕様となっており、WebSocketと非同期をサポートするように設計されているものです。 ASGI(Asynchronous Server Gateway Interface):非同期サーバーゲートウェイインターフェースです。 まずはWSGIとは以下のようになっています。 WSGIアプリケーションにはapplication関数を定義します。WSGIサーバからはenvironとstart_responseが渡ってくるのでenvironを用いてレスポンスのボディとなるバイトのリストを返します。 ・受信したリクエストに関する情報を含む辞書(envrion) ・WSGIアプリケーションから呼び出されるコールバック関数(start_response) def application(

                ASGI とは|keyem
              • ASGIアプリケーション入門 - こわくないasyncio基礎と非同期IO

                PyConJP2021の登壇資料です。

                  ASGIアプリケーション入門 - こわくないasyncio基礎と非同期IO
                • GitHub - pgjones/hypercorn: Hypercorn is an ASGI and WSGI Server based on Hyper libraries and inspired by Gunicorn.

                  You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session. You switched accounts on another tab or window. Reload to refresh your session. Dismiss alert

                    GitHub - pgjones/hypercorn: Hypercorn is an ASGI and WSGI Server based on Hyper libraries and inspired by Gunicorn.
                  • GitHub - django/asgiref: ASGI specification and utilities

                    ASGI is a standard for Python asynchronous web apps and servers to communicate with each other, and positioned as an asynchronous successor to WSGI. You can read more at https://asgi.readthedocs.io/en/latest/ This package includes ASGI base libraries, such as: Sync-to-async and async-to-sync function wrappers, asgiref.sync Server base classes, asgiref.server A WSGI-to-ASGI adapter, in asgiref.wsgi

                      GitHub - django/asgiref: ASGI specification and utilities
                    1

                    新着記事