#
# This file is autogenerated by pip-compile with python 3.8
# To update, run:
#
# pip-compile dev-requirements.in
#
-e file:.
# via -r dev-requirements.in
aiosqlite==0.17.0
# via -r dev-requirements.in
alabaster==0.7.12
# via sphinx
asyncpg==0.25.0
# via -r dev-requirements.in
attrs==21.4.0
# via pytest
babel==2.9.1
# via sphinx
backports-zoneinfo==0.2.1 ; python_version < '3.9'
# via psycopg
black==21.12b0
# via -r dev-requirements.in
bleach==4.1.0
# via readme-renderer
build==0.7.0
# via -r dev-requirements.in
certifi==2021.10.8
# via requests
cffi==1.15.0
# via cryptography
charset-normalizer==2.0.12
# via requests
click==8.0.4
# via black
commonmark==0.9.1
# via rich
contextlib2==21.6.0
# via
# -c requirements.txt
# aiosql
coverage==6.3.2
# via -r dev-requirements.in
cryptography==36.0.2
# via secretstorage
docutils==0.17.1
# via
# readme-renderer
# sphinx
# sphinx-rtd-theme
idna==3.3
# via requests
imagesize==1.3.0
# via sphinx
importlib-metadata==4.11.3
# via
# keyring
# sphinx
# twine
iniconfig==1.1.1
# via pytest
jeepney==0.7.1
# via
# keyring
# secretstorage
jinja2==3.1.1
# via sphinx
keyring==23.5.0
# via twine
markupsafe==2.1.1
# via jinja2
mirakuru==2.4.2
# via pytest-postgresql
mypy==0.942
# via -r dev-requirements.in
mypy-extensions==0.4.3
# via
# black
# mypy
packaging==21.3
# via
# bleach
# build
# pytest
# sphinx
pathspec==0.9.0
# via black
pep517==0.12.0
# via build
pkginfo==1.8.2
# via twine
platformdirs==2.5.1
# via black
pluggy==1.0.0
# via pytest
port-for==0.6.2
# via pytest-postgresql
psutil==5.9.0
# via mirakuru
psycopg==3.0.11
# via -r dev-requirements.in
psycopg2-binary==2.9.3
# via -r dev-requirements.in
py==1.11.0
# via pytest
pycparser==2.21
# via cffi
pygments==2.11.2
# via
# readme-renderer
# rich
# sphinx
pyparsing==3.0.7
# via packaging
pytest==6.2.5
# via
# -r dev-requirements.in
# pytest-asyncio
# pytest-postgresql
pytest-asyncio==0.18.3
# via -r dev-requirements.in
pytest-postgresql==4.1.1
# via -r dev-requirements.in
pytz==2022.1
# via babel
readme-renderer==34.0
# via twine
requests==2.27.1
# via
# requests-toolbelt
# sphinx
# twine
requests-toolbelt==0.9.1
# via twine
rfc3986==2.0.0
# via twine
rich==12.0.1
# via twine
secretstorage==3.3.1
# via keyring
six==1.16.0
# via bleach
snowballstemmer==2.2.0
# via sphinx
sphinx==4.5.0
# via
# -r dev-requirements.in
# sphinx-rtd-theme
sphinx-rtd-theme==1.0.0
# via -r dev-requirements.in
sphinxcontrib-applehelp==1.0.2
# via sphinx
sphinxcontrib-devhelp==1.0.2
# via sphinx
sphinxcontrib-htmlhelp==2.0.0
# via sphinx
sphinxcontrib-jsmath==1.0.1
# via sphinx
sphinxcontrib-qthelp==1.0.3
# via sphinx
sphinxcontrib-serializinghtml==1.1.5
# via sphinx
toml==0.10.2
# via pytest
tomli==1.2.3
# via
# black
# build
# mypy
# pep517
twine==4.0.0
# via -r dev-requirements.in
typing-extensions==4.0.1
# via
# -c requirements.txt
# aiosqlite
# black
# mypy
urllib3==1.26.9
# via
# requests
# twine
webencodings==0.5.1
# via bleach
zipp==3.7.0
# via importlib-metadata
# The following packages are considered to be unsafe in a requirements file:
# setuptools
没有合适的资源?快使用搜索试试~ 我知道了~
Python中的简单SQL_API_python_代码_下载
共60个文件
py:25个
sql:9个
rst:7个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 100 浏览量
2022-07-02
20:32:15
上传
评论
收藏 56KB ZIP 举报
温馨提示
SQL 是代码。编写它,对其进行版本控制,对其进行注释,并使用文件运行它。在 Python 程序中将 SQL 代码编写为字符串不允许您在 SQL GUI 或 psql 等 CLI 工具中轻松地重用它们。使用 aiosql,您可以在.sql文件中组织 SQL 语句,将它们作为调用方法加载到 python 应用程序中,而不会像使用任何其他 SQL 文件一样失去使用它们的能力。 该项目支持开箱即用的 SQLite 和 PostgreSQL 的标准和基于异步的驱动程序(sqlite3 , aiosqlite , psycopg , asyncpg )。您可以编写支持其他数据库驱动程序的扩展!
资源推荐
资源详情
资源评论
收起资源包目录
aiosql-master.zip (60个子文件)
aiosql-master
README.rst 21B
example
example.py 3KB
sql
blogs
blogs.sql 671B
create_schema.sql 422B
users
users.sql 189B
pyproject.toml 162B
docs
source
conf.py 2KB
advanced-topics.rst 8KB
getting-started.rst 10KB
defining-sql-queries.rst 8KB
index.rst 5KB
database-driver-adapters.rst 4KB
contributing.rst 3KB
.github
workflows
aiosql-package.yml 2KB
deploy-pages.yml 742B
scripts
docs.sh 128B
package-build.sh 87B
aiosql
py.typed 0B
types.py 5KB
aiosql.py 5KB
__init__.py 271B
query_loader.py 6KB
queries.py 7KB
adapters
aiosqlite.py 2KB
pyformat.py 535B
generic.py 3KB
__init__.py 0B
sqlite3.py 521B
asyncpg.py 5KB
psycopg.py 88B
patterns.py 777B
exceptions.py 268B
tests
test_asyncpg.py 9KB
conftest.py 4KB
test_patterns.py 2KB
test_psycopg.py 5KB
test_aiosqlite.py 6KB
test_sqlite3.py 4KB
test_loading.py 4KB
blogdb
data
blogs_data.csv 199B
users_data.csv 53B
sql
blogs
blogs_sqlite.sql 578B
blogs.sql 774B
blogs_pg.sql 860B
blogs.oops 29B
comments
comments_sqlite.sql 241B
comments_pg.sql 218B
users
users.sql 1KB
test_psycopg2.py 5KB
LICENSE 2KB
mypy.ini 72B
dev-requirements.txt 3KB
setup.cfg 865B
requirements.txt 202B
setup.py 38B
.gitignore 1KB
Makefile 2KB
.editorconfig 417B
.flake8 176B
dev-requirements.in 265B
共 60 条
- 1
资源评论
快撑死的鱼
- 粉丝: 1w+
- 资源: 9150
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功