积分充值
 首页
前端开发
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文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部后端开发(135)Python(103)云计算&大数据(55)Celery(51)PHP(32)Falcon(32)数据库(30)Django(30)Pandas(27)Apache Kyuubi(26)

语言

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

格式

全部PDF文档 PDF(137)其他文档 其他(83)
 
本次搜索耗时 0.104 秒,为您找到相关结果约 220 个.
  • 全部
  • 后端开发
  • Python
  • 云计算&大数据
  • Celery
  • PHP
  • Falcon
  • 数据库
  • Django
  • Pandas
  • Apache Kyuubi
  • 全部
  • 英语
  • 中文(简体)
  • 全部
  • 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
  • epub文档 Flask Documentation (1.1.x)

    Using URL Processors Deploying with Setuptools Deploying with Fabric Using SQLite 3 with Flask SQLAlchemy in Flask Uploading Files Caching View Decorators Form Validation with WTForms Template Inheritance simple glue layer to the best that Python has to offer. You can implement advanced patterns in 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
    0 码力 | 428 页 | 895.98 KB | 1 年前
    3
  • epub文档 Celery 2.0 Documentation

    rabbitmq.com/], but support for Redis [http://code.google.com/p/redis/] and databases (SQLAlchemy [http://www.sqlalchemy.org/]) is also available. You may also be pleased to know that full Django integration be one of the following: database (default) Use a relational database supported by SQLAlchemy [http://sqlalchemy.org]. cache Use memcached [http://memcached.org] to store the results. mongodb Use [http://www.sqlalchemy.org/docs/dbengine.html#supported-databases] for a table of supported databases. To use this backend you need to configure it with an Connection String [http://www.sqlalchemy.org/docs/dbengine
    0 码力 | 284 页 | 332.71 KB | 1 年前
    3
  • epub文档 Celery 2.4 Documentation

    Overview Example Features Documentation Installation Brokers Using RabbitMQ Using Redis Using SQLAlchemy Using the Django Database Using MongoDB Using CouchDB Using Beanstalk First steps with Celery MongoDB [http://mongodb.org/], CouchDB [http://couchdb.apache.org/] and databases (using SQLAlchemy [http://www.sqlalchemy.org/] or the Django ORM [http://djangoproject.com/]) is also available. Celery is 2016 Celery supports several message transport alternatives. Using RabbitMQ Using Redis Using SQLAlchemy Using the Django Database Using MongoDB Using CouchDB Using Beanstalk © Copyright 2009-2011, Ask
    0 码力 | 543 页 | 957.42 KB | 1 年前
    3
  • epub文档 Celery 2.5 Documentation

    Overview Example Features Documentation Installation Brokers Using RabbitMQ Using Redis Using SQLAlchemy Using the Django Database Using MongoDB Using CouchDB Using Beanstalk First steps with Celery [http://aws.amazon.com/sqs/], CouchDB [http://couchdb.apache.org/] and databases (using SQLAlchemy [http://www.sqlalchemy.org/] or the Django ORM [http://djangoproject.com/]) is also available. Celery is easy 2014 Celery supports several message transport alternatives. Using RabbitMQ Using Redis Using SQLAlchemy Using the Django Database Using MongoDB Using CouchDB Using Beanstalk © Copyright 2009-2012, Ask
    0 码力 | 647 页 | 1011.88 KB | 1 年前
    3
  • epub文档 Celery 3.1 Documentation

    and much 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), Eventlet Eventlet, gevent threads/single threaded Result Stores AMQP, Redis memcached, MongoDB SQLAlchemy, Django ORM Apache Cassandra Serialization pickle, json, yaml, msgpack. zlib, bzip2 compression. Cryptographic 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 码力 | 887 页 | 1.22 MB | 1 年前
    3
  • epub文档 Celery 2.2 Documentation

    MongoDB [http://mongodb.org/], CouchDB [http://couchdb.apache.org/] and databases (using SQLAlchemy [http://www.sqlalchemy.org/] or the Django ORM [http://djangoproject.com/]) is also available. Celery is easy 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 be one of the following: database (default) Use a relational database supported by SQLAlchemy [http://sqlalchemy.org]. See Database backend settings. cache Use memcached [http://memcached.org] to store
    0 码力 | 505 页 | 878.66 KB | 1 年前
    3
  • epub文档 Celery 2.3 Documentation

    MongoDB [http://mongodb.org/], CouchDB [http://couchdb.apache.org/] and databases (using SQLAlchemy [http://www.sqlalchemy.org/] or the Django ORM [http://djangoproject.com/]) is also available. Celery is 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 码力 | 530 页 | 900.64 KB | 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
共 220 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 22
前往
页
相关搜索词
sqlalchemytutorialFlask入门教程入门教程Documentation1.1Celery2.02.42.53.12.22.3
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩