Python导出Mysql字典表

Posted 领科数据

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python导出Mysql字典表相关的知识,希望对你有一定的参考价值。

项目中的数据库字典表是一个很重要的文档。通过此文档可以清晰的了解数据表结构及开发者的设计意图。通常为了方便都是直接在数据库中建表,然后通过工具导出数据字典。

mysql数据库中有一个information_schema库,它提供了访问数据库元数据的方式。什么是元数据呢?就是关于数据的数据,如数据库名、表名、列的数据类型、访问权限等。SCHEMATA表:提供了当前mysql实例中所有数据库的信息。MySql命令show databases的结果取之此表。TABLES表:提供了关于数据库中的表和视图的信息。详细表述了某个表属于哪个schema,表类型,表引擎,创建时间等信息。show tables from schemaname的结果取之此表。COLUMNS表:提供了表中的列信息。详细表述了某张表的所有列以及每个列的信息. show columns from schemaname.tablename的结果取之此表。

了解了生成数据字典的原理后看一下实现代码:

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import mysql.connector as mysql
import sys
import getopt
reload(sys)
sys.setdefaultencoding('utf8')


def usage():
print 'help:'
print '--host db server,default localhost'
print '--port db port,default 3306'
print '--user db username,default root'
print '--password db password,default blank'
print '--database db name'
print '--output markdown output file,default current path'

if __name__ == '__main__':
try:
opts,args = getopt.getopt(sys.argv[1:],"h",["help","host=","port=","database=","user=","password=","output="])
except getopt.GetoptError:
sys.exit()
if 'help' in args:
usage()
sys.exit()
print opts
host = 'localhost'
user = 'root'
password = ''
database = ''
port = 3306
output = './markdown.out'

for op,value in opts:
if op == '--host':
host = value
elif op == '--port':
port = value
elif op == '--database':
database = value
elif op == '--user':
user = value
elif op == '--password':
password = value
elif op == '--output':
output = value
elif op == '-h':
usage()
sys.exit()
if database == '':
usage()
# sys.exit()
conn = mysql.connect(host=host,port=port,user=user,password=password,database='information_schema')
cursor = conn.cursor()
cursor.execute("select table_name,table_comment from information_schema.tables where table_schema='%s' and table_type='base table'" % database)
tables = cursor.fetchall()

markdown_table_header = """### %s (%s)
字段名 | 字段类型 | 默认值 | 注解
---- | ---- | ---- | ----
"""
markdown_table_row = """%s | %s | %s | %s
"""
f = open(output,'w')
for table in tables:
cursor.execute("select COLUMN_NAME,COLUMN_TYPE,COLUMN_DEFAULT,COLUMN_COMMENT from information_schema.COLUMNS where table_schema='%s' and table_name='%s'"% (database,table[0]))
tmp_table = cursor.fetchall()
p = markdown_table_header % table;
for col in tmp_table:
p += markdown_table_row % col
f.writelines(p)
f.writelines('\r\n')
f.close()
print 'generate markdown success!'

上面的执行结果会输出 markdown 格式的文件。


| 字段名 | 字段类型 | 默认值 | 注解 |
| --- | ---- | --- | --- |


以上是关于Python导出Mysql字典表的主要内容,如果未能解决你的问题,请参考以下文章

导出mysql的表注释和字段注释做数据字典

PHP导出MySQL数据字典

Mysql数据库导出数据字典文档Word或者HTML的3个工具

用python脚本导出mysql数据库查询结果到Excel表

13 个非常有用的 Python 代码片段

Python代码阅读(第19篇):合并多个字典