Connecting to MatrixOne with Python
MatrixOne supports Python connection, in 0.6.0 release, pymysql
and sqlalchemy
drivers are supported. This tutorial will walk you through how to connect MatrixOne by these two python drivers.
Before you start
- Make sure you have already installed and launched MatrixOne.
- Make sure you have already installed Python 3.8(or plus) version.
#To check with Python installation and its version
python3 -V
- Make sure you have already installed MySQL.
Using Python pymysql connect to MatrixOne
The PyMySQL is a pure-Python MySQL client library.
Download and install pymysql and cryptography tool:
pip3 install pymysql
pip3 install cryptography
#If you are in China mainland and have a low downloading speed, you can speed up the download by following commands.
pip3 install pymysql -i https://pypi.tuna.tsinghua.edu.cn/simple
pip3 install cryptography -i https://pypi.tuna.tsinghua.edu.cn/simple
Connect to MatrixOne by MySQL client. Create a new database named test.
mysql> create database test;
Create a plain text file
pymysql_connect_matrixone.py
and put the code below.#!/usr/bin/python3
import pymysql
# Open database connection
db = pymysql.connect(
host='127.0.0.1',
port=6001,
user='dump',
password = "111",
db='test',
)
# prepare a cursor object using cursor() method
cursor = db.cursor()
# execute SQL query using execute() method.
cursor.execute("SELECT VERSION()")
# Fetch a single row using fetchone() method.
data = cursor.fetchone()
print ("Database version : %s " % data)
# disconnect from server
db.close()
Execute this python file in the command line terminal.
> python3 pymysql_connect_matrixone.py
Database version : 8.0.30-MatrixOne-v0.6.0
Using sqlalchemy connect to MatrixOne
SQLAlchemy is the Python SQL toolkit and Object Relational Mapper(ORM) that gives application developers the full power and flexibility of SQL.
Download and install sqlalchemy tool:
pip3 install sqlalchemy
#If you are in China mainland and have a low downloading speed, you can speed up the download by following commands.
pip3 install sqlalchemy -i https://pypi.tuna.tsinghua.edu.cn/simple
Connect to MatrixOne by MySQL client. Create a new database named test, a new table named student and insert two records.
mysql> create database test;
mysql> use test;
mysql> create table student (name varchar(20), age int);
mysql> insert into student values ("tom", 11), ("alice", "10");
Create a plain text file
sqlalchemy_connect_matrixone.py
and put the code below,#!/usr/bin/python3
from sqlalchemy import create_engine, text
# Open database connection
my_conn = create_engine("mysql+mysqldb://dump:111@127.0.0.1:6001/test")
# execute SQL query using execute() method.
query=text("SELECT * FROM student LIMIT 0,10")
my_data=my_conn.execute(query)
# print SQL result
for row in my_data:
print("name:", row["name"])
print("age:", row["age"])
Execute this python file in the command line terminal.
python3 sqlalchemy_connect_matrixone.py
name: tom
age: 11
name: alice
age: 10
Reference
For the example about using Python to build a simple CRUD with MatrixOne, see Build a simple Python+SQLAlchemy CRUD demo with MatrixOne and Build a simple Python CRUD demo with MatrixOne