实例介绍
使用pycharm写的学生信息管理系统,使用了MySQL数据库,tkinter设计图形界面。
【实例截图】
【核心代码】
student(1)
└── student
├── db_operate.py
├── db.py
├── LoginPage.py
├── MainPage.py
├── main.py
├── __pycache__
│ ├── db.cpython-36.pyc
│ ├── db_operate.cpython-36.pyc
│ ├── LoginPage.cpython-36.pyc
│ ├── MainPage.cpython-36.pyc
│ └── view.cpython-36.pyc
├── venv
│ ├── Lib
│ │ ├── site-packages
│ │ │ ├── easy-install.pth
│ │ │ ├── inflection-0.3.1-py3.6.egg-info
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── installed-files.txt
│ │ │ │ ├── not-zip-safe
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── SOURCES.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── inflection.py
│ │ │ ├── orm
│ │ │ │ ├── helpers.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── main.py
│ │ │ │ └── __pycache__
│ │ │ │ ├── helpers.cpython-36.pyc
│ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ └── main.cpython-36.pyc
│ │ │ ├── ORM-1.1.0-py3.6.egg-info
│ │ │ │ ├── dependency_links.txt
│ │ │ │ ├── installed-files.txt
│ │ │ │ ├── not-zip-safe
│ │ │ │ ├── PKG-INFO
│ │ │ │ ├── requires.txt
│ │ │ │ ├── SOURCES.txt
│ │ │ │ └── top_level.txt
│ │ │ ├── pip-9.0.1-py3.6.egg
│ │ │ │ ├── EGG-INFO
│ │ │ │ │ ├── dependency_links.txt
│ │ │ │ │ ├── entry_points.txt
│ │ │ │ │ ├── not-zip-safe
│ │ │ │ │ ├── PKG-INFO
│ │ │ │ │ ├── requires.txt
│ │ │ │ │ ├── SOURCES.txt
│ │ │ │ │ └── top_level.txt
│ │ │ │ └── pip
│ │ │ │ ├── basecommand.py
│ │ │ │ ├── baseparser.py
│ │ │ │ ├── cmdoptions.py
│ │ │ │ ├── commands
│ │ │ │ │ ├── check.py
│ │ │ │ │ ├── completion.py
│ │ │ │ │ ├── download.py
│ │ │ │ │ ├── freeze.py
│ │ │ │ │ ├── hash.py
│ │ │ │ │ ├── help.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── install.py
│ │ │ │ │ ├── list.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── check.cpython-36.pyc
│ │ │ │ │ │ ├── completion.cpython-36.pyc
│ │ │ │ │ │ ├── download.cpython-36.pyc
│ │ │ │ │ │ ├── freeze.cpython-36.pyc
│ │ │ │ │ │ ├── hash.cpython-36.pyc
│ │ │ │ │ │ ├── help.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── install.cpython-36.pyc
│ │ │ │ │ │ ├── list.cpython-36.pyc
│ │ │ │ │ │ ├── search.cpython-36.pyc
│ │ │ │ │ │ ├── show.cpython-36.pyc
│ │ │ │ │ │ ├── uninstall.cpython-36.pyc
│ │ │ │ │ │ └── wheel.cpython-36.pyc
│ │ │ │ │ ├── search.py
│ │ │ │ │ ├── show.py
│ │ │ │ │ ├── uninstall.py
│ │ │ │ │ └── wheel.py
│ │ │ │ ├── compat
│ │ │ │ │ ├── dictconfig.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── download.py
│ │ │ │ ├── exceptions.py
│ │ │ │ ├── index.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── locations.py
│ │ │ │ ├── __main__.py
│ │ │ │ ├── models
│ │ │ │ │ ├── index.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ ├── index.cpython-36.pyc
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── operations
│ │ │ │ │ ├── check.py
│ │ │ │ │ ├── freeze.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ ├── check.cpython-36.pyc
│ │ │ │ │ ├── freeze.cpython-36.pyc
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── pep425tags.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── basecommand.cpython-36.pyc
│ │ │ │ │ ├── baseparser.cpython-36.pyc
│ │ │ │ │ ├── cmdoptions.cpython-36.pyc
│ │ │ │ │ ├── download.cpython-36.pyc
│ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ ├── index.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── locations.cpython-36.pyc
│ │ │ │ │ ├── pep425tags.cpython-36.pyc
│ │ │ │ │ ├── status_codes.cpython-36.pyc
│ │ │ │ │ └── wheel.cpython-36.pyc
│ │ │ │ ├── req
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── req_file.cpython-36.pyc
│ │ │ │ │ │ ├── req_install.cpython-36.pyc
│ │ │ │ │ │ ├── req_set.cpython-36.pyc
│ │ │ │ │ │ └── req_uninstall.cpython-36.pyc
│ │ │ │ │ ├── req_file.py
│ │ │ │ │ ├── req_install.py
│ │ │ │ │ ├── req_set.py
│ │ │ │ │ └── req_uninstall.py
│ │ │ │ ├── status_codes.py
│ │ │ │ ├── utils
│ │ │ │ │ ├── appdirs.py
│ │ │ │ │ ├── build.py
│ │ │ │ │ ├── deprecation.py
│ │ │ │ │ ├── encoding.py
│ │ │ │ │ ├── filesystem.py
│ │ │ │ │ ├── glibc.py
│ │ │ │ │ ├── hashes.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── logging.py
│ │ │ │ │ ├── outdated.py
│ │ │ │ │ ├── packaging.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── appdirs.cpython-36.pyc
│ │ │ │ │ │ ├── build.cpython-36.pyc
│ │ │ │ │ │ ├── deprecation.cpython-36.pyc
│ │ │ │ │ │ ├── encoding.cpython-36.pyc
│ │ │ │ │ │ ├── filesystem.cpython-36.pyc
│ │ │ │ │ │ ├── glibc.cpython-36.pyc
│ │ │ │ │ │ ├── hashes.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── logging.cpython-36.pyc
│ │ │ │ │ │ ├── outdated.cpython-36.pyc
│ │ │ │ │ │ ├── packaging.cpython-36.pyc
│ │ │ │ │ │ ├── setuptools_build.cpython-36.pyc
│ │ │ │ │ │ └── ui.cpython-36.pyc
│ │ │ │ │ ├── setuptools_build.py
│ │ │ │ │ └── ui.py
│ │ │ │ ├── vcs
│ │ │ │ │ ├── bazaar.py
│ │ │ │ │ ├── git.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── mercurial.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── bazaar.cpython-36.pyc
│ │ │ │ │ │ ├── git.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── mercurial.cpython-36.pyc
│ │ │ │ │ │ └── subversion.cpython-36.pyc
│ │ │ │ │ └── subversion.py
│ │ │ │ ├── _vendor
│ │ │ │ │ ├── appdirs.py
│ │ │ │ │ ├── cachecontrol
│ │ │ │ │ │ ├── adapter.py
│ │ │ │ │ │ ├── cache.py
│ │ │ │ │ │ ├── caches
│ │ │ │ │ │ │ ├── file_cache.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── file_cache.cpython-36.pyc
│ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── redis_cache.py
│ │ │ │ │ │ ├── _cmd.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── controller.py
│ │ │ │ │ │ ├── filewrapper.py
│ │ │ │ │ │ ├── heuristics.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── adapter.cpython-36.pyc
│ │ │ │ │ │ │ ├── cache.cpython-36.pyc
│ │ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ │ ├── controller.cpython-36.pyc
│ │ │ │ │ │ │ ├── filewrapper.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── serialize.cpython-36.pyc
│ │ │ │ │ │ │ └── wrapper.cpython-36.pyc
│ │ │ │ │ │ ├── serialize.py
│ │ │ │ │ │ └── wrapper.py
│ │ │ │ │ ├── colorama
│ │ │ │ │ │ ├── ansi.py
│ │ │ │ │ │ ├── ansitowin32.py
│ │ │ │ │ │ ├── initialise.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── ansi.cpython-36.pyc
│ │ │ │ │ │ │ ├── ansitowin32.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── initialise.cpython-36.pyc
│ │ │ │ │ │ │ ├── win32.cpython-36.pyc
│ │ │ │ │ │ │ └── winterm.cpython-36.pyc
│ │ │ │ │ │ ├── win32.py
│ │ │ │ │ │ └── winterm.py
│ │ │ │ │ ├── distlib
│ │ │ │ │ │ ├── _backport
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── misc.py
│ │ │ │ │ │ │ ├── shutil.py
│ │ │ │ │ │ │ ├── sysconfig.cfg
│ │ │ │ │ │ │ ├── sysconfig.py
│ │ │ │ │ │ │ └── tarfile.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── database.py
│ │ │ │ │ │ ├── index.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── locators.py
│ │ │ │ │ │ ├── manifest.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── metadata.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── resources.cpython-36.pyc
│ │ │ │ │ │ │ ├── scripts.cpython-36.pyc
│ │ │ │ │ │ │ └── util.cpython-36.pyc
│ │ │ │ │ │ ├── resources.py
│ │ │ │ │ │ ├── scripts.py
│ │ │ │ │ │ ├── t32.exe
│ │ │ │ │ │ ├── t64.exe
│ │ │ │ │ │ ├── util.py
│ │ │ │ │ │ ├── version.py
│ │ │ │ │ │ ├── w32.exe
│ │ │ │ │ │ ├── w64.exe
│ │ │ │ │ │ └── wheel.py
│ │ │ │ │ ├── distro.py
│ │ │ │ │ ├── html5lib
│ │ │ │ │ │ ├── constants.py
│ │ │ │ │ │ ├── filters
│ │ │ │ │ │ │ ├── alphabeticalattributes.py
│ │ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── inject_meta_charset.py
│ │ │ │ │ │ │ ├── lint.py
│ │ │ │ │ │ │ ├── optionaltags.py
│ │ │ │ │ │ │ ├── sanitizer.py
│ │ │ │ │ │ │ └── whitespace.py
│ │ │ │ │ │ ├── html5parser.py
│ │ │ │ │ │ ├── _ihatexml.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── _inputstream.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── constants.cpython-36.pyc
│ │ │ │ │ │ │ ├── html5parser.cpython-36.pyc
│ │ │ │ │ │ │ ├── _ihatexml.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── _inputstream.cpython-36.pyc
│ │ │ │ │ │ │ ├── serializer.cpython-36.pyc
│ │ │ │ │ │ │ ├── _tokenizer.cpython-36.pyc
│ │ │ │ │ │ │ └── _utils.cpython-36.pyc
│ │ │ │ │ │ ├── serializer.py
│ │ │ │ │ │ ├── _tokenizer.py
│ │ │ │ │ │ ├── treeadapters
│ │ │ │ │ │ │ ├── genshi.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── sax.py
│ │ │ │ │ │ ├── treebuilders
│ │ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ │ ├── dom.py
│ │ │ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ │ │ ├── etree.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── etree.cpython-36.pyc
│ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── treewalkers
│ │ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ │ ├── dom.py
│ │ │ │ │ │ │ ├── etree_lxml.py
│ │ │ │ │ │ │ ├── etree.py
│ │ │ │ │ │ │ ├── genshi.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── _trie
│ │ │ │ │ │ │ ├── _base.py
│ │ │ │ │ │ │ ├── datrie.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── _base.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── datrie.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ └── py.cpython-36.pyc
│ │ │ │ │ │ │ └── py.py
│ │ │ │ │ │ └── _utils.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── ipaddress.py
│ │ │ │ │ ├── lockfile
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── linklockfile.py
│ │ │ │ │ │ ├── mkdirlockfile.py
│ │ │ │ │ │ ├── pidlockfile.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── linklockfile.cpython-36.pyc
│ │ │ │ │ │ │ └── mkdirlockfile.cpython-36.pyc
│ │ │ │ │ │ ├── sqlitelockfile.py
│ │ │ │ │ │ └── symlinklockfile.py
│ │ │ │ │ ├── ordereddict.py
│ │ │ │ │ ├── packaging
│ │ │ │ │ │ ├── __about__.py
│ │ │ │ │ │ ├── _compat.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── markers.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __about__.cpython-36.pyc
│ │ │ │ │ │ │ ├── _compat.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── markers.cpython-36.pyc
│ │ │ │ │ │ │ ├── requirements.cpython-36.pyc
│ │ │ │ │ │ │ ├── specifiers.cpython-36.pyc
│ │ │ │ │ │ │ ├── _structures.cpython-36.pyc
│ │ │ │ │ │ │ ├── utils.cpython-36.pyc
│ │ │ │ │ │ │ └── version.cpython-36.pyc
│ │ │ │ │ │ ├── requirements.py
│ │ │ │ │ │ ├── specifiers.py
│ │ │ │ │ │ ├── _structures.py
│ │ │ │ │ │ ├── utils.py
│ │ │ │ │ │ └── version.py
│ │ │ │ │ ├── pkg_resources
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ ├── progress
│ │ │ │ │ │ ├── bar.py
│ │ │ │ │ │ ├── counter.py
│ │ │ │ │ │ ├── helpers.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── bar.cpython-36.pyc
│ │ │ │ │ │ │ ├── helpers.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── spinner.cpython-36.pyc
│ │ │ │ │ │ └── spinner.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── appdirs.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── pyparsing.cpython-36.pyc
│ │ │ │ │ │ ├── retrying.cpython-36.pyc
│ │ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ │ ├── pyparsing.py
│ │ │ │ │ ├── requests
│ │ │ │ │ │ ├── adapters.py
│ │ │ │ │ │ ├── api.py
│ │ │ │ │ │ ├── auth.py
│ │ │ │ │ │ ├── cacert.pem
│ │ │ │ │ │ ├── certs.py
│ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ ├── cookies.py
│ │ │ │ │ │ ├── exceptions.py
│ │ │ │ │ │ ├── hooks.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── models.py
│ │ │ │ │ │ ├── packages
│ │ │ │ │ │ │ ├── chardet
│ │ │ │ │ │ │ │ ├── big5freq.py
│ │ │ │ │ │ │ │ ├── big5prober.py
│ │ │ │ │ │ │ │ ├── chardetect.py
│ │ │ │ │ │ │ │ ├── chardistribution.py
│ │ │ │ │ │ │ │ ├── charsetgroupprober.py
│ │ │ │ │ │ │ │ ├── charsetprober.py
│ │ │ │ │ │ │ │ ├── codingstatemachine.py
│ │ │ │ │ │ │ │ ├── compat.py
│ │ │ │ │ │ │ │ ├── constants.py
│ │ │ │ │ │ │ │ ├── cp949prober.py
│ │ │ │ │ │ │ │ ├── escprober.py
│ │ │ │ │ │ │ │ ├── escsm.py
│ │ │ │ │ │ │ │ ├── eucjpprober.py
│ │ │ │ │ │ │ │ ├── euckrfreq.py
│ │ │ │ │ │ │ │ ├── euckrprober.py
│ │ │ │ │ │ │ │ ├── euctwfreq.py
│ │ │ │ │ │ │ │ ├── euctwprober.py
│ │ │ │ │ │ │ │ ├── gb2312freq.py
│ │ │ │ │ │ │ │ ├── gb2312prober.py
│ │ │ │ │ │ │ │ ├── hebrewprober.py
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── jisfreq.py
│ │ │ │ │ │ │ │ ├── jpcntx.py
│ │ │ │ │ │ │ │ ├── langbulgarianmodel.py
│ │ │ │ │ │ │ │ ├── langcyrillicmodel.py
│ │ │ │ │ │ │ │ ├── langgreekmodel.py
│ │ │ │ │ │ │ │ ├── langhebrewmodel.py
│ │ │ │ │ │ │ │ ├── langhungarianmodel.py
│ │ │ │ │ │ │ │ ├── langthaimodel.py
│ │ │ │ │ │ │ │ ├── latin1prober.py
│ │ │ │ │ │ │ │ ├── mbcharsetprober.py
│ │ │ │ │ │ │ │ ├── mbcsgroupprober.py
│ │ │ │ │ │ │ │ ├── mbcssm.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── sbcharsetprober.py
│ │ │ │ │ │ │ │ ├── sbcsgroupprober.py
│ │ │ │ │ │ │ │ ├── sjisprober.py
│ │ │ │ │ │ │ │ ├── universaldetector.py
│ │ │ │ │ │ │ │ └── utf8prober.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── urllib3
│ │ │ │ │ │ │ ├── _collections.py
│ │ │ │ │ │ │ ├── connectionpool.py
│ │ │ │ │ │ │ ├── connection.py
│ │ │ │ │ │ │ ├── contrib
│ │ │ │ │ │ │ │ ├── appengine.py
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── ntlmpool.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ │ └── socks.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── pyopenssl.py
│ │ │ │ │ │ │ │ └── socks.py
│ │ │ │ │ │ │ ├── exceptions.py
│ │ │ │ │ │ │ ├── fields.py
│ │ │ │ │ │ │ ├── filepost.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── packages
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ ├── ordered_dict.py
│ │ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ │ └── six.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── six.py
│ │ │ │ │ │ │ │ └── ssl_match_hostname
│ │ │ │ │ │ │ │ ├── _implementation.py
│ │ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── poolmanager.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── _collections.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── connection.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── connectionpool.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── fields.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── filepost.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── poolmanager.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── request.cpython-36.pyc
│ │ │ │ │ │ │ │ └── response.cpython-36.pyc
│ │ │ │ │ │ │ ├── request.py
│ │ │ │ │ │ │ ├── response.py
│ │ │ │ │ │ │ └── util
│ │ │ │ │ │ │ ├── connection.py
│ │ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ │ ├── connection.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── request.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── response.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── retry.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── ssl_.cpython-36.pyc
│ │ │ │ │ │ │ │ ├── timeout.cpython-36.pyc
│ │ │ │ │ │ │ │ └── url.cpython-36.pyc
│ │ │ │ │ │ │ ├── request.py
│ │ │ │ │ │ │ ├── response.py
│ │ │ │ │ │ │ ├── retry.py
│ │ │ │ │ │ │ ├── ssl_.py
│ │ │ │ │ │ │ ├── timeout.py
│ │ │ │ │ │ │ └── url.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── adapters.cpython-36.pyc
│ │ │ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ │ │ ├── auth.cpython-36.pyc
│ │ │ │ │ │ │ ├── certs.cpython-36.pyc
│ │ │ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ │ │ ├── cookies.cpython-36.pyc
│ │ │ │ │ │ │ ├── exceptions.cpython-36.pyc
│ │ │ │ │ │ │ ├── hooks.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── models.cpython-36.pyc
│ │ │ │ │ │ │ ├── sessions.cpython-36.pyc
│ │ │ │ │ │ │ ├── status_codes.cpython-36.pyc
│ │ │ │ │ │ │ ├── structures.cpython-36.pyc
│ │ │ │ │ │ │ └── utils.cpython-36.pyc
│ │ │ │ │ │ ├── sessions.py
│ │ │ │ │ │ ├── status_codes.py
│ │ │ │ │ │ ├── structures.py
│ │ │ │ │ │ └── utils.py
│ │ │ │ │ ├── retrying.py
│ │ │ │ │ ├── re-vendor.py
│ │ │ │ │ ├── six.py
│ │ │ │ │ └── webencodings
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── labels.py
│ │ │ │ │ ├── mklabels.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── labels.cpython-36.pyc
│ │ │ │ │ ├── tests.py
│ │ │ │ │ └── x_user_defined.py
│ │ │ │ └── wheel.py
│ │ │ ├── __pycache__
│ │ │ │ └── inflection.cpython-36.pyc
│ │ │ ├── pymysql
│ │ │ │ ├── charset.py
│ │ │ │ ├── _compat.py
│ │ │ │ ├── connections.py
│ │ │ │ ├── constants
│ │ │ │ │ ├── CLIENT.py
│ │ │ │ │ ├── COMMAND.py
│ │ │ │ │ ├── CR.py
│ │ │ │ │ ├── ER.py
│ │ │ │ │ ├── FIELD_TYPE.py
│ │ │ │ │ ├── FLAG.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── CLIENT.cpython-36.pyc
│ │ │ │ │ │ ├── COMMAND.cpython-36.pyc
│ │ │ │ │ │ ├── CR.cpython-36.pyc
│ │ │ │ │ │ ├── ER.cpython-36.pyc
│ │ │ │ │ │ ├── FIELD_TYPE.cpython-36.pyc
│ │ │ │ │ │ ├── FLAG.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── SERVER_STATUS.cpython-36.pyc
│ │ │ │ │ └── SERVER_STATUS.py
│ │ │ │ ├── converters.py
│ │ │ │ ├── cursors.py
│ │ │ │ ├── err.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── optionfile.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── charset.cpython-36.pyc
│ │ │ │ │ ├── _compat.cpython-36.pyc
│ │ │ │ │ ├── connections.cpython-36.pyc
│ │ │ │ │ ├── converters.cpython-36.pyc
│ │ │ │ │ ├── cursors.cpython-36.pyc
│ │ │ │ │ ├── err.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── optionfile.cpython-36.pyc
│ │ │ │ │ ├── _socketio.cpython-36.pyc
│ │ │ │ │ ├── times.cpython-36.pyc
│ │ │ │ │ └── util.cpython-36.pyc
│ │ │ │ ├── _socketio.py
│ │ │ │ ├── tests
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_basic.cpython-36.pyc
│ │ │ │ │ │ ├── test_connection.cpython-36.pyc
│ │ │ │ │ │ ├── test_converters.cpython-36.pyc
│ │ │ │ │ │ ├── test_cursor.cpython-36.pyc
│ │ │ │ │ │ ├── test_DictCursor.cpython-36.pyc
│ │ │ │ │ │ ├── test_err.cpython-36.pyc
│ │ │ │ │ │ ├── test_example.cpython-36.pyc
│ │ │ │ │ │ ├── test_issues.cpython-36.pyc
│ │ │ │ │ │ ├── test_load_local.cpython-36.pyc
│ │ │ │ │ │ ├── test_nextset.cpython-36.pyc
│ │ │ │ │ │ ├── test_optionfile.cpython-36.pyc
│ │ │ │ │ │ └── test_SSCursor.cpython-36.pyc
│ │ │ │ │ ├── test_basic.py
│ │ │ │ │ ├── test_connection.py
│ │ │ │ │ ├── test_converters.py
│ │ │ │ │ ├── test_cursor.py
│ │ │ │ │ ├── test_DictCursor.py
│ │ │ │ │ ├── test_err.py
│ │ │ │ │ ├── test_example.py
│ │ │ │ │ ├── test_issues.py
│ │ │ │ │ ├── test_load_local.py
│ │ │ │ │ ├── test_nextset.py
│ │ │ │ │ ├── test_optionfile.py
│ │ │ │ │ ├── test_SSCursor.py
│ │ │ │ │ └── thirdparty
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ └── test_MySQLdb
│ │ │ │ │ ├── capabilities.py
│ │ │ │ │ ├── dbapi20.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── capabilities.cpython-36.pyc
│ │ │ │ │ │ ├── dbapi20.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── test_MySQLdb_capabilities.cpython-36.pyc
│ │ │ │ │ │ ├── test_MySQLdb_dbapi20.cpython-36.pyc
│ │ │ │ │ │ └── test_MySQLdb_nonstandard.cpython-36.pyc
│ │ │ │ │ ├── test_MySQLdb_capabilities.py
│ │ │ │ │ ├── test_MySQLdb_dbapi20.py
│ │ │ │ │ └── test_MySQLdb_nonstandard.py
│ │ │ │ ├── times.py
│ │ │ │ └── util.py
│ │ │ ├── PyMySQL-0.8.1.dist-info
│ │ │ │ ├── INSTALLER
│ │ │ │ ├── METADATA
│ │ │ │ ├── pbr.json
│ │ │ │ ├── RECORD
│ │ │ │ ├── top_level.txt
│ │ │ │ └── WHEEL
│ │ │ ├── setuptools-28.8.0-py3.6.egg
│ │ │ ├── setuptools.pth
│ │ │ ├── sqlalchemy
│ │ │ │ ├── connectors
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── mxodbc.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── mxodbc.cpython-36.pyc
│ │ │ │ │ │ ├── pyodbc.cpython-36.pyc
│ │ │ │ │ │ └── zxJDBC.cpython-36.pyc
│ │ │ │ │ ├── pyodbc.py
│ │ │ │ │ └── zxJDBC.py
│ │ │ │ ├── databases
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ └── __pycache__
│ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ ├── dialects
│ │ │ │ │ ├── firebird
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── fdb.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── kinterbasdb.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── fdb.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ └── kinterbasdb.cpython-36.pyc
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── mssql
│ │ │ │ │ │ ├── adodbapi.py
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── information_schema.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── mxodbc.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── adodbapi.cpython-36.pyc
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── information_schema.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── mxodbc.cpython-36.pyc
│ │ │ │ │ │ │ ├── pymssql.cpython-36.pyc
│ │ │ │ │ │ │ ├── pyodbc.cpython-36.pyc
│ │ │ │ │ │ │ └── zxjdbc.cpython-36.pyc
│ │ │ │ │ │ ├── pymssql.py
│ │ │ │ │ │ ├── pyodbc.py
│ │ │ │ │ │ └── zxjdbc.py
│ │ │ │ │ ├── mysql
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── cymysql.py
│ │ │ │ │ │ ├── dml.py
│ │ │ │ │ │ ├── enumerated.py
│ │ │ │ │ │ ├── gaerdbms.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── json.py
│ │ │ │ │ │ ├── mysqlconnector.py
│ │ │ │ │ │ ├── mysqldb.py
│ │ │ │ │ │ ├── oursql.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── cymysql.cpython-36.pyc
│ │ │ │ │ │ │ ├── dml.cpython-36.pyc
│ │ │ │ │ │ │ ├── enumerated.cpython-36.pyc
│ │ │ │ │ │ │ ├── gaerdbms.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── json.cpython-36.pyc
│ │ │ │ │ │ │ ├── mysqlconnector.cpython-36.pyc
│ │ │ │ │ │ │ ├── mysqldb.cpython-36.pyc
│ │ │ │ │ │ │ ├── oursql.cpython-36.pyc
│ │ │ │ │ │ │ ├── pymysql.cpython-36.pyc
│ │ │ │ │ │ │ ├── pyodbc.cpython-36.pyc
│ │ │ │ │ │ │ ├── reflection.cpython-36.pyc
│ │ │ │ │ │ │ ├── types.cpython-36.pyc
│ │ │ │ │ │ │ └── zxjdbc.cpython-36.pyc
│ │ │ │ │ │ ├── pymysql.py
│ │ │ │ │ │ ├── pyodbc.py
│ │ │ │ │ │ ├── reflection.py
│ │ │ │ │ │ ├── types.py
│ │ │ │ │ │ └── zxjdbc.py
│ │ │ │ │ ├── oracle
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── cx_oracle.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── cx_oracle.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ └── zxjdbc.cpython-36.pyc
│ │ │ │ │ │ └── zxjdbc.py
│ │ │ │ │ ├── postgresql
│ │ │ │ │ │ ├── array.py
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── dml.py
│ │ │ │ │ │ ├── ext.py
│ │ │ │ │ │ ├── hstore.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── json.py
│ │ │ │ │ │ ├── pg8000.py
│ │ │ │ │ │ ├── psycopg2cffi.py
│ │ │ │ │ │ ├── psycopg2.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── array.cpython-36.pyc
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── dml.cpython-36.pyc
│ │ │ │ │ │ │ ├── ext.cpython-36.pyc
│ │ │ │ │ │ │ ├── hstore.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── json.cpython-36.pyc
│ │ │ │ │ │ │ ├── pg8000.cpython-36.pyc
│ │ │ │ │ │ │ ├── psycopg2cffi.cpython-36.pyc
│ │ │ │ │ │ │ ├── psycopg2.cpython-36.pyc
│ │ │ │ │ │ │ ├── pygresql.cpython-36.pyc
│ │ │ │ │ │ │ ├── pypostgresql.cpython-36.pyc
│ │ │ │ │ │ │ ├── ranges.cpython-36.pyc
│ │ │ │ │ │ │ └── zxjdbc.cpython-36.pyc
│ │ │ │ │ │ ├── pygresql.py
│ │ │ │ │ │ ├── pypostgresql.py
│ │ │ │ │ │ ├── ranges.py
│ │ │ │ │ │ └── zxjdbc.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ ├── sqlite
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── pysqlcipher.cpython-36.pyc
│ │ │ │ │ │ │ └── pysqlite.cpython-36.pyc
│ │ │ │ │ │ ├── pysqlcipher.py
│ │ │ │ │ │ └── pysqlite.py
│ │ │ │ │ └── sybase
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── mxodbc.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── mxodbc.cpython-36.pyc
│ │ │ │ │ │ ├── pyodbc.cpython-36.pyc
│ │ │ │ │ │ └── pysybase.cpython-36.pyc
│ │ │ │ │ ├── pyodbc.py
│ │ │ │ │ └── pysybase.py
│ │ │ │ ├── engine
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── default.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── interfaces.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── default.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── interfaces.cpython-36.pyc
│ │ │ │ │ │ ├── reflection.cpython-36.pyc
│ │ │ │ │ │ ├── result.cpython-36.pyc
│ │ │ │ │ │ ├── strategies.cpython-36.pyc
│ │ │ │ │ │ ├── threadlocal.cpython-36.pyc
│ │ │ │ │ │ ├── url.cpython-36.pyc
│ │ │ │ │ │ └── util.cpython-36.pyc
│ │ │ │ │ ├── reflection.py
│ │ │ │ │ ├── result.py
│ │ │ │ │ ├── strategies.py
│ │ │ │ │ ├── threadlocal.py
│ │ │ │ │ ├── url.py
│ │ │ │ │ └── util.py
│ │ │ │ ├── event
│ │ │ │ │ ├── api.py
│ │ │ │ │ ├── attr.py
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── legacy.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ │ ├── attr.cpython-36.pyc
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── legacy.cpython-36.pyc
│ │ │ │ │ │ └── registry.cpython-36.pyc
│ │ │ │ │ └── registry.py
│ │ │ │ ├── events.py
│ │ │ │ ├── exc.py
│ │ │ │ ├── ext
│ │ │ │ │ ├── associationproxy.py
│ │ │ │ │ ├── automap.py
│ │ │ │ │ ├── baked.py
│ │ │ │ │ ├── compiler.py
│ │ │ │ │ ├── declarative
│ │ │ │ │ │ ├── api.py
│ │ │ │ │ │ ├── base.py
│ │ │ │ │ │ ├── clsregistry.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ └── __pycache__
│ │ │ │ │ │ ├── api.cpython-36.pyc
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── clsregistry.cpython-36.pyc
│ │ │ │ │ │ └── __init__.cpython-36.pyc
│ │ │ │ │ ├── horizontal_shard.py
│ │ │ │ │ ├── hybrid.py
│ │ │ │ │ ├── indexable.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── instrumentation.py
│ │ │ │ │ ├── mutable.py
│ │ │ │ │ ├── orderinglist.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── associationproxy.cpython-36.pyc
│ │ │ │ │ │ ├── automap.cpython-36.pyc
│ │ │ │ │ │ ├── baked.cpython-36.pyc
│ │ │ │ │ │ ├── compiler.cpython-36.pyc
│ │ │ │ │ │ ├── horizontal_shard.cpython-36.pyc
│ │ │ │ │ │ ├── hybrid.cpython-36.pyc
│ │ │ │ │ │ ├── indexable.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── instrumentation.cpython-36.pyc
│ │ │ │ │ │ ├── mutable.cpython-36.pyc
│ │ │ │ │ │ ├── orderinglist.cpython-36.pyc
│ │ │ │ │ │ └── serializer.cpython-36.pyc
│ │ │ │ │ └── serializer.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── inspection.py
│ │ │ │ ├── interfaces.py
│ │ │ │ ├── log.py
│ │ │ │ ├── orm
│ │ │ │ │ ├── attributes.py
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── collections.py
│ │ │ │ │ ├── dependency.py
│ │ │ │ │ ├── deprecated_interfaces.py
│ │ │ │ │ ├── descriptor_props.py
│ │ │ │ │ ├── dynamic.py
│ │ │ │ │ ├── evaluator.py
│ │ │ │ │ ├── events.py
│ │ │ │ │ ├── exc.py
│ │ │ │ │ ├── identity.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── instrumentation.py
│ │ │ │ │ ├── interfaces.py
│ │ │ │ │ ├── loading.py
│ │ │ │ │ ├── mapper.py
│ │ │ │ │ ├── path_registry.py
│ │ │ │ │ ├── persistence.py
│ │ │ │ │ ├── properties.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── attributes.cpython-36.pyc
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── collections.cpython-36.pyc
│ │ │ │ │ │ ├── dependency.cpython-36.pyc
│ │ │ │ │ │ ├── deprecated_interfaces.cpython-36.pyc
│ │ │ │ │ │ ├── descriptor_props.cpython-36.pyc
│ │ │ │ │ │ ├── dynamic.cpython-36.pyc
│ │ │ │ │ │ ├── evaluator.cpython-36.pyc
│ │ │ │ │ │ ├── events.cpython-36.pyc
│ │ │ │ │ │ ├── exc.cpython-36.pyc
│ │ │ │ │ │ ├── identity.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── instrumentation.cpython-36.pyc
│ │ │ │ │ │ ├── interfaces.cpython-36.pyc
│ │ │ │ │ │ ├── loading.cpython-36.pyc
│ │ │ │ │ │ ├── mapper.cpython-36.pyc
│ │ │ │ │ │ ├── path_registry.cpython-36.pyc
│ │ │ │ │ │ ├── persistence.cpython-36.pyc
│ │ │ │ │ │ ├── properties.cpython-36.pyc
│ │ │ │ │ │ ├── query.cpython-36.pyc
│ │ │ │ │ │ ├── relationships.cpython-36.pyc
│ │ │ │ │ │ ├── scoping.cpython-36.pyc
│ │ │ │ │ │ ├── session.cpython-36.pyc
│ │ │ │ │ │ ├── state.cpython-36.pyc
│ │ │ │ │ │ ├── strategies.cpython-36.pyc
│ │ │ │ │ │ ├── strategy_options.cpython-36.pyc
│ │ │ │ │ │ ├── sync.cpython-36.pyc
│ │ │ │ │ │ ├── unitofwork.cpython-36.pyc
│ │ │ │ │ │ └── util.cpython-36.pyc
│ │ │ │ │ ├── query.py
│ │ │ │ │ ├── relationships.py
│ │ │ │ │ ├── scoping.py
│ │ │ │ │ ├── session.py
│ │ │ │ │ ├── state.py
│ │ │ │ │ ├── strategies.py
│ │ │ │ │ ├── strategy_options.py
│ │ │ │ │ ├── sync.py
│ │ │ │ │ ├── unitofwork.py
│ │ │ │ │ └── util.py
│ │ │ │ ├── pool.py
│ │ │ │ ├── processors.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── events.cpython-36.pyc
│ │ │ │ │ ├── exc.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── inspection.cpython-36.pyc
│ │ │ │ │ ├── interfaces.cpython-36.pyc
│ │ │ │ │ ├── log.cpython-36.pyc
│ │ │ │ │ ├── pool.cpython-36.pyc
│ │ │ │ │ ├── processors.cpython-36.pyc
│ │ │ │ │ ├── schema.cpython-36.pyc
│ │ │ │ │ └── types.cpython-36.pyc
│ │ │ │ ├── schema.py
│ │ │ │ ├── sql
│ │ │ │ │ ├── annotation.py
│ │ │ │ │ ├── base.py
│ │ │ │ │ ├── compiler.py
│ │ │ │ │ ├── crud.py
│ │ │ │ │ ├── ddl.py
│ │ │ │ │ ├── default_comparator.py
│ │ │ │ │ ├── dml.py
│ │ │ │ │ ├── elements.py
│ │ │ │ │ ├── expression.py
│ │ │ │ │ ├── functions.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── naming.py
│ │ │ │ │ ├── operators.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── annotation.cpython-36.pyc
│ │ │ │ │ │ ├── base.cpython-36.pyc
│ │ │ │ │ │ ├── compiler.cpython-36.pyc
│ │ │ │ │ │ ├── crud.cpython-36.pyc
│ │ │ │ │ │ ├── ddl.cpython-36.pyc
│ │ │ │ │ │ ├── default_comparator.cpython-36.pyc
│ │ │ │ │ │ ├── dml.cpython-36.pyc
│ │ │ │ │ │ ├── elements.cpython-36.pyc
│ │ │ │ │ │ ├── expression.cpython-36.pyc
│ │ │ │ │ │ ├── functions.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── naming.cpython-36.pyc
│ │ │ │ │ │ ├── operators.cpython-36.pyc
│ │ │ │ │ │ ├── schema.cpython-36.pyc
│ │ │ │ │ │ ├── selectable.cpython-36.pyc
│ │ │ │ │ │ ├── sqltypes.cpython-36.pyc
│ │ │ │ │ │ ├── type_api.cpython-36.pyc
│ │ │ │ │ │ ├── util.cpython-36.pyc
│ │ │ │ │ │ └── visitors.cpython-36.pyc
│ │ │ │ │ ├── schema.py
│ │ │ │ │ ├── selectable.py
│ │ │ │ │ ├── sqltypes.py
│ │ │ │ │ ├── type_api.py
│ │ │ │ │ ├── util.py
│ │ │ │ │ └── visitors.py
│ │ │ │ ├── testing
│ │ │ │ │ ├── assertions.py
│ │ │ │ │ ├── assertsql.py
│ │ │ │ │ ├── config.py
│ │ │ │ │ ├── engines.py
│ │ │ │ │ ├── entities.py
│ │ │ │ │ ├── exclusions.py
│ │ │ │ │ ├── fixtures.py
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── mock.py
│ │ │ │ │ ├── pickleable.py
│ │ │ │ │ ├── plugin
│ │ │ │ │ │ ├── bootstrap.py
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── noseplugin.py
│ │ │ │ │ │ ├── plugin_base.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── bootstrap.cpython-36.pyc
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── noseplugin.cpython-36.pyc
│ │ │ │ │ │ │ ├── plugin_base.cpython-36.pyc
│ │ │ │ │ │ │ └── pytestplugin.cpython-36.pyc
│ │ │ │ │ │ └── pytestplugin.py
│ │ │ │ │ ├── profiling.py
│ │ │ │ │ ├── provision.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── assertions.cpython-36.pyc
│ │ │ │ │ │ ├── assertsql.cpython-36.pyc
│ │ │ │ │ │ ├── config.cpython-36.pyc
│ │ │ │ │ │ ├── engines.cpython-36.pyc
│ │ │ │ │ │ ├── entities.cpython-36.pyc
│ │ │ │ │ │ ├── exclusions.cpython-36.pyc
│ │ │ │ │ │ ├── fixtures.cpython-36.pyc
│ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ ├── mock.cpython-36.pyc
│ │ │ │ │ │ ├── pickleable.cpython-36.pyc
│ │ │ │ │ │ ├── profiling.cpython-36.pyc
│ │ │ │ │ │ ├── provision.cpython-36.pyc
│ │ │ │ │ │ ├── replay_fixture.cpython-36.pyc
│ │ │ │ │ │ ├── requirements.cpython-36.pyc
│ │ │ │ │ │ ├── runner.cpython-36.pyc
│ │ │ │ │ │ ├── schema.cpython-36.pyc
│ │ │ │ │ │ ├── util.cpython-36.pyc
│ │ │ │ │ │ └── warnings.cpython-36.pyc
│ │ │ │ │ ├── replay_fixture.py
│ │ │ │ │ ├── requirements.py
│ │ │ │ │ ├── runner.py
│ │ │ │ │ ├── schema.py
│ │ │ │ │ ├── suite
│ │ │ │ │ │ ├── __init__.py
│ │ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_ddl.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_dialect.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_insert.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_reflection.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_results.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_select.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_sequence.cpython-36.pyc
│ │ │ │ │ │ │ ├── test_types.cpython-36.pyc
│ │ │ │ │ │ │ └── test_update_delete.cpython-36.pyc
│ │ │ │ │ │ ├── test_ddl.py
│ │ │ │ │ │ ├── test_dialect.py
│ │ │ │ │ │ ├── test_insert.py
│ │ │ │ │ │ ├── test_reflection.py
│ │ │ │ │ │ ├── test_results.py
│ │ │ │ │ │ ├── test_select.py
│ │ │ │ │ │ ├── test_sequence.py
│ │ │ │ │ │ ├── test_types.py
│ │ │ │ │ │ └── test_update_delete.py
│ │ │ │ │ ├── util.py
│ │ │ │ │ └── warnings.py
│ │ │ │ ├── types.py
│ │ │ │ └── util
│ │ │ │ ├── _collections.py
│ │ │ │ ├── compat.py
│ │ │ │ ├── deprecations.py
│ │ │ │ ├── __init__.py
│ │ │ │ ├── langhelpers.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── _collections.cpython-36.pyc
│ │ │ │ │ ├── compat.cpython-36.pyc
│ │ │ │ │ ├── deprecations.cpython-36.pyc
│ │ │ │ │ ├── __init__.cpython-36.pyc
│ │ │ │ │ ├── langhelpers.cpython-36.pyc
│ │ │ │ │ ├── queue.cpython-36.pyc
│ │ │ │ │ └── topological.cpython-36.pyc
│ │ │ │ ├── queue.py
│ │ │ │ └── topological.py
│ │ │ └── SQLAlchemy-1.2.7-py3.6.egg-info
│ │ │ ├── dependency_links.txt
│ │ │ ├── installed-files.txt
│ │ │ ├── PKG-INFO
│ │ │ ├── requires.txt
│ │ │ ├── SOURCES.txt
│ │ │ └── top_level.txt
│ │ └── tcl8.6
│ │ └── init.tcl
│ ├── pip-selfcheck.json
│ ├── pyvenv.cfg
│ └── Scripts
│ ├── activate
│ ├── activate.bat
│ ├── Activate.ps1
│ ├── _asyncio_d.pyd
│ ├── _asyncio.pyd
│ ├── _bz2_d.pyd
│ ├── _bz2.pyd
│ ├── _ctypes_d.pyd
│ ├── _ctypes.pyd
│ ├── _ctypes_test_d.pyd
│ ├── _ctypes_test.pyd
│ ├── deactivate.bat
│ ├── _decimal_d.pyd
│ ├── _decimal.pyd
│ ├── easy_install-3.6.exe
│ ├── easy_install-3.6.exe.manifest
│ ├── easy_install-3.6-script.py
│ ├── easy_install.exe
│ ├── easy_install.exe.manifest
│ ├── easy_install-script.py
│ ├── _elementtree_d.pyd
│ ├── _elementtree.pyd
│ ├── _hashlib_d.pyd
│ ├── _hashlib.pyd
│ ├── _lzma_d.pyd
│ ├── _lzma.pyd
│ ├── _msi_d.pyd
│ ├── _msi.pyd
│ ├── _multiprocessing_d.pyd
│ ├── _multiprocessing.pyd
│ ├── _overlapped_d.pyd
│ ├── _overlapped.pyd
│ ├── pip3.6.exe
│ ├── pip3.6.exe.manifest
│ ├── pip3.6-script.py
│ ├── pip3.exe
│ ├── pip3.exe.manifest
│ ├── pip3-script.py
│ ├── pip.exe
│ ├── pip.exe.manifest
│ ├── pip-script.py
│ ├── pyexpat_d.pyd
│ ├── pyexpat.pyd
│ ├── python36_d.dll
│ ├── python36.dll
│ ├── python3_d.dll
│ ├── python3.dll
│ ├── python_d.exe
│ ├── python.exe
│ ├── pythonw_d.exe
│ ├── pythonw.exe
│ ├── select_d.pyd
│ ├── select.pyd
│ ├── _socket_d.pyd
│ ├── _socket.pyd
│ ├── sqlite3_d.dll
│ ├── sqlite3.dll
│ ├── _sqlite3_d.pyd
│ ├── _sqlite3.pyd
│ ├── _ssl_d.pyd
│ ├── _ssl.pyd
│ ├── tcl86t.dll
│ ├── tcl86tg.dll
│ ├── _testbuffer_d.pyd
│ ├── _testbuffer.pyd
│ ├── _testcapi_d.pyd
│ ├── _testcapi.pyd
│ ├── _testconsole_d.pyd
│ ├── _testconsole.pyd
│ ├── _testimportmultiple_d.pyd
│ ├── _testimportmultiple.pyd
│ ├── _testmultiphase_d.pyd
│ ├── _testmultiphase.pyd
│ ├── tk86t.dll
│ ├── tk86tg.dll
│ ├── _tkinter_d.pyd
│ ├── _tkinter.pyd
│ ├── unicodedata_d.pyd
│ ├── unicodedata.pyd
│ ├── vcruntime140.dll
│ ├── winsound_d.pyd
│ └── winsound.pyd
└── view.py
131 directories, 1000 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论