【14】python和orientab连接,导入entity的实例

本文介绍如何使用Python连接OrientDB,并演示创建顶点类及边类的方法,同时展示了如何插入带有不同属性的数据记录。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1,python和orientab连接,在插入了新的实例之后,可以直接再次插入不同属性的数据

#!user/bin/env/python

# coding: utf-8

import pyorient

client = pyorient.OrientDB("localhost", 2424)
session_id = client.connect( "root", "123456" )
# client.db_drop('TEMP')
# client.db_create('TEMP', pyorient.DB_TYPE_GRAPH, pyorient.STORAGE_TYPE_MEMORY)
client.db_open("TEMP", "root", "123456" )


if __name__ == "__main__":

    cluster_id = client.command("create class v_doctor extends V")
    cluster_id = client.command("create class v_patient extends V")
    cluster_id = client.command("create class E_has_check_hospitality extends E")

    doctor = {'@v_doctor':
        {
            'name': '{n}'.format(n='Danay'),
            'age':'{n}'.format(n=22)
        }}
    vDoctor = client.record_create(-1, doctor)


    doctor = {'@v_doctor':
        {
            'name': '{n}'.format(n='Anna'),
            'gender': '{n}'.format(n='女')

        }}
    vDoctor = client.record_create(-1, doctor)
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值