积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(65)Python(49)云计算&大数据(42)数据库(30)Pandas(27)TiDB(23)Celery(21)PHP(16)Falcon(16)Django(15)

语言

全部英语(121)中文(简体)(16)

格式

全部PDF文档 PDF(137)
 
本次搜索耗时 0.119 秒,为您找到相关结果约 137 个.
  • 全部
  • 后端开发
  • Python
  • 云计算&大数据
  • 数据库
  • Pandas
  • TiDB
  • Celery
  • PHP
  • Falcon
  • Django
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 sqlalchemy tutorial

    SQLAlchemy SQLAlchemy i About the Tutorial SQLAlchemy is a popular SQL toolkit and Object Relational Mapper. It is written in Python and gives full power application developer. It is an open source and cross-platform software released under MIT license. SQLAlchemy is famous for its object-relational mapper (ORM), using which classes can be mapped to the database designed for all those Python programmers who would like to understand the ORM framework with SQLAlchemy and its API. Prerequisites Before you start proceeding with this tutorial, we assume you have
    0 码力 | 92 页 | 1.77 MB | 1 年前
    3
  • pdf文档 Flask入门教程

    SQLite,它基于文件,不需要单独启动数据库服务器,适合在开发 时使用,或是在数据库操作简单、访问量低的程序中使用。 使用 SQLAlchemy 操作数据库 为了简化数据库操作,我们将使用 SQLAlchemy——一个 Python 数据库工具 (ORM,即对象关系映射)。借助 SQLAlchemy,你可以通过定义 Python 类来表 示数据库里的一张表(类属性表示表中的字段 / 列),通过对这个类进行各种操作 将使用一个叫做 Flask-SQLAlchemy 的官方扩展来集成 SQLAlchemy。 首先使用 Pipenv 安装它: $ pipenv install flask-sqlalchemy 大部分扩展都需要执行一个“初始化”操作。你需要导入扩展类,实例化并传入 Flask 程序实例: from flask_sqlalchemy import SQLAlchemy # 导入扩展类 app app = Flask(__name__) db = SQLAlchemy(app) # 初始化扩展,传入程序实例 app 设置数据库 URI 第 5 章:数据库 35 为了设置 Flask、扩展或是我们程序本身的一些行为,我们需要设置和定义一些配 置变量。Flask 提供了一个统一的接口来写入和获取这些配置变 量: Flask.config 字典。配置变量的名称必须使用大写,写入配置的语句一般
    0 码力 | 127 页 | 7.62 MB | 1 年前
    3
  • pdf文档 Flask Documentation (1.1.x)

    to offer. You can implement advanced patterns in 3 Flask Documentation (1.1.x), Release 1.1.4 SQLAlchemy or another database tool, introduce non-relational data persistence as appropriate, and take advantage Extensions Extensions are packages that help you accomplish common tasks. For example, Flask-SQLAlchemy provides SQLAlchemy support that makes it simple and easy to use with Flask. For more on Flask extensions separately, instead of configuring only the root logger. for logger in ( app.logger, logging.getLogger('sqlalchemy'), logging.getLogger('other_package'), ): logger.addHandler(default_handler) logger.addHandler(mail_handler)
    0 码力 | 291 页 | 1.25 MB | 1 年前
    3
  • pdf文档 Celery 2.5 Documentation

    is RabbitMQ, but support for Redis, MongoDB, Beanstalk, Amazon SQS, CouchDB and databases (using SQLAlchemy or the Django ORM) is also available. Celery is easy to integrate with web frameworks, some of Redis backend settings 1.2.3 Using SQLAlchemy Installation Configuration Celery needs to know the location of your database, which should be the usual SQLAlchemy connection string, but with ‘sqla+’ which have to be an SQLAlchemy database URI. Please see SQLAlchemy: Supported Databases for a table of supported databases. Here’s a list of examples using a selection of other SQLAlchemy Connection String‘s:
    0 码力 | 400 页 | 1.40 MB | 1 年前
    3
  • pdf文档 Celery 3.1 Documentation

    more. It supports • Brokers • RabbitMQ, Redis, • MongoDB (exp), ZeroMQ (exp) • CouchDB (exp), SQLAlchemy (exp) • Django ORM (exp), Amazon SQS, (exp) • and more... • Concurrency • prefork (multiprocessing) Release 3.1.25 • threads/single threaded • Result Stores • AMQP, Redis • memcached, MongoDB • SQLAlchemy, Django ORM • Apache Cassandra • Serialization • pickle, json, yaml, msgpack. • zlib, bzip2 compression transport. celery[zeromq] for using ZeroMQ as a message transport (experimental). celery[sqlalchemy] for using SQLAlchemy as a message transport (experimental), or as a result backend (supported). celery[pyro]
    0 码力 | 607 页 | 2.27 MB | 1 年前
    3
  • pdf文档 Celery 2.4 Documentation

    broker is RabbitMQ, but limited support for Redis, Beanstalk, MongoDB, CouchDB and databases (using SQLAlchemy or the Django ORM) is also available. Celery is easy to integrate with Django, Pylons and Flask backend settings 1.2.3 Using SQLAlchemy Installation For the SQLAlchemy transport you have to install the kombu-sqlalchemy library: $ pip install -U kombu-sqlalchemy Configuration This transport to be an SQLAlchemy database URI. 1. Set your broker transport: BROKER_TRANSPORT = "sqlalchemy" 2. Configure the database URI: BROKER_HOST = "sqlite:///celerydb.sqlite" Please see SQLAlchemy: Supported
    0 码力 | 395 页 | 1.54 MB | 1 年前
    3
  • pdf文档 Celery 2.3 Documentation

    broker is RabbitMQ, but limited support for Redis, Beanstalk, MongoDB, CouchDB and databases (using SQLAlchemy or the Django ORM) is also available. Celery is easy to integrate with Django, Pylons and Flask needs to store or send the states somewhere. There are several built-in backends to choose from: SQLAlchemy/Django ORM, Memcached, Redis, AMQP, MongoDB, Tokyo Tyrant and Redis – or you can define your own needs to store or send the states somewhere. There are several built-in backends to choose from: SQLAlchemy/Django ORM, Memcached, Redis, AMQP, MongoDB, Tokyo Tyrant and Redis – or you can define your own
    0 码力 | 334 页 | 1.25 MB | 1 年前
    3
  • pdf文档 Celery 2.2 Documentation

    broker is RabbitMQ, but limited support for Redis, Beanstalk, MongoDB, CouchDB and databases (using SQLAlchemy or the Django ORM) is also available. Celery is easy to integrate with Django, Pylons and Flask needs to store or send the states somewhere. There are several built-in backends to choose from: SQLAlchemy/Django ORM, Memcached, Redis, AMQP, MongoDB, Tokyo Tyrant and Redis – or you can define your own (tombstones). Can be one of the following: • database (default) Use a relational database supported by SQLAlchemy. See Database backend settings. • cache Use memcached to store the results. See Cache backend
    0 码力 | 314 页 | 1.26 MB | 1 年前
    3
  • pdf文档 Celery 3.0 Documentation

    Stores • AMQP, Redis 2.2. Getting Started 7 Celery Documentation, Release 4.0.0 • Memcached, • SQLAlchemy, Django ORM • Apache Cassandra, Elasticsearch • Serialization • pickle, json, yaml, msgpack. • result backend. celery[zookeeper] for using Zookeeper as a message transport. celery[sqlalchemy] for using SQLAlchemy as a result backend (supported). celery[pyro] for using the Pyro4 message transport store or send the states somewhere. There are several built-in result backends to choose from: SQLAlchemy/Django ORM, Memcached, Redis, RPC (RabbitMQ/AMQP), and – or you can define your own. 2.2. Getting
    0 码力 | 703 页 | 2.60 MB | 1 年前
    3
  • pdf文档 Celery v4.0.0 Documentation

    Stores • AMQP, Redis 2.2. Getting Started 7 Celery Documentation, Release 4.0.0 • Memcached, • SQLAlchemy, Django ORM • Apache Cassandra, Elasticsearch • Serialization • pickle, json, yaml, msgpack. • result backend. celery[zookeeper] for using Zookeeper as a message transport. celery[sqlalchemy] for using SQLAlchemy as a result backend (supported). celery[pyro] for using the Pyro4 message transport store or send the states somewhere. There are several built-in result backends to choose from: SQLAlchemy/Django ORM, Memcached, Redis, RPC (RabbitMQ/AMQP), and – or you can define your own. 2.2. Getting
    0 码力 | 701 页 | 2.59 MB | 1 年前
    3
共 137 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 14
前往
页
相关搜索词
sqlalchemytutorialFlask入门教程入门教程Documentation1.1Celery2.53.12.42.32.23.0v40.0
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩