Skip to content

ztj1993/mysql-tools

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MySQL 工具库

这是一个 MySQL 工具库,由 Python 编写。

今天早晨,在编写 docker-compose 时,多个项目需要共用一个 MySQL 服务器;
希望能找到一个轮子,可惜没有,只能自己造。

TODO

  • 创建用户
  • 创建数据库
  • 完成单元测试

项目地址

技术栈

简单使用

python main.py --help
python main.py adduser localhost testing
python main.py passwd localhost testing 123456
python main.py --host=localhost create database testing_news

环境变量

  • MYSQL_HOST="localhost"
  • MYSQL_PORT="3306"
  • MYSQL_USER="root"
  • MYSQL_PASSWORD=""
  • MYSQL_CHARSET="utf8mb4"