在好例子网,分享、交流、成长!
您当前所在位置:首页Python 开发实例Python语言基础 → django实现学生管理系统好看的页面

django实现学生管理系统好看的页面

Python语言基础

下载此实例
  • 开发语言:Python
  • 实例大小:18.47M
  • 下载次数:45
  • 浏览次数:314
  • 发布时间:2021-12-29
  • 实例类别:Python语言基础
  • 发 布 人:Vchengf
  • 文件格式:.zip
  • 所需积分:2

实例介绍

【实例简介】django实现学生管理系统好看的页面
【实例截图】from clipboardfrom clipboardfrom clipboardfrom clipboard
【核心代码】.
├── SMproject
│   ├── SMproject
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── settings.cpython-39.pyc
│   │   │   ├── urls.cpython-39.pyc
│   │   │   └── wsgi.cpython-39.pyc
│   │   ├── asgi.py
│   │   ├── settings.py
│   │   ├── urls.py
│   │   └── wsgi.py
│   ├── WebApp
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-39.pyc
│   │   │   ├── admin.cpython-39.pyc
│   │   │   ├── apps.cpython-39.pyc
│   │   │   ├── models.cpython-39.pyc
│   │   │   ├── urls.cpython-39.pyc
│   │   │   └── views.cpython-39.pyc
│   │   ├── admin.py
│   │   ├── apps.py
│   │   ├── migrations
│   │   │   ├── __init__.py
│   │   │   └── __pycache__
│   │   │       └── __init__.cpython-39.pyc
│   │   ├── models.py
│   │   ├── tests.py
│   │   ├── urls.py
│   │   └── views.py
│   ├── __pycache__
│   │   └── manage.cpython-39.pyc
│   ├── manage.py
│   ├── templates
│   │   ├── default
│   │   │   ├── add.html
│   │   │   ├── bg-image.jpeg
│   │   │   ├── bootstrap.min.css
│   │   │   ├── delete.html
│   │   │   ├── index.html
│   │   │   ├── login.gif
│   │   │   ├── login.html
│   │   │   ├── select.html
│   │   │   └── update.html
│   │   └── styles
│   │       └── styles.css
│   └── venv
│       ├── Include
│       ├── Lib
│       │   └── site-packages
│       │       ├── Django-4.0.dist-info
│       │       │   ├── AUTHORS
│       │       │   ├── INSTALLER
│       │       │   ├── LICENSE
│       │       │   ├── LICENSE.python
│       │       │   ├── METADATA
│       │       │   ├── RECORD
│       │       │   ├── REQUESTED
│       │       │   ├── WHEEL
│       │       │   ├── entry_points.txt
│       │       │   └── top_level.txt
│       │       ├── MySQLdb
│       │       │   ├── __init__.py
│       │       │   ├── __pycache__
│       │       │   │   ├── __init__.cpython-39.pyc
│       │       │   │   ├── _exceptions.cpython-39.pyc
│       │       │   │   ├── connections.cpython-39.pyc
│       │       │   │   ├── converters.cpython-39.pyc
│       │       │   │   ├── cursors.cpython-39.pyc
│       │       │   │   ├── release.cpython-39.pyc
│       │       │   │   └── times.cpython-39.pyc
│       │       │   ├── _exceptions.py
│       │       │   ├── _mysql.cp39-win_amd64.pyd
│       │       │   ├── connections.py
│       │       │   ├── constants
│       │       │   │   ├── CLIENT.py
│       │       │   │   ├── CR.py
│       │       │   │   ├── ER.py
│       │       │   │   ├── FIELD_TYPE.py
│       │       │   │   ├── FLAG.py
│       │       │   │   ├── __init__.py
│       │       │   │   └── __pycache__
│       │       │   │       ├── CLIENT.cpython-39.pyc
│       │       │   │       ├── CR.cpython-39.pyc
│       │       │   │       ├── ER.cpython-39.pyc
│       │       │   │       ├── FIELD_TYPE.cpython-39.pyc
│       │       │   │       ├── FLAG.cpython-39.pyc
│       │       │   │       └── __init__.cpython-39.pyc
│       │       │   ├── converters.py
│       │       │   ├── cursors.py
│       │       │   ├── release.py
│       │       │   └── times.py
│       │       ├── _distutils_hack
│       │       │   ├── __init__.py
│       │       │   ├── __pycache__
│       │       │   │   ├── __init__.cpython-39.pyc
│       │       │   │   └── override.cpython-39.pyc
│       │       │   └── override.py
│       │       ├── asgiref
│       │       │   ├── __init__.py
│       │       │   ├── __pycache__
│       │       │   │   ├── __init__.cpython-39.pyc
│       │       │   │   ├── _pep562.cpython-39.pyc
│       │       │   │   ├── compatibility.cpython-39.pyc
│       │       │   │   ├── current_thread_executor.cpython-39.pyc
│       │       │   │   ├── local.cpython-39.pyc
│       │       │   │   ├── server.cpython-39.pyc
│       │       │   │   ├── sync.cpython-39.pyc
│       │       │   │   ├── testing.cpython-39.pyc
│       │       │   │   ├── timeout.cpython-39.pyc
│       │       │   │   ├── typing.cpython-39.pyc
│       │       │   │   └── wsgi.cpython-39.pyc
│       │       │   ├── _pep562.py
│       │       │   ├── compatibility.py
│       │       │   ├── current_thread_executor.py
│       │       │   ├── local.py
│       │       │   ├── py.typed
│       │       │   ├── server.py
│       │       │   ├── sync.py
│       │       │   ├── testing.py
│       │       │   ├── timeout.py
│       │       │   ├── typing.py
│       │       │   └── wsgi.py
│       │       ├── asgiref-3.4.1.dist-info
│       │       │   ├── INSTALLER
│       │       │   ├── LICENSE
│       │       │   ├── METADATA
│       │       │   ├── RECORD
│       │       │   ├── WHEEL
│       │       │   └── top_level.txt
│       │       ├── distutils-precedence.pth
│       │       ├── django
│       │       │   ├── __init__.py
│       │       │   ├── __main__.py
│       │       │   ├── __pycache__
│       │       │   │   ├── __init__.cpython-39.pyc
│       │       │   │   ├── __main__.cpython-39.pyc
│       │       │   │   └── shortcuts.cpython-39.pyc
│       │       │   ├── apps
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── config.cpython-39.pyc
│       │       │   │   │   └── registry.cpython-39.pyc
│       │       │   │   ├── config.py
│       │       │   │   └── registry.py
│       │       │   ├── conf
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   └── global_settings.cpython-39.pyc
│       │       │   │   ├── app_template
│       │       │   │   │   ├── __init__.py-tpl
│       │       │   │   │   ├── admin.py-tpl
│       │       │   │   │   ├── apps.py-tpl
│       │       │   │   │   ├── migrations
│       │       │   │   │   ├── models.py-tpl
│       │       │   │   │   ├── tests.py-tpl
│       │       │   │   │   └── views.py-tpl
│       │       │   │   ├── global_settings.py
│       │       │   │   ├── locale
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── af
│       │       │   │   │   ├── ar
│       │       │   │   │   ├── ar_DZ
│       │       │   │   │   ├── ast
│       │       │   │   │   ├── az
│       │       │   │   │   ├── be
│       │       │   │   │   ├── bg
│       │       │   │   │   ├── bn
│       │       │   │   │   ├── br
│       │       │   │   │   ├── bs
│       │       │   │   │   ├── ca
│       │       │   │   │   ├── cs
│       │       │   │   │   ├── cy
│       │       │   │   │   ├── da
│       │       │   │   │   ├── de
│       │       │   │   │   ├── de_CH
│       │       │   │   │   ├── dsb
│       │       │   │   │   ├── el
│       │       │   │   │   ├── en
│       │       │   │   │   ├── en_AU
│       │       │   │   │   ├── en_GB
│       │       │   │   │   ├── eo
│       │       │   │   │   ├── es
│       │       │   │   │   ├── es_AR
│       │       │   │   │   ├── es_CO
│       │       │   │   │   ├── es_MX
│       │       │   │   │   ├── es_NI
│       │       │   │   │   ├── es_PR
│       │       │   │   │   ├── es_VE
│       │       │   │   │   ├── et
│       │       │   │   │   ├── eu
│       │       │   │   │   ├── fa
│       │       │   │   │   ├── fi
│       │       │   │   │   ├── fr
│       │       │   │   │   ├── fy
│       │       │   │   │   ├── ga
│       │       │   │   │   ├── gd
│       │       │   │   │   ├── gl
│       │       │   │   │   ├── he
│       │       │   │   │   ├── hi
│       │       │   │   │   ├── hr
│       │       │   │   │   ├── hsb
│       │       │   │   │   ├── hu
│       │       │   │   │   ├── hy
│       │       │   │   │   ├── ia
│       │       │   │   │   ├── id
│       │       │   │   │   ├── ig
│       │       │   │   │   ├── io
│       │       │   │   │   ├── is
│       │       │   │   │   ├── it
│       │       │   │   │   ├── ja
│       │       │   │   │   ├── ka
│       │       │   │   │   ├── kab
│       │       │   │   │   ├── kk
│       │       │   │   │   ├── km
│       │       │   │   │   ├── kn
│       │       │   │   │   ├── ko
│       │       │   │   │   ├── ky
│       │       │   │   │   ├── lb
│       │       │   │   │   ├── lt
│       │       │   │   │   ├── lv
│       │       │   │   │   ├── mk
│       │       │   │   │   ├── ml
│       │       │   │   │   ├── mn
│       │       │   │   │   ├── mr
│       │       │   │   │   ├── ms
│       │       │   │   │   ├── my
│       │       │   │   │   ├── nb
│       │       │   │   │   ├── ne
│       │       │   │   │   ├── nl
│       │       │   │   │   ├── nn
│       │       │   │   │   ├── os
│       │       │   │   │   ├── pa
│       │       │   │   │   ├── pl
│       │       │   │   │   ├── pt
│       │       │   │   │   ├── pt_BR
│       │       │   │   │   ├── ro
│       │       │   │   │   ├── ru
│       │       │   │   │   ├── sk
│       │       │   │   │   ├── sl
│       │       │   │   │   ├── sq
│       │       │   │   │   ├── sr
│       │       │   │   │   ├── sr_Latn
│       │       │   │   │   ├── sv
│       │       │   │   │   ├── sw
│       │       │   │   │   ├── ta
│       │       │   │   │   ├── te
│       │       │   │   │   ├── tg
│       │       │   │   │   ├── th
│       │       │   │   │   ├── tk
│       │       │   │   │   ├── tr
│       │       │   │   │   ├── tt
│       │       │   │   │   ├── udm
│       │       │   │   │   ├── uk
│       │       │   │   │   ├── ur
│       │       │   │   │   ├── uz
│       │       │   │   │   ├── vi
│       │       │   │   │   ├── zh_Hans
│       │       │   │   │   └── zh_Hant
│       │       │   │   ├── project_template
│       │       │   │   │   ├── manage.py-tpl
│       │       │   │   │   └── project_name
│       │       │   │   └── urls
│       │       │   │       ├── __init__.py
│       │       │   │       ├── __pycache__
│       │       │   │       ├── i18n.py
│       │       │   │       └── static.py
│       │       │   ├── contrib
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   └── __init__.cpython-39.pyc
│       │       │   │   ├── admin
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── actions.py
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── checks.py
│       │       │   │   │   ├── decorators.py
│       │       │   │   │   ├── exceptions.py
│       │       │   │   │   ├── filters.py
│       │       │   │   │   ├── forms.py
│       │       │   │   │   ├── helpers.py
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── migrations
│       │       │   │   │   ├── models.py
│       │       │   │   │   ├── options.py
│       │       │   │   │   ├── sites.py
│       │       │   │   │   ├── static
│       │       │   │   │   ├── templates
│       │       │   │   │   ├── templatetags
│       │       │   │   │   ├── tests.py
│       │       │   │   │   ├── utils.py
│       │       │   │   │   ├── views
│       │       │   │   │   └── widgets.py
│       │       │   │   ├── admindocs
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── middleware.py
│       │       │   │   │   ├── templates
│       │       │   │   │   ├── urls.py
│       │       │   │   │   ├── utils.py
│       │       │   │   │   └── views.py
│       │       │   │   ├── auth
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── admin.py
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── backends.py
│       │       │   │   │   ├── base_user.py
│       │       │   │   │   ├── checks.py
│       │       │   │   │   ├── common-passwords.txt.gz
│       │       │   │   │   ├── context_processors.py
│       │       │   │   │   ├── decorators.py
│       │       │   │   │   ├── forms.py
│       │       │   │   │   ├── handlers
│       │       │   │   │   ├── hashers.py
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── management
│       │       │   │   │   ├── middleware.py
│       │       │   │   │   ├── migrations
│       │       │   │   │   ├── mixins.py
│       │       │   │   │   ├── models.py
│       │       │   │   │   ├── password_validation.py
│       │       │   │   │   ├── signals.py
│       │       │   │   │   ├── templates
│       │       │   │   │   ├── tokens.py
│       │       │   │   │   ├── urls.py
│       │       │   │   │   ├── validators.py
│       │       │   │   │   └── views.py
│       │       │   │   ├── contenttypes
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── admin.py
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── checks.py
│       │       │   │   │   ├── fields.py
│       │       │   │   │   ├── forms.py
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── management
│       │       │   │   │   ├── migrations
│       │       │   │   │   ├── models.py
│       │       │   │   │   └── views.py
│       │       │   │   ├── flatpages
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── admin.py
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── forms.py
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── middleware.py
│       │       │   │   │   ├── migrations
│       │       │   │   │   ├── models.py
│       │       │   │   │   ├── sitemaps.py
│       │       │   │   │   ├── templatetags
│       │       │   │   │   ├── urls.py
│       │       │   │   │   └── views.py
│       │       │   │   ├── gis
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── admin
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── db
│       │       │   │   │   ├── feeds.py
│       │       │   │   │   ├── forms
│       │       │   │   │   ├── gdal
│       │       │   │   │   ├── geoip2
│       │       │   │   │   ├── geometry.py
│       │       │   │   │   ├── geos
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── management
│       │       │   │   │   ├── measure.py
│       │       │   │   │   ├── ptr.py
│       │       │   │   │   ├── serializers
│       │       │   │   │   ├── shortcuts.py
│       │       │   │   │   ├── sitemaps
│       │       │   │   │   ├── static
│       │       │   │   │   ├── templates
│       │       │   │   │   ├── utils
│       │       │   │   │   └── views.py
│       │       │   │   ├── humanize
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── locale
│       │       │   │   │   └── templatetags
│       │       │   │   ├── messages
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── api.py
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── constants.py
│       │       │   │   │   ├── context_processors.py
│       │       │   │   │   ├── middleware.py
│       │       │   │   │   ├── storage
│       │       │   │   │   ├── utils.py
│       │       │   │   │   └── views.py
│       │       │   │   ├── postgres
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── aggregates
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── constraints.py
│       │       │   │   │   ├── expressions.py
│       │       │   │   │   ├── fields
│       │       │   │   │   ├── forms
│       │       │   │   │   ├── functions.py
│       │       │   │   │   ├── indexes.py
│       │       │   │   │   ├── jinja2
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── lookups.py
│       │       │   │   │   ├── operations.py
│       │       │   │   │   ├── search.py
│       │       │   │   │   ├── serializers.py
│       │       │   │   │   ├── signals.py
│       │       │   │   │   ├── templates
│       │       │   │   │   ├── utils.py
│       │       │   │   │   └── validators.py
│       │       │   │   ├── redirects
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── admin.py
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── middleware.py
│       │       │   │   │   ├── migrations
│       │       │   │   │   └── models.py
│       │       │   │   ├── sessions
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── backends
│       │       │   │   │   ├── base_session.py
│       │       │   │   │   ├── exceptions.py
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── management
│       │       │   │   │   ├── middleware.py
│       │       │   │   │   ├── migrations
│       │       │   │   │   ├── models.py
│       │       │   │   │   └── serializers.py
│       │       │   │   ├── sitemaps
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── management
│       │       │   │   │   ├── templates
│       │       │   │   │   └── views.py
│       │       │   │   ├── sites
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── admin.py
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── checks.py
│       │       │   │   │   ├── locale
│       │       │   │   │   ├── management.py
│       │       │   │   │   ├── managers.py
│       │       │   │   │   ├── middleware.py
│       │       │   │   │   ├── migrations
│       │       │   │   │   ├── models.py
│       │       │   │   │   ├── requests.py
│       │       │   │   │   └── shortcuts.py
│       │       │   │   ├── staticfiles
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── apps.py
│       │       │   │   │   ├── checks.py
│       │       │   │   │   ├── finders.py
│       │       │   │   │   ├── handlers.py
│       │       │   │   │   ├── management
│       │       │   │   │   ├── storage.py
│       │       │   │   │   ├── testing.py
│       │       │   │   │   ├── urls.py
│       │       │   │   │   ├── utils.py
│       │       │   │   │   └── views.py
│       │       │   │   └── syndication
│       │       │   │       ├── __init__.py
│       │       │   │       ├── __pycache__
│       │       │   │       ├── apps.py
│       │       │   │       └── views.py
│       │       │   ├── core
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── asgi.cpython-39.pyc
│       │       │   │   │   ├── exceptions.cpython-39.pyc
│       │       │   │   │   ├── paginator.cpython-39.pyc
│       │       │   │   │   ├── signals.cpython-39.pyc
│       │       │   │   │   ├── signing.cpython-39.pyc
│       │       │   │   │   ├── validators.cpython-39.pyc
│       │       │   │   │   └── wsgi.cpython-39.pyc
│       │       │   │   ├── asgi.py
│       │       │   │   ├── cache
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── backends
│       │       │   │   │   └── utils.py
│       │       │   │   ├── checks
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── async_checks.py
│       │       │   │   │   ├── caches.py
│       │       │   │   │   ├── compatibility
│       │       │   │   │   ├── database.py
│       │       │   │   │   ├── files.py
│       │       │   │   │   ├── messages.py
│       │       │   │   │   ├── model_checks.py
│       │       │   │   │   ├── registry.py
│       │       │   │   │   ├── security
│       │       │   │   │   ├── templates.py
│       │       │   │   │   ├── translation.py
│       │       │   │   │   └── urls.py
│       │       │   │   ├── exceptions.py
│       │       │   │   ├── files
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── base.py
│       │       │   │   │   ├── images.py
│       │       │   │   │   ├── locks.py
│       │       │   │   │   ├── move.py
│       │       │   │   │   ├── storage.py
│       │       │   │   │   ├── temp.py
│       │       │   │   │   ├── uploadedfile.py
│       │       │   │   │   ├── uploadhandler.py
│       │       │   │   │   └── utils.py
│       │       │   │   ├── handlers
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── asgi.py
│       │       │   │   │   ├── base.py
│       │       │   │   │   ├── exception.py
│       │       │   │   │   └── wsgi.py
│       │       │   │   ├── mail
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── backends
│       │       │   │   │   ├── message.py
│       │       │   │   │   └── utils.py
│       │       │   │   ├── management
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── base.py
│       │       │   │   │   ├── color.py
│       │       │   │   │   ├── commands
│       │       │   │   │   ├── sql.py
│       │       │   │   │   ├── templates.py
│       │       │   │   │   └── utils.py
│       │       │   │   ├── paginator.py
│       │       │   │   ├── serializers
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── base.py
│       │       │   │   │   ├── json.py
│       │       │   │   │   ├── jsonl.py
│       │       │   │   │   ├── python.py
│       │       │   │   │   ├── pyyaml.py
│       │       │   │   │   └── xml_serializer.py
│       │       │   │   ├── servers
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   └── basehttp.py
│       │       │   │   ├── signals.py
│       │       │   │   ├── signing.py
│       │       │   │   ├── validators.py
│       │       │   │   └── wsgi.py
│       │       │   ├── db
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── transaction.cpython-39.pyc
│       │       │   │   │   └── utils.cpython-39.pyc
│       │       │   │   ├── backends
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── base
│       │       │   │   │   ├── ddl_references.py
│       │       │   │   │   ├── dummy
│       │       │   │   │   ├── mysql
│       │       │   │   │   ├── oracle
│       │       │   │   │   ├── postgresql
│       │       │   │   │   ├── signals.py
│       │       │   │   │   ├── sqlite3
│       │       │   │   │   └── utils.py
│       │       │   │   ├── migrations
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── autodetector.py
│       │       │   │   │   ├── exceptions.py
│       │       │   │   │   ├── executor.py
│       │       │   │   │   ├── graph.py
│       │       │   │   │   ├── loader.py
│       │       │   │   │   ├── migration.py
│       │       │   │   │   ├── operations
│       │       │   │   │   ├── optimizer.py
│       │       │   │   │   ├── questioner.py
│       │       │   │   │   ├── recorder.py
│       │       │   │   │   ├── serializer.py
│       │       │   │   │   ├── state.py
│       │       │   │   │   ├── utils.py
│       │       │   │   │   └── writer.py
│       │       │   │   ├── models
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── aggregates.py
│       │       │   │   │   ├── base.py
│       │       │   │   │   ├── constants.py
│       │       │   │   │   ├── constraints.py
│       │       │   │   │   ├── deletion.py
│       │       │   │   │   ├── enums.py
│       │       │   │   │   ├── expressions.py
│       │       │   │   │   ├── fields
│       │       │   │   │   ├── functions
│       │       │   │   │   ├── indexes.py
│       │       │   │   │   ├── lookups.py
│       │       │   │   │   ├── manager.py
│       │       │   │   │   ├── options.py
│       │       │   │   │   ├── query.py
│       │       │   │   │   ├── query_utils.py
│       │       │   │   │   ├── signals.py
│       │       │   │   │   ├── sql
│       │       │   │   │   └── utils.py
│       │       │   │   ├── transaction.py
│       │       │   │   └── utils.py
│       │       │   ├── dispatch
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   └── dispatcher.cpython-39.pyc
│       │       │   │   ├── dispatcher.py
│       │       │   │   └── license.txt
│       │       │   ├── forms
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── boundfield.cpython-39.pyc
│       │       │   │   │   ├── fields.cpython-39.pyc
│       │       │   │   │   ├── forms.cpython-39.pyc
│       │       │   │   │   ├── formsets.cpython-39.pyc
│       │       │   │   │   ├── models.cpython-39.pyc
│       │       │   │   │   ├── renderers.cpython-39.pyc
│       │       │   │   │   ├── utils.cpython-39.pyc
│       │       │   │   │   └── widgets.cpython-39.pyc
│       │       │   │   ├── boundfield.py
│       │       │   │   ├── fields.py
│       │       │   │   ├── forms.py
│       │       │   │   ├── formsets.py
│       │       │   │   ├── jinja2
│       │       │   │   │   └── django
│       │       │   │   ├── models.py
│       │       │   │   ├── renderers.py
│       │       │   │   ├── templates
│       │       │   │   │   └── django
│       │       │   │   ├── utils.py
│       │       │   │   └── widgets.py
│       │       │   ├── http
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── cookie.cpython-39.pyc
│       │       │   │   │   ├── multipartparser.cpython-39.pyc
│       │       │   │   │   ├── request.cpython-39.pyc
│       │       │   │   │   └── response.cpython-39.pyc
│       │       │   │   ├── cookie.py
│       │       │   │   ├── multipartparser.py
│       │       │   │   ├── request.py
│       │       │   │   └── response.py
│       │       │   ├── middleware
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── cache.cpython-39.pyc
│       │       │   │   │   ├── clickjacking.cpython-39.pyc
│       │       │   │   │   ├── common.cpython-39.pyc
│       │       │   │   │   ├── csrf.cpython-39.pyc
│       │       │   │   │   ├── gzip.cpython-39.pyc
│       │       │   │   │   ├── http.cpython-39.pyc
│       │       │   │   │   ├── locale.cpython-39.pyc
│       │       │   │   │   └── security.cpython-39.pyc
│       │       │   │   ├── cache.py
│       │       │   │   ├── clickjacking.py
│       │       │   │   ├── common.py
│       │       │   │   ├── csrf.py
│       │       │   │   ├── gzip.py
│       │       │   │   ├── http.py
│       │       │   │   ├── locale.py
│       │       │   │   └── security.py
│       │       │   ├── shortcuts.py
│       │       │   ├── template
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── autoreload.cpython-39.pyc
│       │       │   │   │   ├── base.cpython-39.pyc
│       │       │   │   │   ├── context.cpython-39.pyc
│       │       │   │   │   ├── context_processors.cpython-39.pyc
│       │       │   │   │   ├── defaultfilters.cpython-39.pyc
│       │       │   │   │   ├── defaulttags.cpython-39.pyc
│       │       │   │   │   ├── engine.cpython-39.pyc
│       │       │   │   │   ├── exceptions.cpython-39.pyc
│       │       │   │   │   ├── library.cpython-39.pyc
│       │       │   │   │   ├── loader.cpython-39.pyc
│       │       │   │   │   ├── loader_tags.cpython-39.pyc
│       │       │   │   │   ├── response.cpython-39.pyc
│       │       │   │   │   ├── smartif.cpython-39.pyc
│       │       │   │   │   └── utils.cpython-39.pyc
│       │       │   │   ├── autoreload.py
│       │       │   │   ├── backends
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── base.py
│       │       │   │   │   ├── django.py
│       │       │   │   │   ├── dummy.py
│       │       │   │   │   ├── jinja2.py
│       │       │   │   │   └── utils.py
│       │       │   │   ├── base.py
│       │       │   │   ├── context.py
│       │       │   │   ├── context_processors.py
│       │       │   │   ├── defaultfilters.py
│       │       │   │   ├── defaulttags.py
│       │       │   │   ├── engine.py
│       │       │   │   ├── exceptions.py
│       │       │   │   ├── library.py
│       │       │   │   ├── loader.py
│       │       │   │   ├── loader_tags.py
│       │       │   │   ├── loaders
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── app_directories.py
│       │       │   │   │   ├── base.py
│       │       │   │   │   ├── cached.py
│       │       │   │   │   ├── filesystem.py
│       │       │   │   │   └── locmem.py
│       │       │   │   ├── response.py
│       │       │   │   ├── smartif.py
│       │       │   │   └── utils.py
│       │       │   ├── templatetags
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── cache.cpython-39.pyc
│       │       │   │   │   ├── i18n.cpython-39.pyc
│       │       │   │   │   ├── l10n.cpython-39.pyc
│       │       │   │   │   ├── static.cpython-39.pyc
│       │       │   │   │   └── tz.cpython-39.pyc
│       │       │   │   ├── cache.py
│       │       │   │   ├── i18n.py
│       │       │   │   ├── l10n.py
│       │       │   │   ├── static.py
│       │       │   │   └── tz.py
│       │       │   ├── test
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── client.cpython-39.pyc
│       │       │   │   │   ├── html.cpython-39.pyc
│       │       │   │   │   ├── runner.cpython-39.pyc
│       │       │   │   │   ├── selenium.cpython-39.pyc
│       │       │   │   │   ├── signals.cpython-39.pyc
│       │       │   │   │   ├── testcases.cpython-39.pyc
│       │       │   │   │   └── utils.cpython-39.pyc
│       │       │   │   ├── client.py
│       │       │   │   ├── html.py
│       │       │   │   ├── runner.py
│       │       │   │   ├── selenium.py
│       │       │   │   ├── signals.py
│       │       │   │   ├── testcases.py
│       │       │   │   └── utils.py
│       │       │   ├── urls
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── base.cpython-39.pyc
│       │       │   │   │   ├── conf.cpython-39.pyc
│       │       │   │   │   ├── converters.cpython-39.pyc
│       │       │   │   │   ├── exceptions.cpython-39.pyc
│       │       │   │   │   ├── resolvers.cpython-39.pyc
│       │       │   │   │   └── utils.cpython-39.pyc
│       │       │   │   ├── base.py
│       │       │   │   ├── conf.py
│       │       │   │   ├── converters.py
│       │       │   │   ├── exceptions.py
│       │       │   │   ├── resolvers.py
│       │       │   │   └── utils.py
│       │       │   ├── utils
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── _os.cpython-39.pyc
│       │       │   │   │   ├── archive.cpython-39.pyc
│       │       │   │   │   ├── asyncio.cpython-39.pyc
│       │       │   │   │   ├── autoreload.cpython-39.pyc
│       │       │   │   │   ├── baseconv.cpython-39.pyc
│       │       │   │   │   ├── cache.cpython-39.pyc
│       │       │   │   │   ├── connection.cpython-39.pyc
│       │       │   │   │   ├── crypto.cpython-39.pyc
│       │       │   │   │   ├── datastructures.cpython-39.pyc
│       │       │   │   │   ├── dateformat.cpython-39.pyc
│       │       │   │   │   ├── dateparse.cpython-39.pyc
│       │       │   │   │   ├── dates.cpython-39.pyc
│       │       │   │   │   ├── datetime_safe.cpython-39.pyc
│       │       │   │   │   ├── deconstruct.cpython-39.pyc
│       │       │   │   │   ├── decorators.cpython-39.pyc
│       │       │   │   │   ├── deprecation.cpython-39.pyc
│       │       │   │   │   ├── duration.cpython-39.pyc
│       │       │   │   │   ├── encoding.cpython-39.pyc
│       │       │   │   │   ├── feedgenerator.cpython-39.pyc
│       │       │   │   │   ├── formats.cpython-39.pyc
│       │       │   │   │   ├── functional.cpython-39.pyc
│       │       │   │   │   ├── hashable.cpython-39.pyc
│       │       │   │   │   ├── html.cpython-39.pyc
│       │       │   │   │   ├── http.cpython-39.pyc
│       │       │   │   │   ├── inspect.cpython-39.pyc
│       │       │   │   │   ├── ipv6.cpython-39.pyc
│       │       │   │   │   ├── itercompat.cpython-39.pyc
│       │       │   │   │   ├── jslex.cpython-39.pyc
│       │       │   │   │   ├── log.cpython-39.pyc
│       │       │   │   │   ├── lorem_ipsum.cpython-39.pyc
│       │       │   │   │   ├── module_loading.cpython-39.pyc
│       │       │   │   │   ├── numberformat.cpython-39.pyc
│       │       │   │   │   ├── regex_helper.cpython-39.pyc
│       │       │   │   │   ├── safestring.cpython-39.pyc
│       │       │   │   │   ├── termcolors.cpython-39.pyc
│       │       │   │   │   ├── text.cpython-39.pyc
│       │       │   │   │   ├── timesince.cpython-39.pyc
│       │       │   │   │   ├── timezone.cpython-39.pyc
│       │       │   │   │   ├── topological_sort.cpython-39.pyc
│       │       │   │   │   ├── tree.cpython-39.pyc
│       │       │   │   │   ├── version.cpython-39.pyc
│       │       │   │   │   └── xmlutils.cpython-39.pyc
│       │       │   │   ├── _os.py
│       │       │   │   ├── archive.py
│       │       │   │   ├── asyncio.py
│       │       │   │   ├── autoreload.py
│       │       │   │   ├── baseconv.py
│       │       │   │   ├── cache.py
│       │       │   │   ├── connection.py
│       │       │   │   ├── crypto.py
│       │       │   │   ├── datastructures.py
│       │       │   │   ├── dateformat.py
│       │       │   │   ├── dateparse.py
│       │       │   │   ├── dates.py
│       │       │   │   ├── datetime_safe.py
│       │       │   │   ├── deconstruct.py
│       │       │   │   ├── decorators.py
│       │       │   │   ├── deprecation.py
│       │       │   │   ├── duration.py
│       │       │   │   ├── encoding.py
│       │       │   │   ├── feedgenerator.py
│       │       │   │   ├── formats.py
│       │       │   │   ├── functional.py
│       │       │   │   ├── hashable.py
│       │       │   │   ├── html.py
│       │       │   │   ├── http.py
│       │       │   │   ├── inspect.py
│       │       │   │   ├── ipv6.py
│       │       │   │   ├── itercompat.py
│       │       │   │   ├── jslex.py
│       │       │   │   ├── log.py
│       │       │   │   ├── lorem_ipsum.py
│       │       │   │   ├── module_loading.py
│       │       │   │   ├── numberformat.py
│       │       │   │   ├── regex_helper.py
│       │       │   │   ├── safestring.py
│       │       │   │   ├── termcolors.py
│       │       │   │   ├── text.py
│       │       │   │   ├── timesince.py
│       │       │   │   ├── timezone.py
│       │       │   │   ├── topological_sort.py
│       │       │   │   ├── translation
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── reloader.py
│       │       │   │   │   ├── template.py
│       │       │   │   │   ├── trans_null.py
│       │       │   │   │   └── trans_real.py
│       │       │   │   ├── tree.py
│       │       │   │   ├── version.py
│       │       │   │   └── xmlutils.py
│       │       │   └── views
│       │       │       ├── __init__.py
│       │       │       ├── __pycache__
│       │       │       │   ├── __init__.cpython-39.pyc
│       │       │       │   ├── csrf.cpython-39.pyc
│       │       │       │   ├── debug.cpython-39.pyc
│       │       │       │   ├── defaults.cpython-39.pyc
│       │       │       │   ├── i18n.cpython-39.pyc
│       │       │       │   └── static.cpython-39.pyc
│       │       │       ├── csrf.py
│       │       │       ├── debug.py
│       │       │       ├── decorators
│       │       │       │   ├── __init__.py
│       │       │       │   ├── __pycache__
│       │       │       │   ├── cache.py
│       │       │       │   ├── clickjacking.py
│       │       │       │   ├── common.py
│       │       │       │   ├── csrf.py
│       │       │       │   ├── debug.py
│       │       │       │   ├── gzip.py
│       │       │       │   ├── http.py
│       │       │       │   └── vary.py
│       │       │       ├── defaults.py
│       │       │       ├── generic
│       │       │       │   ├── __init__.py
│       │       │       │   ├── __pycache__
│       │       │       │   ├── base.py
│       │       │       │   ├── dates.py
│       │       │       │   ├── detail.py
│       │       │       │   ├── edit.py
│       │       │       │   └── list.py
│       │       │       ├── i18n.py
│       │       │       ├── static.py
│       │       │       └── templates
│       │       │           ├── default_urlconf.html
│       │       │           ├── technical_404.html
│       │       │           ├── technical_500.html
│       │       │           └── technical_500.txt
│       │       ├── mysqlclient-2.1.0.dist-info
│       │       │   ├── INSTALLER
│       │       │   ├── LICENSE
│       │       │   ├── METADATA
│       │       │   ├── RECORD
│       │       │   ├── REQUESTED
│       │       │   ├── WHEEL
│       │       │   └── top_level.txt
│       │       ├── pip
│       │       │   ├── __init__.py
│       │       │   ├── __main__.py
│       │       │   ├── __pycache__
│       │       │   │   ├── __init__.cpython-39.pyc
│       │       │   │   └── __main__.cpython-39.pyc
│       │       │   ├── _internal
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── build_env.cpython-39.pyc
│       │       │   │   │   ├── cache.cpython-39.pyc
│       │       │   │   │   ├── configuration.cpython-39.pyc
│       │       │   │   │   ├── exceptions.cpython-39.pyc
│       │       │   │   │   ├── main.cpython-39.pyc
│       │       │   │   │   ├── pyproject.cpython-39.pyc
│       │       │   │   │   ├── self_outdated_check.cpython-39.pyc
│       │       │   │   │   └── wheel_builder.cpython-39.pyc
│       │       │   │   ├── build_env.py
│       │       │   │   ├── cache.py
│       │       │   │   ├── cli
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── autocompletion.py
│       │       │   │   │   ├── base_command.py
│       │       │   │   │   ├── cmdoptions.py
│       │       │   │   │   ├── command_context.py
│       │       │   │   │   ├── main.py
│       │       │   │   │   ├── main_parser.py
│       │       │   │   │   ├── parser.py
│       │       │   │   │   ├── progress_bars.py
│       │       │   │   │   ├── req_command.py
│       │       │   │   │   ├── spinners.py
│       │       │   │   │   └── status_codes.py
│       │       │   │   ├── commands
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── cache.py
│       │       │   │   │   ├── check.py
│       │       │   │   │   ├── completion.py
│       │       │   │   │   ├── configuration.py
│       │       │   │   │   ├── debug.py
│       │       │   │   │   ├── download.py
│       │       │   │   │   ├── freeze.py
│       │       │   │   │   ├── hash.py
│       │       │   │   │   ├── help.py
│       │       │   │   │   ├── index.py
│       │       │   │   │   ├── install.py
│       │       │   │   │   ├── list.py
│       │       │   │   │   ├── search.py
│       │       │   │   │   ├── show.py
│       │       │   │   │   ├── uninstall.py
│       │       │   │   │   └── wheel.py
│       │       │   │   ├── configuration.py
│       │       │   │   ├── distributions
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── base.py
│       │       │   │   │   ├── installed.py
│       │       │   │   │   ├── sdist.py
│       │       │   │   │   └── wheel.py
│       │       │   │   ├── exceptions.py
│       │       │   │   ├── index
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── collector.py
│       │       │   │   │   ├── package_finder.py
│       │       │   │   │   └── sources.py
│       │       │   │   ├── locations
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _distutils.py
│       │       │   │   │   ├── _sysconfig.py
│       │       │   │   │   └── base.py
│       │       │   │   ├── main.py
│       │       │   │   ├── metadata
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── base.py
│       │       │   │   │   └── pkg_resources.py
│       │       │   │   ├── models
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── candidate.py
│       │       │   │   │   ├── direct_url.py
│       │       │   │   │   ├── format_control.py
│       │       │   │   │   ├── index.py
│       │       │   │   │   ├── link.py
│       │       │   │   │   ├── scheme.py
│       │       │   │   │   ├── search_scope.py
│       │       │   │   │   ├── selection_prefs.py
│       │       │   │   │   ├── target_python.py
│       │       │   │   │   └── wheel.py
│       │       │   │   ├── network
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── auth.py
│       │       │   │   │   ├── cache.py
│       │       │   │   │   ├── download.py
│       │       │   │   │   ├── lazy_wheel.py
│       │       │   │   │   ├── session.py
│       │       │   │   │   ├── utils.py
│       │       │   │   │   └── xmlrpc.py
│       │       │   │   ├── operations
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── build
│       │       │   │   │   ├── check.py
│       │       │   │   │   ├── freeze.py
│       │       │   │   │   ├── install
│       │       │   │   │   └── prepare.py
│       │       │   │   ├── pyproject.py
│       │       │   │   ├── req
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── constructors.py
│       │       │   │   │   ├── req_file.py
│       │       │   │   │   ├── req_install.py
│       │       │   │   │   ├── req_set.py
│       │       │   │   │   ├── req_tracker.py
│       │       │   │   │   └── req_uninstall.py
│       │       │   │   ├── resolution
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── base.py
│       │       │   │   │   ├── legacy
│       │       │   │   │   └── resolvelib
│       │       │   │   ├── self_outdated_check.py
│       │       │   │   ├── utils
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _log.py
│       │       │   │   │   ├── appdirs.py
│       │       │   │   │   ├── compat.py
│       │       │   │   │   ├── compatibility_tags.py
│       │       │   │   │   ├── datetime.py
│       │       │   │   │   ├── deprecation.py
│       │       │   │   │   ├── direct_url_helpers.py
│       │       │   │   │   ├── distutils_args.py
│       │       │   │   │   ├── egg_link.py
│       │       │   │   │   ├── encoding.py
│       │       │   │   │   ├── entrypoints.py
│       │       │   │   │   ├── filesystem.py
│       │       │   │   │   ├── filetypes.py
│       │       │   │   │   ├── glibc.py
│       │       │   │   │   ├── hashes.py
│       │       │   │   │   ├── inject_securetransport.py
│       │       │   │   │   ├── logging.py
│       │       │   │   │   ├── misc.py
│       │       │   │   │   ├── models.py
│       │       │   │   │   ├── packaging.py
│       │       │   │   │   ├── parallel.py
│       │       │   │   │   ├── pkg_resources.py
│       │       │   │   │   ├── setuptools_build.py
│       │       │   │   │   ├── subprocess.py
│       │       │   │   │   ├── temp_dir.py
│       │       │   │   │   ├── unpacking.py
│       │       │   │   │   ├── urls.py
│       │       │   │   │   ├── virtualenv.py
│       │       │   │   │   └── wheel.py
│       │       │   │   ├── vcs
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── bazaar.py
│       │       │   │   │   ├── git.py
│       │       │   │   │   ├── mercurial.py
│       │       │   │   │   ├── subversion.py
│       │       │   │   │   └── versioncontrol.py
│       │       │   │   └── wheel_builder.py
│       │       │   ├── _vendor
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── distro.cpython-39.pyc
│       │       │   │   │   ├── pyparsing.cpython-39.pyc
│       │       │   │   │   └── six.cpython-39.pyc
│       │       │   │   ├── cachecontrol
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _cmd.py
│       │       │   │   │   ├── adapter.py
│       │       │   │   │   ├── cache.py
│       │       │   │   │   ├── caches
│       │       │   │   │   ├── compat.py
│       │       │   │   │   ├── controller.py
│       │       │   │   │   ├── filewrapper.py
│       │       │   │   │   ├── heuristics.py
│       │       │   │   │   ├── serialize.py
│       │       │   │   │   └── wrapper.py
│       │       │   │   ├── certifi
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __main__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── cacert.pem
│       │       │   │   │   └── core.py
│       │       │   │   ├── chardet
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── big5freq.py
│       │       │   │   │   ├── big5prober.py
│       │       │   │   │   ├── chardistribution.py
│       │       │   │   │   ├── charsetgroupprober.py
│       │       │   │   │   ├── charsetprober.py
│       │       │   │   │   ├── cli
│       │       │   │   │   ├── codingstatemachine.py
│       │       │   │   │   ├── compat.py
│       │       │   │   │   ├── cp949prober.py
│       │       │   │   │   ├── enums.py
│       │       │   │   │   ├── escprober.py
│       │       │   │   │   ├── escsm.py
│       │       │   │   │   ├── eucjpprober.py
│       │       │   │   │   ├── euckrfreq.py
│       │       │   │   │   ├── euckrprober.py
│       │       │   │   │   ├── euctwfreq.py
│       │       │   │   │   ├── euctwprober.py
│       │       │   │   │   ├── gb2312freq.py
│       │       │   │   │   ├── gb2312prober.py
│       │       │   │   │   ├── hebrewprober.py
│       │       │   │   │   ├── jisfreq.py
│       │       │   │   │   ├── jpcntx.py
│       │       │   │   │   ├── langbulgarianmodel.py
│       │       │   │   │   ├── langgreekmodel.py
│       │       │   │   │   ├── langhebrewmodel.py
│       │       │   │   │   ├── langhungarianmodel.py
│       │       │   │   │   ├── langrussianmodel.py
│       │       │   │   │   ├── langthaimodel.py
│       │       │   │   │   ├── langturkishmodel.py
│       │       │   │   │   ├── latin1prober.py
│       │       │   │   │   ├── mbcharsetprober.py
│       │       │   │   │   ├── mbcsgroupprober.py
│       │       │   │   │   ├── mbcssm.py
│       │       │   │   │   ├── metadata
│       │       │   │   │   ├── sbcharsetprober.py
│       │       │   │   │   ├── sbcsgroupprober.py
│       │       │   │   │   ├── sjisprober.py
│       │       │   │   │   ├── universaldetector.py
│       │       │   │   │   ├── utf8prober.py
│       │       │   │   │   └── version.py
│       │       │   │   ├── colorama
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── ansi.py
│       │       │   │   │   ├── ansitowin32.py
│       │       │   │   │   ├── initialise.py
│       │       │   │   │   ├── win32.py
│       │       │   │   │   └── winterm.py
│       │       │   │   ├── distlib
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _backport
│       │       │   │   │   ├── compat.py
│       │       │   │   │   ├── database.py
│       │       │   │   │   ├── index.py
│       │       │   │   │   ├── locators.py
│       │       │   │   │   ├── manifest.py
│       │       │   │   │   ├── markers.py
│       │       │   │   │   ├── metadata.py
│       │       │   │   │   ├── resources.py
│       │       │   │   │   ├── scripts.py
│       │       │   │   │   ├── t32.exe
│       │       │   │   │   ├── t64-arm.exe
│       │       │   │   │   ├── t64.exe
│       │       │   │   │   ├── util.py
│       │       │   │   │   ├── version.py
│       │       │   │   │   ├── w32.exe
│       │       │   │   │   ├── w64-arm.exe
│       │       │   │   │   ├── w64.exe
│       │       │   │   │   └── wheel.py
│       │       │   │   ├── distro.py
│       │       │   │   ├── html5lib
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _ihatexml.py
│       │       │   │   │   ├── _inputstream.py
│       │       │   │   │   ├── _tokenizer.py
│       │       │   │   │   ├── _trie
│       │       │   │   │   ├── _utils.py
│       │       │   │   │   ├── constants.py
│       │       │   │   │   ├── filters
│       │       │   │   │   ├── html5parser.py
│       │       │   │   │   ├── serializer.py
│       │       │   │   │   ├── treeadapters
│       │       │   │   │   ├── treebuilders
│       │       │   │   │   └── treewalkers
│       │       │   │   ├── idna
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── codec.py
│       │       │   │   │   ├── compat.py
│       │       │   │   │   ├── core.py
│       │       │   │   │   ├── idnadata.py
│       │       │   │   │   ├── intranges.py
│       │       │   │   │   ├── package_data.py
│       │       │   │   │   └── uts46data.py
│       │       │   │   ├── msgpack
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _version.py
│       │       │   │   │   ├── exceptions.py
│       │       │   │   │   ├── ext.py
│       │       │   │   │   └── fallback.py
│       │       │   │   ├── packaging
│       │       │   │   │   ├── __about__.py
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _manylinux.py
│       │       │   │   │   ├── _musllinux.py
│       │       │   │   │   ├── _structures.py
│       │       │   │   │   ├── markers.py
│       │       │   │   │   ├── requirements.py
│       │       │   │   │   ├── specifiers.py
│       │       │   │   │   ├── tags.py
│       │       │   │   │   ├── utils.py
│       │       │   │   │   └── version.py
│       │       │   │   ├── pep517
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── build.py
│       │       │   │   │   ├── check.py
│       │       │   │   │   ├── colorlog.py
│       │       │   │   │   ├── compat.py
│       │       │   │   │   ├── dirtools.py
│       │       │   │   │   ├── envbuild.py
│       │       │   │   │   ├── in_process
│       │       │   │   │   ├── meta.py
│       │       │   │   │   └── wrappers.py
│       │       │   │   ├── pkg_resources
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   └── py31compat.py
│       │       │   │   ├── platformdirs
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __main__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── android.py
│       │       │   │   │   ├── api.py
│       │       │   │   │   ├── macos.py
│       │       │   │   │   ├── unix.py
│       │       │   │   │   ├── version.py
│       │       │   │   │   └── windows.py
│       │       │   │   ├── progress
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── bar.py
│       │       │   │   │   ├── colors.py
│       │       │   │   │   ├── counter.py
│       │       │   │   │   └── spinner.py
│       │       │   │   ├── pyparsing.py
│       │       │   │   ├── requests
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── __version__.py
│       │       │   │   │   ├── _internal_utils.py
│       │       │   │   │   ├── adapters.py
│       │       │   │   │   ├── api.py
│       │       │   │   │   ├── auth.py
│       │       │   │   │   ├── certs.py
│       │       │   │   │   ├── compat.py
│       │       │   │   │   ├── cookies.py
│       │       │   │   │   ├── exceptions.py
│       │       │   │   │   ├── help.py
│       │       │   │   │   ├── hooks.py
│       │       │   │   │   ├── models.py
│       │       │   │   │   ├── packages.py
│       │       │   │   │   ├── sessions.py
│       │       │   │   │   ├── status_codes.py
│       │       │   │   │   ├── structures.py
│       │       │   │   │   └── utils.py
│       │       │   │   ├── resolvelib
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── compat
│       │       │   │   │   ├── providers.py
│       │       │   │   │   ├── reporters.py
│       │       │   │   │   ├── resolvers.py
│       │       │   │   │   └── structs.py
│       │       │   │   ├── six.py
│       │       │   │   ├── tenacity
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _asyncio.py
│       │       │   │   │   ├── _utils.py
│       │       │   │   │   ├── after.py
│       │       │   │   │   ├── before.py
│       │       │   │   │   ├── before_sleep.py
│       │       │   │   │   ├── nap.py
│       │       │   │   │   ├── retry.py
│       │       │   │   │   ├── stop.py
│       │       │   │   │   ├── tornadoweb.py
│       │       │   │   │   └── wait.py
│       │       │   │   ├── tomli
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _parser.py
│       │       │   │   │   └── _re.py
│       │       │   │   ├── urllib3
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _collections.py
│       │       │   │   │   ├── _version.py
│       │       │   │   │   ├── connection.py
│       │       │   │   │   ├── connectionpool.py
│       │       │   │   │   ├── contrib
│       │       │   │   │   ├── exceptions.py
│       │       │   │   │   ├── fields.py
│       │       │   │   │   ├── filepost.py
│       │       │   │   │   ├── packages
│       │       │   │   │   ├── poolmanager.py
│       │       │   │   │   ├── request.py
│       │       │   │   │   ├── response.py
│       │       │   │   │   └── util
│       │       │   │   ├── vendor.txt
│       │       │   │   └── webencodings
│       │       │   │       ├── __init__.py
│       │       │   │       ├── __pycache__
│       │       │   │       ├── labels.py
│       │       │   │       ├── mklabels.py
│       │       │   │       ├── tests.py
│       │       │   │       └── x_user_defined.py
│       │       │   └── py.typed
│       │       ├── pip-21.3.1.dist-info
│       │       │   ├── INSTALLER
│       │       │   ├── LICENSE.txt
│       │       │   ├── METADATA
│       │       │   ├── RECORD
│       │       │   ├── WHEEL
│       │       │   ├── entry_points.txt
│       │       │   └── top_level.txt
│       │       ├── pkg_resources
│       │       │   ├── __init__.py
│       │       │   ├── __pycache__
│       │       │   │   └── __init__.cpython-39.pyc
│       │       │   ├── _vendor
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── appdirs.cpython-39.pyc
│       │       │   │   │   └── pyparsing.cpython-39.pyc
│       │       │   │   ├── appdirs.py
│       │       │   │   ├── packaging
│       │       │   │   │   ├── __about__.py
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _manylinux.py
│       │       │   │   │   ├── _musllinux.py
│       │       │   │   │   ├── _structures.py
│       │       │   │   │   ├── markers.py
│       │       │   │   │   ├── requirements.py
│       │       │   │   │   ├── specifiers.py
│       │       │   │   │   ├── tags.py
│       │       │   │   │   ├── utils.py
│       │       │   │   │   └── version.py
│       │       │   │   └── pyparsing.py
│       │       │   ├── extern
│       │       │   │   ├── __init__.py
│       │       │   │   └── __pycache__
│       │       │   │       └── __init__.cpython-39.pyc
│       │       │   └── tests
│       │       │       └── data
│       │       │           └── my-test-package-source
│       │       ├── setuptools
│       │       │   ├── __init__.py
│       │       │   ├── __pycache__
│       │       │   │   ├── __init__.cpython-39.pyc
│       │       │   │   ├── _deprecation_warning.cpython-39.pyc
│       │       │   │   ├── _imp.cpython-39.pyc
│       │       │   │   ├── archive_util.cpython-39.pyc
│       │       │   │   ├── build_meta.cpython-39.pyc
│       │       │   │   ├── config.cpython-39.pyc
│       │       │   │   ├── dep_util.cpython-39.pyc
│       │       │   │   ├── depends.cpython-39.pyc
│       │       │   │   ├── dist.cpython-39.pyc
│       │       │   │   ├── errors.cpython-39.pyc
│       │       │   │   ├── extension.cpython-39.pyc
│       │       │   │   ├── glob.cpython-39.pyc
│       │       │   │   ├── installer.cpython-39.pyc
│       │       │   │   ├── launch.cpython-39.pyc
│       │       │   │   ├── monkey.cpython-39.pyc
│       │       │   │   ├── msvc.cpython-39.pyc
│       │       │   │   ├── namespaces.cpython-39.pyc
│       │       │   │   ├── package_index.cpython-39.pyc
│       │       │   │   ├── py34compat.cpython-39.pyc
│       │       │   │   ├── sandbox.cpython-39.pyc
│       │       │   │   ├── unicode_utils.cpython-39.pyc
│       │       │   │   ├── version.cpython-39.pyc
│       │       │   │   ├── wheel.cpython-39.pyc
│       │       │   │   └── windows_support.cpython-39.pyc
│       │       │   ├── _deprecation_warning.py
│       │       │   ├── _distutils
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── _msvccompiler.cpython-39.pyc
│       │       │   │   │   ├── archive_util.cpython-39.pyc
│       │       │   │   │   ├── bcppcompiler.cpython-39.pyc
│       │       │   │   │   ├── ccompiler.cpython-39.pyc
│       │       │   │   │   ├── cmd.cpython-39.pyc
│       │       │   │   │   ├── config.cpython-39.pyc
│       │       │   │   │   ├── core.cpython-39.pyc
│       │       │   │   │   ├── cygwinccompiler.cpython-39.pyc
│       │       │   │   │   ├── debug.cpython-39.pyc
│       │       │   │   │   ├── dep_util.cpython-39.pyc
│       │       │   │   │   ├── dir_util.cpython-39.pyc
│       │       │   │   │   ├── dist.cpython-39.pyc
│       │       │   │   │   ├── errors.cpython-39.pyc
│       │       │   │   │   ├── extension.cpython-39.pyc
│       │       │   │   │   ├── fancy_getopt.cpython-39.pyc
│       │       │   │   │   ├── file_util.cpython-39.pyc
│       │       │   │   │   ├── filelist.cpython-39.pyc
│       │       │   │   │   ├── log.cpython-39.pyc
│       │       │   │   │   ├── msvc9compiler.cpython-39.pyc
│       │       │   │   │   ├── msvccompiler.cpython-39.pyc
│       │       │   │   │   ├── py35compat.cpython-39.pyc
│       │       │   │   │   ├── py38compat.cpython-39.pyc
│       │       │   │   │   ├── spawn.cpython-39.pyc
│       │       │   │   │   ├── sysconfig.cpython-39.pyc
│       │       │   │   │   ├── text_file.cpython-39.pyc
│       │       │   │   │   ├── unixccompiler.cpython-39.pyc
│       │       │   │   │   ├── util.cpython-39.pyc
│       │       │   │   │   ├── version.cpython-39.pyc
│       │       │   │   │   └── versionpredicate.cpython-39.pyc
│       │       │   │   ├── _msvccompiler.py
│       │       │   │   ├── archive_util.py
│       │       │   │   ├── bcppcompiler.py
│       │       │   │   ├── ccompiler.py
│       │       │   │   ├── cmd.py
│       │       │   │   ├── command
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── bdist.py
│       │       │   │   │   ├── bdist_dumb.py
│       │       │   │   │   ├── bdist_msi.py
│       │       │   │   │   ├── bdist_rpm.py
│       │       │   │   │   ├── bdist_wininst.py
│       │       │   │   │   ├── build.py
│       │       │   │   │   ├── build_clib.py
│       │       │   │   │   ├── build_ext.py
│       │       │   │   │   ├── build_py.py
│       │       │   │   │   ├── build_scripts.py
│       │       │   │   │   ├── check.py
│       │       │   │   │   ├── clean.py
│       │       │   │   │   ├── config.py
│       │       │   │   │   ├── install.py
│       │       │   │   │   ├── install_data.py
│       │       │   │   │   ├── install_egg_info.py
│       │       │   │   │   ├── install_headers.py
│       │       │   │   │   ├── install_lib.py
│       │       │   │   │   ├── install_scripts.py
│       │       │   │   │   ├── py37compat.py
│       │       │   │   │   ├── register.py
│       │       │   │   │   ├── sdist.py
│       │       │   │   │   └── upload.py
│       │       │   │   ├── config.py
│       │       │   │   ├── core.py
│       │       │   │   ├── cygwinccompiler.py
│       │       │   │   ├── debug.py
│       │       │   │   ├── dep_util.py
│       │       │   │   ├── dir_util.py
│       │       │   │   ├── dist.py
│       │       │   │   ├── errors.py
│       │       │   │   ├── extension.py
│       │       │   │   ├── fancy_getopt.py
│       │       │   │   ├── file_util.py
│       │       │   │   ├── filelist.py
│       │       │   │   ├── log.py
│       │       │   │   ├── msvc9compiler.py
│       │       │   │   ├── msvccompiler.py
│       │       │   │   ├── py35compat.py
│       │       │   │   ├── py38compat.py
│       │       │   │   ├── spawn.py
│       │       │   │   ├── sysconfig.py
│       │       │   │   ├── text_file.py
│       │       │   │   ├── unixccompiler.py
│       │       │   │   ├── util.py
│       │       │   │   ├── version.py
│       │       │   │   └── versionpredicate.py
│       │       │   ├── _imp.py
│       │       │   ├── _vendor
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── ordered_set.cpython-39.pyc
│       │       │   │   │   └── pyparsing.cpython-39.pyc
│       │       │   │   ├── more_itertools
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── more.py
│       │       │   │   │   └── recipes.py
│       │       │   │   ├── ordered_set.py
│       │       │   │   ├── packaging
│       │       │   │   │   ├── __about__.py
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   ├── __pycache__
│       │       │   │   │   ├── _manylinux.py
│       │       │   │   │   ├── _musllinux.py
│       │       │   │   │   ├── _structures.py
│       │       │   │   │   ├── markers.py
│       │       │   │   │   ├── requirements.py
│       │       │   │   │   ├── specifiers.py
│       │       │   │   │   ├── tags.py
│       │       │   │   │   ├── utils.py
│       │       │   │   │   └── version.py
│       │       │   │   └── pyparsing.py
│       │       │   ├── archive_util.py
│       │       │   ├── build_meta.py
│       │       │   ├── cli-32.exe
│       │       │   ├── cli-64.exe
│       │       │   ├── cli-arm64.exe
│       │       │   ├── cli.exe
│       │       │   ├── command
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── alias.cpython-39.pyc
│       │       │   │   │   ├── bdist_egg.cpython-39.pyc
│       │       │   │   │   ├── bdist_rpm.cpython-39.pyc
│       │       │   │   │   ├── build_clib.cpython-39.pyc
│       │       │   │   │   ├── build_ext.cpython-39.pyc
│       │       │   │   │   ├── build_py.cpython-39.pyc
│       │       │   │   │   ├── develop.cpython-39.pyc
│       │       │   │   │   ├── dist_info.cpython-39.pyc
│       │       │   │   │   ├── easy_install.cpython-39.pyc
│       │       │   │   │   ├── egg_info.cpython-39.pyc
│       │       │   │   │   ├── install.cpython-39.pyc
│       │       │   │   │   ├── install_egg_info.cpython-39.pyc
│       │       │   │   │   ├── install_lib.cpython-39.pyc
│       │       │   │   │   ├── install_scripts.cpython-39.pyc
│       │       │   │   │   ├── py36compat.cpython-39.pyc
│       │       │   │   │   ├── register.cpython-39.pyc
│       │       │   │   │   ├── rotate.cpython-39.pyc
│       │       │   │   │   ├── saveopts.cpython-39.pyc
│       │       │   │   │   ├── sdist.cpython-39.pyc
│       │       │   │   │   ├── setopt.cpython-39.pyc
│       │       │   │   │   ├── test.cpython-39.pyc
│       │       │   │   │   ├── upload.cpython-39.pyc
│       │       │   │   │   └── upload_docs.cpython-39.pyc
│       │       │   │   ├── alias.py
│       │       │   │   ├── bdist_egg.py
│       │       │   │   ├── bdist_rpm.py
│       │       │   │   ├── build_clib.py
│       │       │   │   ├── build_ext.py
│       │       │   │   ├── build_py.py
│       │       │   │   ├── develop.py
│       │       │   │   ├── dist_info.py
│       │       │   │   ├── easy_install.py
│       │       │   │   ├── egg_info.py
│       │       │   │   ├── install.py
│       │       │   │   ├── install_egg_info.py
│       │       │   │   ├── install_lib.py
│       │       │   │   ├── install_scripts.py
│       │       │   │   ├── launcher manifest.xml
│       │       │   │   ├── py36compat.py
│       │       │   │   ├── register.py
│       │       │   │   ├── rotate.py
│       │       │   │   ├── saveopts.py
│       │       │   │   ├── sdist.py
│       │       │   │   ├── setopt.py
│       │       │   │   ├── test.py
│       │       │   │   ├── upload.py
│       │       │   │   └── upload_docs.py
│       │       │   ├── config.py
│       │       │   ├── dep_util.py
│       │       │   ├── depends.py
│       │       │   ├── dist.py
│       │       │   ├── errors.py
│       │       │   ├── extension.py
│       │       │   ├── extern
│       │       │   │   ├── __init__.py
│       │       │   │   └── __pycache__
│       │       │   │       └── __init__.cpython-39.pyc
│       │       │   ├── glob.py
│       │       │   ├── gui-32.exe
│       │       │   ├── gui-64.exe
│       │       │   ├── gui-arm64.exe
│       │       │   ├── gui.exe
│       │       │   ├── installer.py
│       │       │   ├── launch.py
│       │       │   ├── monkey.py
│       │       │   ├── msvc.py
│       │       │   ├── namespaces.py
│       │       │   ├── package_index.py
│       │       │   ├── py34compat.py
│       │       │   ├── sandbox.py
│       │       │   ├── script (dev).tmpl
│       │       │   ├── script.tmpl
│       │       │   ├── unicode_utils.py
│       │       │   ├── version.py
│       │       │   ├── wheel.py
│       │       │   └── windows_support.py
│       │       ├── setuptools-60.0.0.dist-info
│       │       │   ├── INSTALLER
│       │       │   ├── LICENSE
│       │       │   ├── METADATA
│       │       │   ├── RECORD
│       │       │   ├── WHEEL
│       │       │   ├── entry_points.txt
│       │       │   └── top_level.txt
│       │       ├── sqlparse
│       │       │   ├── __init__.py
│       │       │   ├── __main__.py
│       │       │   ├── __pycache__
│       │       │   │   ├── __init__.cpython-39.pyc
│       │       │   │   ├── __main__.cpython-39.pyc
│       │       │   │   ├── cli.cpython-39.pyc
│       │       │   │   ├── compat.cpython-39.pyc
│       │       │   │   ├── exceptions.cpython-39.pyc
│       │       │   │   ├── formatter.cpython-39.pyc
│       │       │   │   ├── keywords.cpython-39.pyc
│       │       │   │   ├── lexer.cpython-39.pyc
│       │       │   │   ├── sql.cpython-39.pyc
│       │       │   │   ├── tokens.cpython-39.pyc
│       │       │   │   └── utils.cpython-39.pyc
│       │       │   ├── cli.py
│       │       │   ├── compat.py
│       │       │   ├── engine
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── filter_stack.cpython-39.pyc
│       │       │   │   │   ├── grouping.cpython-39.pyc
│       │       │   │   │   └── statement_splitter.cpython-39.pyc
│       │       │   │   ├── filter_stack.py
│       │       │   │   ├── grouping.py
│       │       │   │   └── statement_splitter.py
│       │       │   ├── exceptions.py
│       │       │   ├── filters
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   ├── __init__.cpython-39.pyc
│       │       │   │   │   ├── aligned_indent.cpython-39.pyc
│       │       │   │   │   ├── others.cpython-39.pyc
│       │       │   │   │   ├── output.cpython-39.pyc
│       │       │   │   │   ├── reindent.cpython-39.pyc
│       │       │   │   │   ├── right_margin.cpython-39.pyc
│       │       │   │   │   └── tokens.cpython-39.pyc
│       │       │   │   ├── aligned_indent.py
│       │       │   │   ├── others.py
│       │       │   │   ├── output.py
│       │       │   │   ├── reindent.py
│       │       │   │   ├── right_margin.py
│       │       │   │   └── tokens.py
│       │       │   ├── formatter.py
│       │       │   ├── keywords.py
│       │       │   ├── lexer.py
│       │       │   ├── sql.py
│       │       │   ├── tokens.py
│       │       │   └── utils.py
│       │       ├── sqlparse-0.4.2.dist-info
│       │       │   ├── AUTHORS
│       │       │   ├── INSTALLER
│       │       │   ├── LICENSE
│       │       │   ├── METADATA
│       │       │   ├── RECORD
│       │       │   ├── WHEEL
│       │       │   ├── entry_points.txt
│       │       │   └── top_level.txt
│       │       ├── tzdata
│       │       │   ├── __init__.py
│       │       │   ├── __pycache__
│       │       │   │   └── __init__.cpython-39.pyc
│       │       │   ├── zoneinfo
│       │       │   │   ├── Africa
│       │       │   │   │   ├── Abidjan
│       │       │   │   │   ├── Accra
│       │       │   │   │   ├── Addis_Ababa
│       │       │   │   │   ├── Algiers
│       │       │   │   │   ├── Asmara
│       │       │   │   │   ├── Asmera
│       │       │   │   │   ├── Bamako
│       │       │   │   │   ├── Bangui
│       │       │   │   │   ├── Banjul
│       │       │   │   │   ├── Bissau
│       │       │   │   │   ├── Blantyre
│       │       │   │   │   ├── Brazzaville
│       │       │   │   │   ├── Bujumbura
│       │       │   │   │   ├── Cairo
│       │       │   │   │   ├── Casablanca
│       │       │   │   │   ├── Ceuta
│       │       │   │   │   ├── Conakry
│       │       │   │   │   ├── Dakar
│       │       │   │   │   ├── Dar_es_Salaam
│       │       │   │   │   ├── Djibouti
│       │       │   │   │   ├── Douala
│       │       │   │   │   ├── El_Aaiun
│       │       │   │   │   ├── Freetown
│       │       │   │   │   ├── Gaborone
│       │       │   │   │   ├── Harare
│       │       │   │   │   ├── Johannesburg
│       │       │   │   │   ├── Juba
│       │       │   │   │   ├── Kampala
│       │       │   │   │   ├── Khartoum
│       │       │   │   │   ├── Kigali
│       │       │   │   │   ├── Kinshasa
│       │       │   │   │   ├── Lagos
│       │       │   │   │   ├── Libreville
│       │       │   │   │   ├── Lome
│       │       │   │   │   ├── Luanda
│       │       │   │   │   ├── Lubumbashi
│       │       │   │   │   ├── Lusaka
│       │       │   │   │   ├── Malabo
│       │       │   │   │   ├── Maputo
│       │       │   │   │   ├── Maseru
│       │       │   │   │   ├── Mbabane
│       │       │   │   │   ├── Mogadishu
│       │       │   │   │   ├── Monrovia
│       │       │   │   │   ├── Nairobi
│       │       │   │   │   ├── Ndjamena
│       │       │   │   │   ├── Niamey
│       │       │   │   │   ├── Nouakchott
│       │       │   │   │   ├── Ouagadougou
│       │       │   │   │   ├── Porto-Novo
│       │       │   │   │   ├── Sao_Tome
│       │       │   │   │   ├── Timbuktu
│       │       │   │   │   ├── Tripoli
│       │       │   │   │   ├── Tunis
│       │       │   │   │   ├── Windhoek
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── America
│       │       │   │   │   ├── Adak
│       │       │   │   │   ├── Anchorage
│       │       │   │   │   ├── Anguilla
│       │       │   │   │   ├── Antigua
│       │       │   │   │   ├── Araguaina
│       │       │   │   │   ├── Argentina
│       │       │   │   │   ├── Aruba
│       │       │   │   │   ├── Asuncion
│       │       │   │   │   ├── Atikokan
│       │       │   │   │   ├── Atka
│       │       │   │   │   ├── Bahia
│       │       │   │   │   ├── Bahia_Banderas
│       │       │   │   │   ├── Barbados
│       │       │   │   │   ├── Belem
│       │       │   │   │   ├── Belize
│       │       │   │   │   ├── Blanc-Sablon
│       │       │   │   │   ├── Boa_Vista
│       │       │   │   │   ├── Bogota
│       │       │   │   │   ├── Boise
│       │       │   │   │   ├── Buenos_Aires
│       │       │   │   │   ├── Cambridge_Bay
│       │       │   │   │   ├── Campo_Grande
│       │       │   │   │   ├── Cancun
│       │       │   │   │   ├── Caracas
│       │       │   │   │   ├── Catamarca
│       │       │   │   │   ├── Cayenne
│       │       │   │   │   ├── Cayman
│       │       │   │   │   ├── Chicago
│       │       │   │   │   ├── Chihuahua
│       │       │   │   │   ├── Coral_Harbour
│       │       │   │   │   ├── Cordoba
│       │       │   │   │   ├── Costa_Rica
│       │       │   │   │   ├── Creston
│       │       │   │   │   ├── Cuiaba
│       │       │   │   │   ├── Curacao
│       │       │   │   │   ├── Danmarkshavn
│       │       │   │   │   ├── Dawson
│       │       │   │   │   ├── Dawson_Creek
│       │       │   │   │   ├── Denver
│       │       │   │   │   ├── Detroit
│       │       │   │   │   ├── Dominica
│       │       │   │   │   ├── Edmonton
│       │       │   │   │   ├── Eirunepe
│       │       │   │   │   ├── El_Salvador
│       │       │   │   │   ├── Ensenada
│       │       │   │   │   ├── Fort_Nelson
│       │       │   │   │   ├── Fort_Wayne
│       │       │   │   │   ├── Fortaleza
│       │       │   │   │   ├── Glace_Bay
│       │       │   │   │   ├── Godthab
│       │       │   │   │   ├── Goose_Bay
│       │       │   │   │   ├── Grand_Turk
│       │       │   │   │   ├── Grenada
│       │       │   │   │   ├── Guadeloupe
│       │       │   │   │   ├── Guatemala
│       │       │   │   │   ├── Guayaquil
│       │       │   │   │   ├── Guyana
│       │       │   │   │   ├── Halifax
│       │       │   │   │   ├── Havana
│       │       │   │   │   ├── Hermosillo
│       │       │   │   │   ├── Indiana
│       │       │   │   │   ├── Indianapolis
│       │       │   │   │   ├── Inuvik
│       │       │   │   │   ├── Iqaluit
│       │       │   │   │   ├── Jamaica
│       │       │   │   │   ├── Jujuy
│       │       │   │   │   ├── Juneau
│       │       │   │   │   ├── Kentucky
│       │       │   │   │   ├── Knox_IN
│       │       │   │   │   ├── Kralendijk
│       │       │   │   │   ├── La_Paz
│       │       │   │   │   ├── Lima
│       │       │   │   │   ├── Los_Angeles
│       │       │   │   │   ├── Louisville
│       │       │   │   │   ├── Lower_Princes
│       │       │   │   │   ├── Maceio
│       │       │   │   │   ├── Managua
│       │       │   │   │   ├── Manaus
│       │       │   │   │   ├── Marigot
│       │       │   │   │   ├── Martinique
│       │       │   │   │   ├── Matamoros
│       │       │   │   │   ├── Mazatlan
│       │       │   │   │   ├── Mendoza
│       │       │   │   │   ├── Menominee
│       │       │   │   │   ├── Merida
│       │       │   │   │   ├── Metlakatla
│       │       │   │   │   ├── Mexico_City
│       │       │   │   │   ├── Miquelon
│       │       │   │   │   ├── Moncton
│       │       │   │   │   ├── Monterrey
│       │       │   │   │   ├── Montevideo
│       │       │   │   │   ├── Montreal
│       │       │   │   │   ├── Montserrat
│       │       │   │   │   ├── Nassau
│       │       │   │   │   ├── New_York
│       │       │   │   │   ├── Nipigon
│       │       │   │   │   ├── Nome
│       │       │   │   │   ├── Noronha
│       │       │   │   │   ├── North_Dakota
│       │       │   │   │   ├── Nuuk
│       │       │   │   │   ├── Ojinaga
│       │       │   │   │   ├── Panama
│       │       │   │   │   ├── Pangnirtung
│       │       │   │   │   ├── Paramaribo
│       │       │   │   │   ├── Phoenix
│       │       │   │   │   ├── Port-au-Prince
│       │       │   │   │   ├── Port_of_Spain
│       │       │   │   │   ├── Porto_Acre
│       │       │   │   │   ├── Porto_Velho
│       │       │   │   │   ├── Puerto_Rico
│       │       │   │   │   ├── Punta_Arenas
│       │       │   │   │   ├── Rainy_River
│       │       │   │   │   ├── Rankin_Inlet
│       │       │   │   │   ├── Recife
│       │       │   │   │   ├── Regina
│       │       │   │   │   ├── Resolute
│       │       │   │   │   ├── Rio_Branco
│       │       │   │   │   ├── Rosario
│       │       │   │   │   ├── Santa_Isabel
│       │       │   │   │   ├── Santarem
│       │       │   │   │   ├── Santiago
│       │       │   │   │   ├── Santo_Domingo
│       │       │   │   │   ├── Sao_Paulo
│       │       │   │   │   ├── Scoresbysund
│       │       │   │   │   ├── Shiprock
│       │       │   │   │   ├── Sitka
│       │       │   │   │   ├── St_Barthelemy
│       │       │   │   │   ├── St_Johns
│       │       │   │   │   ├── St_Kitts
│       │       │   │   │   ├── St_Lucia
│       │       │   │   │   ├── St_Thomas
│       │       │   │   │   ├── St_Vincent
│       │       │   │   │   ├── Swift_Current
│       │       │   │   │   ├── Tegucigalpa
│       │       │   │   │   ├── Thule
│       │       │   │   │   ├── Thunder_Bay
│       │       │   │   │   ├── Tijuana
│       │       │   │   │   ├── Toronto
│       │       │   │   │   ├── Tortola
│       │       │   │   │   ├── Vancouver
│       │       │   │   │   ├── Virgin
│       │       │   │   │   ├── Whitehorse
│       │       │   │   │   ├── Winnipeg
│       │       │   │   │   ├── Yakutat
│       │       │   │   │   ├── Yellowknife
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Antarctica
│       │       │   │   │   ├── Casey
│       │       │   │   │   ├── Davis
│       │       │   │   │   ├── DumontDUrville
│       │       │   │   │   ├── Macquarie
│       │       │   │   │   ├── Mawson
│       │       │   │   │   ├── McMurdo
│       │       │   │   │   ├── Palmer
│       │       │   │   │   ├── Rothera
│       │       │   │   │   ├── South_Pole
│       │       │   │   │   ├── Syowa
│       │       │   │   │   ├── Troll
│       │       │   │   │   ├── Vostok
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Arctic
│       │       │   │   │   ├── Longyearbyen
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Asia
│       │       │   │   │   ├── Aden
│       │       │   │   │   ├── Almaty
│       │       │   │   │   ├── Amman
│       │       │   │   │   ├── Anadyr
│       │       │   │   │   ├── Aqtau
│       │       │   │   │   ├── Aqtobe
│       │       │   │   │   ├── Ashgabat
│       │       │   │   │   ├── Ashkhabad
│       │       │   │   │   ├── Atyrau
│       │       │   │   │   ├── Baghdad
│       │       │   │   │   ├── Bahrain
│       │       │   │   │   ├── Baku
│       │       │   │   │   ├── Bangkok
│       │       │   │   │   ├── Barnaul
│       │       │   │   │   ├── Beirut
│       │       │   │   │   ├── Bishkek
│       │       │   │   │   ├── Brunei
│       │       │   │   │   ├── Calcutta
│       │       │   │   │   ├── Chita
│       │       │   │   │   ├── Choibalsan
│       │       │   │   │   ├── Chongqing
│       │       │   │   │   ├── Chungking
│       │       │   │   │   ├── Colombo
│       │       │   │   │   ├── Dacca
│       │       │   │   │   ├── Damascus
│       │       │   │   │   ├── Dhaka
│       │       │   │   │   ├── Dili
│       │       │   │   │   ├── Dubai
│       │       │   │   │   ├── Dushanbe
│       │       │   │   │   ├── Famagusta
│       │       │   │   │   ├── Gaza
│       │       │   │   │   ├── Harbin
│       │       │   │   │   ├── Hebron
│       │       │   │   │   ├── Ho_Chi_Minh
│       │       │   │   │   ├── Hong_Kong
│       │       │   │   │   ├── Hovd
│       │       │   │   │   ├── Irkutsk
│       │       │   │   │   ├── Istanbul
│       │       │   │   │   ├── Jakarta
│       │       │   │   │   ├── Jayapura
│       │       │   │   │   ├── Jerusalem
│       │       │   │   │   ├── Kabul
│       │       │   │   │   ├── Kamchatka
│       │       │   │   │   ├── Karachi
│       │       │   │   │   ├── Kashgar
│       │       │   │   │   ├── Kathmandu
│       │       │   │   │   ├── Katmandu
│       │       │   │   │   ├── Khandyga
│       │       │   │   │   ├── Kolkata
│       │       │   │   │   ├── Krasnoyarsk
│       │       │   │   │   ├── Kuala_Lumpur
│       │       │   │   │   ├── Kuching
│       │       │   │   │   ├── Kuwait
│       │       │   │   │   ├── Macao
│       │       │   │   │   ├── Macau
│       │       │   │   │   ├── Magadan
│       │       │   │   │   ├── Makassar
│       │       │   │   │   ├── Manila
│       │       │   │   │   ├── Muscat
│       │       │   │   │   ├── Nicosia
│       │       │   │   │   ├── Novokuznetsk
│       │       │   │   │   ├── Novosibirsk
│       │       │   │   │   ├── Omsk
│       │       │   │   │   ├── Oral
│       │       │   │   │   ├── Phnom_Penh
│       │       │   │   │   ├── Pontianak
│       │       │   │   │   ├── Pyongyang
│       │       │   │   │   ├── Qatar
│       │       │   │   │   ├── Qostanay
│       │       │   │   │   ├── Qyzylorda
│       │       │   │   │   ├── Rangoon
│       │       │   │   │   ├── Riyadh
│       │       │   │   │   ├── Saigon
│       │       │   │   │   ├── Sakhalin
│       │       │   │   │   ├── Samarkand
│       │       │   │   │   ├── Seoul
│       │       │   │   │   ├── Shanghai
│       │       │   │   │   ├── Singapore
│       │       │   │   │   ├── Srednekolymsk
│       │       │   │   │   ├── Taipei
│       │       │   │   │   ├── Tashkent
│       │       │   │   │   ├── Tbilisi
│       │       │   │   │   ├── Tehran
│       │       │   │   │   ├── Tel_Aviv
│       │       │   │   │   ├── Thimbu
│       │       │   │   │   ├── Thimphu
│       │       │   │   │   ├── Tokyo
│       │       │   │   │   ├── Tomsk
│       │       │   │   │   ├── Ujung_Pandang
│       │       │   │   │   ├── Ulaanbaatar
│       │       │   │   │   ├── Ulan_Bator
│       │       │   │   │   ├── Urumqi
│       │       │   │   │   ├── Ust-Nera
│       │       │   │   │   ├── Vientiane
│       │       │   │   │   ├── Vladivostok
│       │       │   │   │   ├── Yakutsk
│       │       │   │   │   ├── Yangon
│       │       │   │   │   ├── Yekaterinburg
│       │       │   │   │   ├── Yerevan
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Atlantic
│       │       │   │   │   ├── Azores
│       │       │   │   │   ├── Bermuda
│       │       │   │   │   ├── Canary
│       │       │   │   │   ├── Cape_Verde
│       │       │   │   │   ├── Faeroe
│       │       │   │   │   ├── Faroe
│       │       │   │   │   ├── Jan_Mayen
│       │       │   │   │   ├── Madeira
│       │       │   │   │   ├── Reykjavik
│       │       │   │   │   ├── South_Georgia
│       │       │   │   │   ├── St_Helena
│       │       │   │   │   ├── Stanley
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Australia
│       │       │   │   │   ├── ACT
│       │       │   │   │   ├── Adelaide
│       │       │   │   │   ├── Brisbane
│       │       │   │   │   ├── Broken_Hill
│       │       │   │   │   ├── Canberra
│       │       │   │   │   ├── Currie
│       │       │   │   │   ├── Darwin
│       │       │   │   │   ├── Eucla
│       │       │   │   │   ├── Hobart
│       │       │   │   │   ├── LHI
│       │       │   │   │   ├── Lindeman
│       │       │   │   │   ├── Lord_Howe
│       │       │   │   │   ├── Melbourne
│       │       │   │   │   ├── NSW
│       │       │   │   │   ├── North
│       │       │   │   │   ├── Perth
│       │       │   │   │   ├── Queensland
│       │       │   │   │   ├── South
│       │       │   │   │   ├── Sydney
│       │       │   │   │   ├── Tasmania
│       │       │   │   │   ├── Victoria
│       │       │   │   │   ├── West
│       │       │   │   │   ├── Yancowinna
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Brazil
│       │       │   │   │   ├── Acre
│       │       │   │   │   ├── DeNoronha
│       │       │   │   │   ├── East
│       │       │   │   │   ├── West
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── CET
│       │       │   │   ├── CST6CDT
│       │       │   │   ├── Canada
│       │       │   │   │   ├── Atlantic
│       │       │   │   │   ├── Central
│       │       │   │   │   ├── Eastern
│       │       │   │   │   ├── Mountain
│       │       │   │   │   ├── Newfoundland
│       │       │   │   │   ├── Pacific
│       │       │   │   │   ├── Saskatchewan
│       │       │   │   │   ├── Yukon
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Chile
│       │       │   │   │   ├── Continental
│       │       │   │   │   ├── EasterIsland
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Cuba
│       │       │   │   ├── EET
│       │       │   │   ├── EST
│       │       │   │   ├── EST5EDT
│       │       │   │   ├── Egypt
│       │       │   │   ├── Eire
│       │       │   │   ├── Etc
│       │       │   │   │   ├── GMT
│       │       │   │   │   ├── GMT 0
│       │       │   │   │   ├── GMT 1
│       │       │   │   │   ├── GMT 10
│       │       │   │   │   ├── GMT 11
│       │       │   │   │   ├── GMT 12
│       │       │   │   │   ├── GMT 2
│       │       │   │   │   ├── GMT 3
│       │       │   │   │   ├── GMT 4
│       │       │   │   │   ├── GMT 5
│       │       │   │   │   ├── GMT 6
│       │       │   │   │   ├── GMT 7
│       │       │   │   │   ├── GMT 8
│       │       │   │   │   ├── GMT 9
│       │       │   │   │   ├── GMT-0
│       │       │   │   │   ├── GMT-1
│       │       │   │   │   ├── GMT-10
│       │       │   │   │   ├── GMT-11
│       │       │   │   │   ├── GMT-12
│       │       │   │   │   ├── GMT-13
│       │       │   │   │   ├── GMT-14
│       │       │   │   │   ├── GMT-2
│       │       │   │   │   ├── GMT-3
│       │       │   │   │   ├── GMT-4
│       │       │   │   │   ├── GMT-5
│       │       │   │   │   ├── GMT-6
│       │       │   │   │   ├── GMT-7
│       │       │   │   │   ├── GMT-8
│       │       │   │   │   ├── GMT-9
│       │       │   │   │   ├── GMT0
│       │       │   │   │   ├── Greenwich
│       │       │   │   │   ├── UCT
│       │       │   │   │   ├── UTC
│       │       │   │   │   ├── Universal
│       │       │   │   │   ├── Zulu
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Europe
│       │       │   │   │   ├── Amsterdam
│       │       │   │   │   ├── Andorra
│       │       │   │   │   ├── Astrakhan
│       │       │   │   │   ├── Athens
│       │       │   │   │   ├── Belfast
│       │       │   │   │   ├── Belgrade
│       │       │   │   │   ├── Berlin
│       │       │   │   │   ├── Bratislava
│       │       │   │   │   ├── Brussels
│       │       │   │   │   ├── Bucharest
│       │       │   │   │   ├── Budapest
│       │       │   │   │   ├── Busingen
│       │       │   │   │   ├── Chisinau
│       │       │   │   │   ├── Copenhagen
│       │       │   │   │   ├── Dublin
│       │       │   │   │   ├── Gibraltar
│       │       │   │   │   ├── Guernsey
│       │       │   │   │   ├── Helsinki
│       │       │   │   │   ├── Isle_of_Man
│       │       │   │   │   ├── Istanbul
│       │       │   │   │   ├── Jersey
│       │       │   │   │   ├── Kaliningrad
│       │       │   │   │   ├── Kiev
│       │       │   │   │   ├── Kirov
│       │       │   │   │   ├── Lisbon
│       │       │   │   │   ├── Ljubljana
│       │       │   │   │   ├── London
│       │       │   │   │   ├── Luxembourg
│       │       │   │   │   ├── Madrid
│       │       │   │   │   ├── Malta
│       │       │   │   │   ├── Mariehamn
│       │       │   │   │   ├── Minsk
│       │       │   │   │   ├── Monaco
│       │       │   │   │   ├── Moscow
│       │       │   │   │   ├── Nicosia
│       │       │   │   │   ├── Oslo
│       │       │   │   │   ├── Paris
│       │       │   │   │   ├── Podgorica
│       │       │   │   │   ├── Prague
│       │       │   │   │   ├── Riga
│       │       │   │   │   ├── Rome
│       │       │   │   │   ├── Samara
│       │       │   │   │   ├── San_Marino
│       │       │   │   │   ├── Sarajevo
│       │       │   │   │   ├── Saratov
│       │       │   │   │   ├── Simferopol
│       │       │   │   │   ├── Skopje
│       │       │   │   │   ├── Sofia
│       │       │   │   │   ├── Stockholm
│       │       │   │   │   ├── Tallinn
│       │       │   │   │   ├── Tirane
│       │       │   │   │   ├── Tiraspol
│       │       │   │   │   ├── Ulyanovsk
│       │       │   │   │   ├── Uzhgorod
│       │       │   │   │   ├── Vaduz
│       │       │   │   │   ├── Vatican
│       │       │   │   │   ├── Vienna
│       │       │   │   │   ├── Vilnius
│       │       │   │   │   ├── Volgograd
│       │       │   │   │   ├── Warsaw
│       │       │   │   │   ├── Zagreb
│       │       │   │   │   ├── Zaporozhye
│       │       │   │   │   ├── Zurich
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Factory
│       │       │   │   ├── GB
│       │       │   │   ├── GB-Eire
│       │       │   │   ├── GMT
│       │       │   │   ├── GMT 0
│       │       │   │   ├── GMT-0
│       │       │   │   ├── GMT0
│       │       │   │   ├── Greenwich
│       │       │   │   ├── HST
│       │       │   │   ├── Hongkong
│       │       │   │   ├── Iceland
│       │       │   │   ├── Indian
│       │       │   │   │   ├── Antananarivo
│       │       │   │   │   ├── Chagos
│       │       │   │   │   ├── Christmas
│       │       │   │   │   ├── Cocos
│       │       │   │   │   ├── Comoro
│       │       │   │   │   ├── Kerguelen
│       │       │   │   │   ├── Mahe
│       │       │   │   │   ├── Maldives
│       │       │   │   │   ├── Mauritius
│       │       │   │   │   ├── Mayotte
│       │       │   │   │   ├── Reunion
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Iran
│       │       │   │   ├── Israel
│       │       │   │   ├── Jamaica
│       │       │   │   ├── Japan
│       │       │   │   ├── Kwajalein
│       │       │   │   ├── Libya
│       │       │   │   ├── MET
│       │       │   │   ├── MST
│       │       │   │   ├── MST7MDT
│       │       │   │   ├── Mexico
│       │       │   │   │   ├── BajaNorte
│       │       │   │   │   ├── BajaSur
│       │       │   │   │   ├── General
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── NZ
│       │       │   │   ├── NZ-CHAT
│       │       │   │   ├── Navajo
│       │       │   │   ├── PRC
│       │       │   │   ├── PST8PDT
│       │       │   │   ├── Pacific
│       │       │   │   │   ├── Apia
│       │       │   │   │   ├── Auckland
│       │       │   │   │   ├── Bougainville
│       │       │   │   │   ├── Chatham
│       │       │   │   │   ├── Chuuk
│       │       │   │   │   ├── Easter
│       │       │   │   │   ├── Efate
│       │       │   │   │   ├── Enderbury
│       │       │   │   │   ├── Fakaofo
│       │       │   │   │   ├── Fiji
│       │       │   │   │   ├── Funafuti
│       │       │   │   │   ├── Galapagos
│       │       │   │   │   ├── Gambier
│       │       │   │   │   ├── Guadalcanal
│       │       │   │   │   ├── Guam
│       │       │   │   │   ├── Honolulu
│       │       │   │   │   ├── Johnston
│       │       │   │   │   ├── Kanton
│       │       │   │   │   ├── Kiritimati
│       │       │   │   │   ├── Kosrae
│       │       │   │   │   ├── Kwajalein
│       │       │   │   │   ├── Majuro
│       │       │   │   │   ├── Marquesas
│       │       │   │   │   ├── Midway
│       │       │   │   │   ├── Nauru
│       │       │   │   │   ├── Niue
│       │       │   │   │   ├── Norfolk
│       │       │   │   │   ├── Noumea
│       │       │   │   │   ├── Pago_Pago
│       │       │   │   │   ├── Palau
│       │       │   │   │   ├── Pitcairn
│       │       │   │   │   ├── Pohnpei
│       │       │   │   │   ├── Ponape
│       │       │   │   │   ├── Port_Moresby
│       │       │   │   │   ├── Rarotonga
│       │       │   │   │   ├── Saipan
│       │       │   │   │   ├── Samoa
│       │       │   │   │   ├── Tahiti
│       │       │   │   │   ├── Tarawa
│       │       │   │   │   ├── Tongatapu
│       │       │   │   │   ├── Truk
│       │       │   │   │   ├── Wake
│       │       │   │   │   ├── Wallis
│       │       │   │   │   ├── Yap
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── Poland
│       │       │   │   ├── Portugal
│       │       │   │   ├── ROC
│       │       │   │   ├── ROK
│       │       │   │   ├── Singapore
│       │       │   │   ├── Turkey
│       │       │   │   ├── UCT
│       │       │   │   ├── US
│       │       │   │   │   ├── Alaska
│       │       │   │   │   ├── Aleutian
│       │       │   │   │   ├── Arizona
│       │       │   │   │   ├── Central
│       │       │   │   │   ├── East-Indiana
│       │       │   │   │   ├── Eastern
│       │       │   │   │   ├── Hawaii
│       │       │   │   │   ├── Indiana-Starke
│       │       │   │   │   ├── Michigan
│       │       │   │   │   ├── Mountain
│       │       │   │   │   ├── Pacific
│       │       │   │   │   ├── Samoa
│       │       │   │   │   ├── __init__.py
│       │       │   │   │   └── __pycache__
│       │       │   │   ├── UTC
│       │       │   │   ├── Universal
│       │       │   │   ├── W-SU
│       │       │   │   ├── WET
│       │       │   │   ├── Zulu
│       │       │   │   ├── __init__.py
│       │       │   │   ├── __pycache__
│       │       │   │   │   └── __init__.cpython-39.pyc
│       │       │   │   ├── iso3166.tab
│       │       │   │   ├── leapseconds
│       │       │   │   ├── tzdata.zi
│       │       │   │   ├── zone.tab
│       │       │   │   └── zone1970.tab
│       │       │   └── zones
│       │       └── tzdata-2021.5.dist-info
│       │           ├── INSTALLER
│       │           ├── LICENSE
│       │           ├── LICENSE_APACHE
│       │           ├── METADATA
│       │           ├── RECORD
│       │           ├── WHEEL
│       │           └── top_level.txt
│       ├── Scripts
│       │   ├── Activate.ps1
│       │   ├── activate
│       │   ├── activate.bat
│       │   ├── deactivate.bat
│       │   ├── django-admin.exe
│       │   ├── pip.exe
│       │   ├── pip3.9.exe
│       │   ├── pip3.exe
│       │   ├── python.exe
│       │   ├── pythonw.exe
│       │   └── sqlformat.exe
│       └── pyvenv.cfg
└── 好例子网_SMproject.zip

465 directories, 1876 files


实例下载地址

django实现学生管理系统好看的页面

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警