Python操作MongoDB

本文涉及的产品
云数据库 MongoDB,独享型 2核8GB
推荐场景:
构建全方位客户视图
简介: Python操作MongoDB
mongod --auth --dbpath="/usr/local/mongodb/data" --logpath="/usr/local/mongodb/logs/mongod.log" --install
    #创建admin数据表
    use admin
    #创建管理用户的用户
    db.createUser(
      {
        user: "root",
        pwd: "123456",
        roles: [ { role: "userAdminAnyDatabase", db: "admin" } ]
      }
    )
    #认证
    db.auth('user','pass')
    #切换数据表
    use testdb
    #创建当前数据表的操作用户
    db.createUser(
      {
        user: "test",
        pwd: "123456",
        roles: [ { role: "readWrite", db: "testdb" } ]
      }
    )
复制代码


class MONGODB_CONFIG:
  HOST = "127.0.0.1"
  PORT = 27017
  DB_NAME = "testdb"
  USER_NAME = "test"
  PASSWORD = "123456"
import config
import pymongo
# 创建连接对象 ''' mongodb://localhost:27017/ '''
client = pymongo.MongoClient(host=config.MONGODB_CONFIG.HOST, port=config.MONGODB_CONFIG.PORT)
# 连接数据库
db = client[config.MONGODB_CONFIG.DB_NAME]
db.authenticate(config.MONGODB_CONFIG.USER_NAME, config.MONGODB_CONFIG.PASSWORD,mechanism='SCRAM-SHA-1')
# 连接表
collection = db.news
复制代码


def init():
    #创建连接对象 ''' mongodb://localhost:27017/ '''
    client = pymongo.MongoClient(host='127.0.0.1',port=27017)
    #指定数据集(数据库名称) ''' client['test'] '''
    db = client.testDB
    #指定集合 ''' db['students'] '''
    return db.students
#插入单条数据
def insert(collection,student):
    result = collection.insert(student)
    print(result)
#插入多条数据
def insert(collection,students):
    result = collection.insert(students)
    print(result)
#使用3.x推荐方法插入单条数据
def insert_one(collection,student):
    result = collection.insert_one(student)
    print(result)
    print(result.inserted_id)
#使用3.x推荐方法插入多条数据
def insert_many(collection,students):
    result = collection.insert_many(students)
    print(result)
    print(result.inserted_ids)
#查询单条数据
def find_one(collection,args):
    result = collection.find_one(args)
    print(type(result))
    print(result)
#查询多条数据
def finds(collection,args):
    results = collection.find(args)
    print(type(results))
    print(results)
    for result in results:
        print(result)
#查询记录数
def count(collection,args):
    count = collection.find(args).count()
    print(count)
#排序 ''' ASCENDING 升序  DESCENDING 降序 '''
def sort(collection,args,cending):
    results = collection.find().sort(args, cending)
    print([result[args] for result in results])
#偏移n位后查询
def skip(collection,index):
    results = collection.find().skip(index)
    print([result['name'] for result in results])
#获取n条记录
def limit(collection,index):
    results = collection.find().limit(index)
    print([result['name'] for result in results])
#更新数据库
def update(condition,student):
    result = collection.update(condition, student)
    print(result)
#删除数据 delete_one() delete_many()
def remove(collection,args):
    result = collection.remove(args)
    print(result)



相关实践学习
MongoDB数据库入门
MongoDB数据库入门实验。
快速掌握 MongoDB 数据库
本课程主要讲解MongoDB数据库的基本知识,包括MongoDB数据库的安装、配置、服务的启动、数据的CRUD操作函数使用、MongoDB索引的使用(唯一索引、地理索引、过期索引、全文索引等)、MapReduce操作实现、用户管理、Java对MongoDB的操作支持(基于2.x驱动与3.x驱动的完全讲解)。 通过学习此课程,读者将具备MongoDB数据库的开发能力,并且能够使用MongoDB进行项目开发。   相关的阿里云产品:云数据库 MongoDB版 云数据库MongoDB版支持ReplicaSet和Sharding两种部署架构,具备安全审计,时间点备份等多项企业能力。在互联网、物联网、游戏、金融等领域被广泛采用。 云数据库MongoDB版(ApsaraDB for MongoDB)完全兼容MongoDB协议,基于飞天分布式系统和高可靠存储引擎,提供多节点高可用架构、弹性扩容、容灾、备份回滚、性能优化等解决方案。 产品详情: https://www.aliyun.com/product/mongodb
相关文章
|
3月前
|
NoSQL MongoDB 数据库
python3操作MongoDB的crud以及聚合案例,代码可直接运行(python经典编程案例)
这篇文章提供了使用Python操作MongoDB数据库进行CRUD(创建、读取、更新、删除)操作的详细代码示例,以及如何执行聚合查询的案例。
38 6
|
3月前
|
NoSQL JavaScript Java
Java Python访问MongoDB
Java Python访问MongoDB
24 4
|
5月前
|
存储 监控 数据处理
💻Python高手必备!文件系统操作秘籍,让你的数据存取如臂使指
【7月更文挑战第29天】在数据驱动时代, Python以简洁语法、丰富库生态和强大跨平台能力, 成为数据科学等领域首选。本文探讨Python文件系统操作秘籍, 助力高效数据处理。
53 11
|
5月前
|
索引 Python
Python的列表操作有哪些?
Python的列表操作非常丰富,包括列表的创建、元素的访问、修改、添加、删除、切片、排序等多个方面。
51 12
|
5月前
|
监控 网络协议 网络安全
SMTP操作使用详解并通过python进行smtp邮件发送示例
SMTP操作使用详解并通过python进行smtp邮件发送示例
155 3
|
5月前
|
数据挖掘 数据处理 Python
🔍深入Python系统编程腹地:文件系统操作与I/O管理,打造高效数据处理流水线
【7月更文挑战第29天】深入Python系统编程腹地:文件系统操作与I/O管理,打造高效数据处理流水线
43 3
|
5月前
|
安全 数据安全/隐私保护 Python
|
5月前
|
Serverless 语音技术 开发工具
函数计算操作报错合集之怎么何集成nls tts python sdk
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
|
5月前
|
API Python
Python高手修炼手册:精通文件系统操作,掌控I/O管理,提升编程效率
【7月更文挑战第30天】在 Python 编程中, 文件系统操作与 I/O 管理是连接程序与数据的关键。初学者常因路径错误和权限问题受挫, 而高手能自如管理文件。传统 `os` 和 `os.path` 模块易出错, `pathlib` 提供了更直观的对象导向 API。I/O 方面, 同步操作会阻塞程序, 异步 (如使用 `aiofiles`) 则能大幅提升并发能力。真正的高手不仅掌握 API, 更能预见性能瓶颈并优化代码, 实现高效与优雅。
45 1