• 大小: 0.10M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2020-12-24
  • 语言: Java
  • 标签: MySql  python  

资源简介

python 调用 mysql 例子源码下载

资源截图

代码片段和文件信息

#!/usr/bin/env python

import os
import sys

import distutils.errors
import setuptools

if not hasattr(sys “hexversion“) or sys.hexversion < 0x02040000:
    raise distutils.errors.DistutilsError(“Python 2.4 or newer is required“)

if os.name == “posix“:
    from setup_posix import get_config
else:  # assume windows
    from setup_windows import get_config

metadata options = get_config()
metadata[‘ext_modules‘] = [
    setuptools.Extension(sources=[‘_mysql.c‘] **options)]
metadata[‘long_description‘] = metadata[‘long_description‘].replace(r‘\n‘ ‘‘)
setuptools.setup(**metadata)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件       18092  2012-10-08 13:46  MySQL-python-1.2.5\GPL-2.0
     文件        5687  2013-01-01 17:18  MySQL-python-1.2.5\HISTORY
     文件        6636  2012-10-08 14:00  MySQL-python-1.2.5\INSTALL
     文件         309  2014-01-02 13:52  MySQL-python-1.2.5\MANIFEST.in
     文件        2039  2014-01-02 13:58  MySQL-python-1.2.5\metadata.cfg
     文件        1689  2014-01-02 14:42  MySQL-python-1.2.5\PKG-INFO
     文件        3203  2012-10-08 13:46  MySQL-python-1.2.5\pymemcompat.h
     文件        1266  2012-10-04 14:11  MySQL-python-1.2.5\README.md
     文件         398  2014-01-02 14:42  MySQL-python-1.2.5\setup.cfg
     文件         609  2014-01-02 13:52  MySQL-python-1.2.5\setup.py
     文件        1088  2012-10-08 13:46  MySQL-python-1.2.5\setup_common.py
     文件        3392  2014-01-02 13:52  MySQL-python-1.2.5\setup_posix.py
     文件        1334  2012-10-08 13:46  MySQL-python-1.2.5\setup_windows.py
     文件         665  2012-10-08 13:46  MySQL-python-1.2.5\site.cfg
     文件       84709  2014-01-02 13:52  MySQL-python-1.2.5\_mysql.c
     文件        2352  2012-10-08 13:46  MySQL-python-1.2.5\_mysql_exceptions.py
     文件        7746  2012-10-11 10:11  MySQL-python-1.2.5\doc\conf.py
     文件        5198  2012-10-11 10:11  MySQL-python-1.2.5\doc\FAQ.rst
     文件         461  2012-10-11 10:11  MySQL-python-1.2.5\doc\index.rst
     文件          65  2012-10-11 10:11  MySQL-python-1.2.5\doc\modules.rst
     文件        1076  2012-10-11 10:11  MySQL-python-1.2.5\doc\MySQLdb.constants.rst
     文件         856  2012-10-11 10:11  MySQL-python-1.2.5\doc\MySQLdb.rst
     文件       28837  2012-10-11 10:11  MySQL-python-1.2.5\doc\user_guide.rst
     文件         108  2012-10-11 10:11  MySQL-python-1.2.5\doc\_mysql.rst
     文件         149  2012-10-11 10:11  MySQL-python-1.2.5\doc\_mysql_exceptions.rst
     文件         146  2012-10-07 21:00  MySQL-python-1.2.5\doc\_build\_sources\distribute_setup.txt
     文件        5198  2012-10-04 14:38  MySQL-python-1.2.5\doc\_build\_sources\FAQ.txt
     文件         461  2012-10-07 21:15  MySQL-python-1.2.5\doc\_build\_sources\index.txt
     文件          65  2012-10-07 20:48  MySQL-python-1.2.5\doc\_build\_sources\modules.txt
     文件        1076  2012-10-07 20:48  MySQL-python-1.2.5\doc\_build\_sources\MySQLdb.constants.txt
     文件         856  2012-10-07 21:09  MySQL-python-1.2.5\doc\_build\_sources\MySQLdb.txt
............此处省略30个文件信息

评论

共有 条评论