07 2021 档案
摘要:Gunicorn https://docs.gunicorn.org/en/latest/index.html https://github.com/benoitc/gunicorn Gunicorn ‘Green Unicorn’ is a Python WSGI HTTP Server for
阅读全文
摘要:AIOHTTP https://docs.aiohttp.org/en/stable/ 异步HTTP客户端和服务器,为asyncio 设计。 因为 作为客户端的 requests 支持同步请求模式, 一个请求完成后,才能执行下一个请求。 Asynchronous HTTP Client/Server
阅读全文
摘要:API Server with Scheduler 一般API服务器,仅仅提供API接口, 执行单次业务逻辑的执行。 如果在API服务器后台,执行定时执行功能, 让后台承担业务逻辑的定时执行功能, 添加APScheduler库。 FastAPI https://fastapi.tiangolo.co
阅读全文
摘要:APScheduler https://github.com/agronholm/apscheduler 高级的python sheduler Advanced Python Scheduler (APScheduler) is a Python library that lets you sche
阅读全文
摘要:prefect https://github.com/PrefectHQ/prefect https://docs.prefect.io/ Prefect We've rebuilt data engineering for the data science era. Prefect is a ne
阅读全文
摘要:FastAPI https://fastapi.tiangolo.com/#performance FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3.6+ based
阅读全文
摘要:REST API https://airflow.apache.org/docs/apache-airflow/stable/stable-rest-api-ref.html#section/Overview 为了利于管理, 支持了REST API。 To facilitate management
阅读全文
摘要:API https://docs.python.org/3/library/datetime.html#datetime.datetime.now now接口获取本地时间, tz不带表示当地时区, 带上可以指定特定时区。 utcnow获取世界协调时间 classmethod datetime.now
阅读全文
摘要:setTimeout https://docs.python.org/3.6/library/sched.html The sched module defines a class which implements a general purpose event scheduler: class s
阅读全文
摘要:SQLite Database https://airflow.apache.org/docs/apache-airflow/stable/howto/set-up-database.html#setting-up-a-sqlite-database 用于开发环境,有一些限制,只支持 序列执行器,
阅读全文
摘要:HeidiSQL https://github.com/HeidiSQL/HeidiSQL HeidiSQL is a graphical interface for managing MariaDB or MySQL servers, Microsoft SQL databases, Postgr
阅读全文