├── .gitignore ├── Procfile ├── README.md ├── app.json ├── heroku_env_setup.jpg ├── requirements.txt ├── static ├── favicon.ico ├── images │ ├── chat.png │ ├── phone.png │ ├── taskrouter-logo.png │ ├── twilio-logo.png │ ├── twilio-mark-red.png │ └── video.png ├── taskrouter_dashboard.css ├── taskrouter_dashboard.html └── taskrouter_dashboard.js ├── taskrouter_dashboard.jpg ├── taskrouter_dashboard.py ├── taskrouter_workspace_event_url_setup.jpg └── venv ├── bin ├── activate ├── activate.csh ├── activate.fish ├── chardetect ├── easy_install ├── easy_install-3.6 ├── flask ├── gunicorn ├── gunicorn_paster ├── pip ├── pip3 ├── pip3.6 ├── pyjwt ├── python └── python3 ├── lib └── python3.6 │ └── site-packages │ ├── Flask-0.12.2.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt │ ├── Jinja2-2.9.6.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt │ ├── MarkupSafe-1.0-py3.6.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── installed-files.txt │ ├── not-zip-safe │ └── top_level.txt │ ├── PyJWT-1.5.0.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt │ ├── PySocks-1.6.7.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt │ ├── Werkzeug-0.12.2.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt │ ├── __pycache__ │ ├── easy_install.cpython-36.pyc │ ├── itsdangerous.cpython-36.pyc │ ├── six.cpython-36.pyc │ ├── socks.cpython-36.pyc │ └── sockshandler.cpython-36.pyc │ ├── certifi-2017.7.27.1.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt │ ├── certifi │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __main__.cpython-36.pyc │ │ └── core.cpython-36.pyc │ ├── cacert.pem │ ├── core.py │ ├── old_root.pem │ └── weak.pem │ ├── chardet-3.0.4.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt │ ├── chardet │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── big5freq.cpython-36.pyc │ │ ├── big5prober.cpython-36.pyc │ │ ├── chardistribution.cpython-36.pyc │ │ ├── charsetgroupprober.cpython-36.pyc │ │ ├── charsetprober.cpython-36.pyc │ │ ├── codingstatemachine.cpython-36.pyc │ │ ├── compat.cpython-36.pyc │ │ ├── cp949prober.cpython-36.pyc │ │ ├── enums.cpython-36.pyc │ │ ├── escprober.cpython-36.pyc │ │ ├── escsm.cpython-36.pyc │ │ ├── eucjpprober.cpython-36.pyc │ │ ├── euckrfreq.cpython-36.pyc │ │ ├── euckrprober.cpython-36.pyc │ │ ├── euctwfreq.cpython-36.pyc │ │ ├── euctwprober.cpython-36.pyc │ │ ├── gb2312freq.cpython-36.pyc │ │ ├── gb2312prober.cpython-36.pyc │ │ ├── hebrewprober.cpython-36.pyc │ │ ├── jisfreq.cpython-36.pyc │ │ ├── jpcntx.cpython-36.pyc │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ ├── langgreekmodel.cpython-36.pyc │ │ ├── langhebrewmodel.cpython-36.pyc │ │ ├── langhungarianmodel.cpython-36.pyc │ │ ├── langthaimodel.cpython-36.pyc │ │ ├── langturkishmodel.cpython-36.pyc │ │ ├── latin1prober.cpython-36.pyc │ │ ├── mbcharsetprober.cpython-36.pyc │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ ├── mbcssm.cpython-36.pyc │ │ ├── sbcharsetprober.cpython-36.pyc │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ ├── sjisprober.cpython-36.pyc │ │ ├── universaldetector.cpython-36.pyc │ │ ├── utf8prober.cpython-36.pyc │ │ └── version.cpython-36.pyc │ ├── big5freq.py │ ├── big5prober.py │ ├── chardistribution.py │ ├── charsetgroupprober.py │ ├── charsetprober.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── chardetect.cpython-36.pyc │ │ └── chardetect.py │ ├── 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 │ ├── langcyrillicmodel.py │ ├── langgreekmodel.py │ ├── langhebrewmodel.py │ ├── langhungarianmodel.py │ ├── langthaimodel.py │ ├── langturkishmodel.py │ ├── latin1prober.py │ ├── mbcharsetprober.py │ ├── mbcsgroupprober.py │ ├── mbcssm.py │ ├── sbcharsetprober.py │ ├── sbcsgroupprober.py │ ├── sjisprober.py │ ├── universaldetector.py │ ├── utf8prober.py │ └── version.py │ ├── click-6.7.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt │ ├── click │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── _bashcomplete.cpython-36.pyc │ │ ├── _compat.cpython-36.pyc │ │ ├── _termui_impl.cpython-36.pyc │ │ ├── _textwrap.cpython-36.pyc │ │ ├── _unicodefun.cpython-36.pyc │ │ ├── _winconsole.cpython-36.pyc │ │ ├── core.cpython-36.pyc │ │ ├── decorators.cpython-36.pyc │ │ ├── exceptions.cpython-36.pyc │ │ ├── formatting.cpython-36.pyc │ │ ├── globals.cpython-36.pyc │ │ ├── parser.cpython-36.pyc │ │ ├── termui.cpython-36.pyc │ │ ├── testing.cpython-36.pyc │ │ ├── types.cpython-36.pyc │ │ └── utils.cpython-36.pyc │ ├── _bashcomplete.py │ ├── _compat.py │ ├── _termui_impl.py │ ├── _textwrap.py │ ├── _unicodefun.py │ ├── _winconsole.py │ ├── core.py │ ├── decorators.py │ ├── exceptions.py │ ├── formatting.py │ ├── globals.py │ ├── parser.py │ ├── termui.py │ ├── testing.py │ ├── types.py │ └── utils.py │ ├── easy_install.py │ ├── flask │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __main__.cpython-36.pyc │ │ ├── _compat.cpython-36.pyc │ │ ├── app.cpython-36.pyc │ │ ├── blueprints.cpython-36.pyc │ │ ├── cli.cpython-36.pyc │ │ ├── config.cpython-36.pyc │ │ ├── ctx.cpython-36.pyc │ │ ├── debughelpers.cpython-36.pyc │ │ ├── exthook.cpython-36.pyc │ │ ├── globals.cpython-36.pyc │ │ ├── helpers.cpython-36.pyc │ │ ├── json.cpython-36.pyc │ │ ├── logging.cpython-36.pyc │ │ ├── sessions.cpython-36.pyc │ │ ├── signals.cpython-36.pyc │ │ ├── templating.cpython-36.pyc │ │ ├── testing.cpython-36.pyc │ │ ├── views.cpython-36.pyc │ │ └── wrappers.cpython-36.pyc │ ├── _compat.py │ ├── app.py │ ├── blueprints.py │ ├── cli.py │ ├── config.py │ ├── ctx.py │ ├── debughelpers.py │ ├── ext │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ ├── exthook.py │ ├── globals.py │ ├── helpers.py │ ├── json.py │ ├── logging.py │ ├── sessions.py │ ├── signals.py │ ├── templating.py │ ├── testing.py │ ├── views.py │ └── wrappers.py │ ├── gunicorn-19.7.1.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt │ ├── gunicorn │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── _compat.cpython-36.pyc │ │ ├── arbiter.cpython-36.pyc │ │ ├── argparse_compat.cpython-36.pyc │ │ ├── config.cpython-36.pyc │ │ ├── debug.cpython-36.pyc │ │ ├── errors.cpython-36.pyc │ │ ├── glogging.cpython-36.pyc │ │ ├── pidfile.cpython-36.pyc │ │ ├── reloader.cpython-36.pyc │ │ ├── selectors.cpython-36.pyc │ │ ├── six.cpython-36.pyc │ │ ├── sock.cpython-36.pyc │ │ ├── systemd.cpython-36.pyc │ │ └── util.cpython-36.pyc │ ├── _compat.py │ ├── app │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── base.cpython-36.pyc │ │ │ ├── pasterapp.cpython-36.pyc │ │ │ └── wsgiapp.cpython-36.pyc │ │ ├── base.py │ │ ├── pasterapp.py │ │ └── wsgiapp.py │ ├── arbiter.py │ ├── argparse_compat.py │ ├── config.py │ ├── debug.py │ ├── errors.py │ ├── glogging.py │ ├── http │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── _sendfile.cpython-36.pyc │ │ │ ├── body.cpython-36.pyc │ │ │ ├── errors.cpython-36.pyc │ │ │ ├── message.cpython-36.pyc │ │ │ ├── parser.cpython-36.pyc │ │ │ ├── unreader.cpython-36.pyc │ │ │ └── wsgi.cpython-36.pyc │ │ ├── _sendfile.py │ │ ├── body.py │ │ ├── errors.py │ │ ├── message.py │ │ ├── parser.py │ │ ├── unreader.py │ │ └── wsgi.py │ ├── instrument │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── statsd.cpython-36.pyc │ │ └── statsd.py │ ├── pidfile.py │ ├── reloader.py │ ├── selectors.py │ ├── six.py │ ├── sock.py │ ├── systemd.py │ ├── util.py │ └── workers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── _gaiohttp.cpython-36.pyc │ │ ├── async.cpython-36.pyc │ │ ├── base.cpython-36.pyc │ │ ├── gaiohttp.cpython-36.pyc │ │ ├── geventlet.cpython-36.pyc │ │ ├── ggevent.cpython-36.pyc │ │ ├── gthread.cpython-36.pyc │ │ ├── gtornado.cpython-36.pyc │ │ ├── sync.cpython-36.pyc │ │ └── workertmp.cpython-36.pyc │ │ ├── _gaiohttp.py │ │ ├── async.py │ │ ├── base.py │ │ ├── gaiohttp.py │ │ ├── geventlet.py │ │ ├── ggevent.py │ │ ├── gthread.py │ │ ├── gtornado.py │ │ ├── sync.py │ │ └── workertmp.py │ ├── idna-2.5.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ ├── pbr.json │ └── top_level.txt │ ├── idna │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── codec.cpython-36.pyc │ │ ├── compat.cpython-36.pyc │ │ ├── core.cpython-36.pyc │ │ ├── idnadata.cpython-36.pyc │ │ ├── intranges.cpython-36.pyc │ │ └── uts46data.cpython-36.pyc │ ├── codec.py │ ├── compat.py │ ├── core.py │ ├── idnadata.py │ ├── intranges.py │ └── uts46data.py │ ├── itsdangerous-0.24-py3.6.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── installed-files.txt │ ├── not-zip-safe │ └── top_level.txt │ ├── itsdangerous.py │ ├── jinja2 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── _compat.cpython-36.pyc │ │ ├── _stringdefs.cpython-36.pyc │ │ ├── asyncfilters.cpython-36.pyc │ │ ├── asyncsupport.cpython-36.pyc │ │ ├── bccache.cpython-36.pyc │ │ ├── compiler.cpython-36.pyc │ │ ├── constants.cpython-36.pyc │ │ ├── debug.cpython-36.pyc │ │ ├── defaults.cpython-36.pyc │ │ ├── environment.cpython-36.pyc │ │ ├── exceptions.cpython-36.pyc │ │ ├── ext.cpython-36.pyc │ │ ├── filters.cpython-36.pyc │ │ ├── idtracking.cpython-36.pyc │ │ ├── lexer.cpython-36.pyc │ │ ├── loaders.cpython-36.pyc │ │ ├── meta.cpython-36.pyc │ │ ├── nodes.cpython-36.pyc │ │ ├── optimizer.cpython-36.pyc │ │ ├── parser.cpython-36.pyc │ │ ├── runtime.cpython-36.pyc │ │ ├── sandbox.cpython-36.pyc │ │ ├── tests.cpython-36.pyc │ │ ├── utils.cpython-36.pyc │ │ └── visitor.cpython-36.pyc │ ├── _compat.py │ ├── _stringdefs.py │ ├── asyncfilters.py │ ├── asyncsupport.py │ ├── bccache.py │ ├── compiler.py │ ├── constants.py │ ├── debug.py │ ├── defaults.py │ ├── environment.py │ ├── exceptions.py │ ├── ext.py │ ├── filters.py │ ├── idtracking.py │ ├── lexer.py │ ├── loaders.py │ ├── meta.py │ ├── nodes.py │ ├── optimizer.py │ ├── parser.py │ ├── runtime.py │ ├── sandbox.py │ ├── tests.py │ ├── utils.py │ └── visitor.py │ ├── jwt │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __main__.cpython-36.pyc │ │ ├── algorithms.cpython-36.pyc │ │ ├── api_jws.cpython-36.pyc │ │ ├── api_jwt.cpython-36.pyc │ │ ├── compat.cpython-36.pyc │ │ ├── exceptions.cpython-36.pyc │ │ └── utils.cpython-36.pyc │ ├── algorithms.py │ ├── api_jws.py │ ├── api_jwt.py │ ├── compat.py │ ├── contrib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ └── algorithms │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── py_ecdsa.cpython-36.pyc │ │ │ └── pycrypto.cpython-36.pyc │ │ │ ├── py_ecdsa.py │ │ │ └── pycrypto.py │ ├── exceptions.py │ └── utils.py │ ├── markupsafe │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── _compat.cpython-36.pyc │ │ ├── _constants.cpython-36.pyc │ │ └── _native.cpython-36.pyc │ ├── _compat.py │ ├── _constants.py │ ├── _native.py │ ├── _speedups.c │ └── _speedups.cpython-36m-darwin.so │ ├── pip-9.0.1.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __main__.cpython-36.pyc │ │ ├── basecommand.cpython-36.pyc │ │ ├── baseparser.cpython-36.pyc │ │ ├── cmdoptions.cpython-36.pyc │ │ ├── download.cpython-36.pyc │ │ ├── exceptions.cpython-36.pyc │ │ ├── index.cpython-36.pyc │ │ ├── locations.cpython-36.pyc │ │ ├── pep425tags.cpython-36.pyc │ │ ├── status_codes.cpython-36.pyc │ │ └── wheel.cpython-36.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── appdirs.cpython-36.pyc │ │ │ ├── distro.cpython-36.pyc │ │ │ ├── ipaddress.cpython-36.pyc │ │ │ ├── ordereddict.cpython-36.pyc │ │ │ ├── pyparsing.cpython-36.pyc │ │ │ ├── re-vendor.cpython-36.pyc │ │ │ ├── retrying.cpython-36.pyc │ │ │ └── six.cpython-36.pyc │ │ ├── appdirs.py │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _cmd.cpython-36.pyc │ │ │ │ ├── adapter.cpython-36.pyc │ │ │ │ ├── cache.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── controller.cpython-36.pyc │ │ │ │ ├── filewrapper.cpython-36.pyc │ │ │ │ ├── heuristics.cpython-36.pyc │ │ │ │ ├── serialize.cpython-36.pyc │ │ │ │ └── wrapper.cpython-36.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── file_cache.cpython-36.pyc │ │ │ │ │ └── redis_cache.cpython-36.pyc │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── ansi.cpython-36.pyc │ │ │ │ ├── ansitowin32.cpython-36.pyc │ │ │ │ ├── initialise.cpython-36.pyc │ │ │ │ ├── win32.cpython-36.pyc │ │ │ │ └── winterm.cpython-36.pyc │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── database.cpython-36.pyc │ │ │ │ ├── index.cpython-36.pyc │ │ │ │ ├── locators.cpython-36.pyc │ │ │ │ ├── manifest.cpython-36.pyc │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ ├── metadata.cpython-36.pyc │ │ │ │ ├── resources.cpython-36.pyc │ │ │ │ ├── scripts.cpython-36.pyc │ │ │ │ ├── util.cpython-36.pyc │ │ │ │ ├── version.cpython-36.pyc │ │ │ │ └── wheel.cpython-36.pyc │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── misc.cpython-36.pyc │ │ │ │ │ ├── shutil.cpython-36.pyc │ │ │ │ │ ├── sysconfig.cpython-36.pyc │ │ │ │ │ └── tarfile.cpython-36.pyc │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ ├── distro.py │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _ihatexml.cpython-36.pyc │ │ │ │ ├── _inputstream.cpython-36.pyc │ │ │ │ ├── _tokenizer.cpython-36.pyc │ │ │ │ ├── _utils.cpython-36.pyc │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ ├── html5parser.cpython-36.pyc │ │ │ │ └── serializer.cpython-36.pyc │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _base.cpython-36.pyc │ │ │ │ │ ├── datrie.cpython-36.pyc │ │ │ │ │ └── py.cpython-36.pyc │ │ │ │ ├── _base.py │ │ │ │ ├── datrie.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── alphabeticalattributes.cpython-36.pyc │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ ├── inject_meta_charset.cpython-36.pyc │ │ │ │ │ ├── lint.cpython-36.pyc │ │ │ │ │ ├── optionaltags.cpython-36.pyc │ │ │ │ │ ├── sanitizer.cpython-36.pyc │ │ │ │ │ └── whitespace.cpython-36.pyc │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── genshi.cpython-36.pyc │ │ │ │ │ └── sax.cpython-36.pyc │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ │ ├── dom.cpython-36.pyc │ │ │ │ │ ├── etree.cpython-36.pyc │ │ │ │ │ └── etree_lxml.cpython-36.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── base.cpython-36.pyc │ │ │ │ ├── dom.cpython-36.pyc │ │ │ │ ├── etree.cpython-36.pyc │ │ │ │ ├── etree_lxml.cpython-36.pyc │ │ │ │ └── genshi.cpython-36.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ ├── ipaddress.py │ │ ├── lockfile │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── linklockfile.cpython-36.pyc │ │ │ │ ├── mkdirlockfile.cpython-36.pyc │ │ │ │ ├── pidlockfile.cpython-36.pyc │ │ │ │ ├── sqlitelockfile.cpython-36.pyc │ │ │ │ └── symlinklockfile.cpython-36.pyc │ │ │ ├── linklockfile.py │ │ │ ├── mkdirlockfile.py │ │ │ ├── pidlockfile.py │ │ │ ├── sqlitelockfile.py │ │ │ └── symlinklockfile.py │ │ ├── ordereddict.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ ├── _structures.cpython-36.pyc │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ ├── requirements.cpython-36.pyc │ │ │ │ ├── specifiers.cpython-36.pyc │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ └── version.cpython-36.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── bar.cpython-36.pyc │ │ │ │ ├── counter.cpython-36.pyc │ │ │ │ ├── helpers.cpython-36.pyc │ │ │ │ └── spinner.cpython-36.pyc │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ ├── helpers.py │ │ │ └── spinner.py │ │ ├── pyparsing.py │ │ ├── re-vendor.py │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── adapters.cpython-36.pyc │ │ │ │ ├── api.cpython-36.pyc │ │ │ │ ├── auth.cpython-36.pyc │ │ │ │ ├── certs.cpython-36.pyc │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ ├── cookies.cpython-36.pyc │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ ├── hooks.cpython-36.pyc │ │ │ │ ├── models.cpython-36.pyc │ │ │ │ ├── sessions.cpython-36.pyc │ │ │ │ ├── status_codes.cpython-36.pyc │ │ │ │ ├── structures.cpython-36.pyc │ │ │ │ └── utils.cpython-36.pyc │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── cacert.pem │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── big5freq.cpython-36.pyc │ │ │ │ │ │ ├── big5prober.cpython-36.pyc │ │ │ │ │ │ ├── chardetect.cpython-36.pyc │ │ │ │ │ │ ├── chardistribution.cpython-36.pyc │ │ │ │ │ │ ├── charsetgroupprober.cpython-36.pyc │ │ │ │ │ │ ├── charsetprober.cpython-36.pyc │ │ │ │ │ │ ├── codingstatemachine.cpython-36.pyc │ │ │ │ │ │ ├── compat.cpython-36.pyc │ │ │ │ │ │ ├── constants.cpython-36.pyc │ │ │ │ │ │ ├── cp949prober.cpython-36.pyc │ │ │ │ │ │ ├── escprober.cpython-36.pyc │ │ │ │ │ │ ├── escsm.cpython-36.pyc │ │ │ │ │ │ ├── eucjpprober.cpython-36.pyc │ │ │ │ │ │ ├── euckrfreq.cpython-36.pyc │ │ │ │ │ │ ├── euckrprober.cpython-36.pyc │ │ │ │ │ │ ├── euctwfreq.cpython-36.pyc │ │ │ │ │ │ ├── euctwprober.cpython-36.pyc │ │ │ │ │ │ ├── gb2312freq.cpython-36.pyc │ │ │ │ │ │ ├── gb2312prober.cpython-36.pyc │ │ │ │ │ │ ├── hebrewprober.cpython-36.pyc │ │ │ │ │ │ ├── jisfreq.cpython-36.pyc │ │ │ │ │ │ ├── jpcntx.cpython-36.pyc │ │ │ │ │ │ ├── langbulgarianmodel.cpython-36.pyc │ │ │ │ │ │ ├── langcyrillicmodel.cpython-36.pyc │ │ │ │ │ │ ├── langgreekmodel.cpython-36.pyc │ │ │ │ │ │ ├── langhebrewmodel.cpython-36.pyc │ │ │ │ │ │ ├── langhungarianmodel.cpython-36.pyc │ │ │ │ │ │ ├── langthaimodel.cpython-36.pyc │ │ │ │ │ │ ├── latin1prober.cpython-36.pyc │ │ │ │ │ │ ├── mbcharsetprober.cpython-36.pyc │ │ │ │ │ │ ├── mbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ ├── mbcssm.cpython-36.pyc │ │ │ │ │ │ ├── sbcharsetprober.cpython-36.pyc │ │ │ │ │ │ ├── sbcsgroupprober.cpython-36.pyc │ │ │ │ │ │ ├── sjisprober.cpython-36.pyc │ │ │ │ │ │ ├── universaldetector.cpython-36.pyc │ │ │ │ │ │ └── utf8prober.cpython-36.pyc │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardetect.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── codingstatemachine.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── cp949prober.py │ │ │ │ │ ├── escprober.py │ │ │ │ │ ├── escsm.py │ │ │ │ │ ├── eucjpprober.py │ │ │ │ │ ├── euckrfreq.py │ │ │ │ │ ├── euckrprober.py │ │ │ │ │ ├── euctwfreq.py │ │ │ │ │ ├── euctwprober.py │ │ │ │ │ ├── gb2312freq.py │ │ │ │ │ ├── gb2312prober.py │ │ │ │ │ ├── hebrewprober.py │ │ │ │ │ ├── jisfreq.py │ │ │ │ │ ├── jpcntx.py │ │ │ │ │ ├── langbulgarianmodel.py │ │ │ │ │ ├── langcyrillicmodel.py │ │ │ │ │ ├── langgreekmodel.py │ │ │ │ │ ├── langhebrewmodel.py │ │ │ │ │ ├── langhungarianmodel.py │ │ │ │ │ ├── langthaimodel.py │ │ │ │ │ ├── latin1prober.py │ │ │ │ │ ├── mbcharsetprober.py │ │ │ │ │ ├── mbcsgroupprober.py │ │ │ │ │ ├── mbcssm.py │ │ │ │ │ ├── sbcharsetprober.py │ │ │ │ │ ├── sbcsgroupprober.py │ │ │ │ │ ├── sjisprober.py │ │ │ │ │ ├── universaldetector.py │ │ │ │ │ └── utf8prober.py │ │ │ │ └── urllib3 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── _collections.cpython-36.pyc │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ ├── connectionpool.cpython-36.pyc │ │ │ │ │ ├── exceptions.cpython-36.pyc │ │ │ │ │ ├── fields.cpython-36.pyc │ │ │ │ │ ├── filepost.cpython-36.pyc │ │ │ │ │ ├── poolmanager.cpython-36.pyc │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ └── response.cpython-36.pyc │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── appengine.cpython-36.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-36.pyc │ │ │ │ │ │ └── socks.cpython-36.pyc │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ └── socks.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── ordered_dict.cpython-36.pyc │ │ │ │ │ │ └── six.cpython-36.pyc │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── _implementation.cpython-36.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── connection.cpython-36.pyc │ │ │ │ │ ├── request.cpython-36.pyc │ │ │ │ │ ├── response.cpython-36.pyc │ │ │ │ │ ├── retry.cpython-36.pyc │ │ │ │ │ ├── ssl_.cpython-36.pyc │ │ │ │ │ ├── timeout.cpython-36.pyc │ │ │ │ │ └── url.cpython-36.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ └── url.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── retrying.py │ │ ├── six.py │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── labels.cpython-36.pyc │ │ │ ├── mklabels.cpython-36.pyc │ │ │ ├── tests.cpython-36.pyc │ │ │ └── x_user_defined.cpython-36.pyc │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ ├── basecommand.py │ ├── baseparser.py │ ├── cmdoptions.py │ ├── commands │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── check.cpython-36.pyc │ │ │ ├── completion.cpython-36.pyc │ │ │ ├── download.cpython-36.pyc │ │ │ ├── freeze.cpython-36.pyc │ │ │ ├── hash.cpython-36.pyc │ │ │ ├── help.cpython-36.pyc │ │ │ ├── install.cpython-36.pyc │ │ │ ├── list.cpython-36.pyc │ │ │ ├── search.cpython-36.pyc │ │ │ ├── show.cpython-36.pyc │ │ │ ├── uninstall.cpython-36.pyc │ │ │ └── wheel.cpython-36.pyc │ │ ├── check.py │ │ ├── completion.py │ │ ├── download.py │ │ ├── freeze.py │ │ ├── hash.py │ │ ├── help.py │ │ ├── install.py │ │ ├── list.py │ │ ├── search.py │ │ ├── show.py │ │ ├── uninstall.py │ │ └── wheel.py │ ├── compat │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── dictconfig.cpython-36.pyc │ │ └── dictconfig.py │ ├── download.py │ ├── exceptions.py │ ├── index.py │ ├── locations.py │ ├── models │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── index.cpython-36.pyc │ │ └── index.py │ ├── operations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── check.cpython-36.pyc │ │ │ └── freeze.cpython-36.pyc │ │ ├── check.py │ │ └── freeze.py │ ├── pep425tags.py │ ├── req │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── req_file.cpython-36.pyc │ │ │ ├── req_install.cpython-36.pyc │ │ │ ├── req_set.cpython-36.pyc │ │ │ └── req_uninstall.cpython-36.pyc │ │ ├── req_file.py │ │ ├── req_install.py │ │ ├── req_set.py │ │ └── req_uninstall.py │ ├── status_codes.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── appdirs.cpython-36.pyc │ │ │ ├── build.cpython-36.pyc │ │ │ ├── deprecation.cpython-36.pyc │ │ │ ├── encoding.cpython-36.pyc │ │ │ ├── filesystem.cpython-36.pyc │ │ │ ├── glibc.cpython-36.pyc │ │ │ ├── hashes.cpython-36.pyc │ │ │ ├── logging.cpython-36.pyc │ │ │ ├── outdated.cpython-36.pyc │ │ │ ├── packaging.cpython-36.pyc │ │ │ ├── setuptools_build.cpython-36.pyc │ │ │ └── ui.cpython-36.pyc │ │ ├── appdirs.py │ │ ├── build.py │ │ ├── deprecation.py │ │ ├── encoding.py │ │ ├── filesystem.py │ │ ├── glibc.py │ │ ├── hashes.py │ │ ├── logging.py │ │ ├── outdated.py │ │ ├── packaging.py │ │ ├── setuptools_build.py │ │ └── ui.py │ ├── vcs │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── bazaar.cpython-36.pyc │ │ │ ├── git.cpython-36.pyc │ │ │ ├── mercurial.cpython-36.pyc │ │ │ └── subversion.cpython-36.pyc │ │ ├── bazaar.py │ │ ├── git.py │ │ ├── mercurial.py │ │ └── subversion.py │ └── wheel.py │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-36.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── appdirs.cpython-36.pyc │ │ │ ├── pyparsing.cpython-36.pyc │ │ │ └── six.cpython-36.pyc │ │ ├── appdirs.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-36.pyc │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── _compat.cpython-36.pyc │ │ │ │ ├── _structures.cpython-36.pyc │ │ │ │ ├── markers.cpython-36.pyc │ │ │ │ ├── requirements.cpython-36.pyc │ │ │ │ ├── specifiers.cpython-36.pyc │ │ │ │ ├── utils.cpython-36.pyc │ │ │ │ └── version.cpython-36.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pyparsing.py │ │ └── six.py │ └── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ └── __init__.cpython-36.pyc │ ├── pytz-2017.2.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ ├── top_level.txt │ └── zip-safe │ ├── pytz │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── exceptions.cpython-36.pyc │ │ ├── lazy.cpython-36.pyc │ │ ├── reference.cpython-36.pyc │ │ ├── tzfile.cpython-36.pyc │ │ └── tzinfo.cpython-36.pyc │ ├── exceptions.py │ ├── lazy.py │ ├── reference.py │ ├── tzfile.py │ ├── tzinfo.py │ └── 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 │ │ ├── America │ │ ├── Adak │ │ ├── Anchorage │ │ ├── Anguilla │ │ ├── Antigua │ │ ├── Araguaina │ │ ├── Argentina │ │ │ ├── Buenos_Aires │ │ │ ├── Catamarca │ │ │ ├── ComodRivadavia │ │ │ ├── Cordoba │ │ │ ├── Jujuy │ │ │ ├── La_Rioja │ │ │ ├── Mendoza │ │ │ ├── Rio_Gallegos │ │ │ ├── Salta │ │ │ ├── San_Juan │ │ │ ├── San_Luis │ │ │ ├── Tucuman │ │ │ └── Ushuaia │ │ ├── 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 │ │ │ ├── Knox │ │ │ ├── Marengo │ │ │ ├── Petersburg │ │ │ ├── Tell_City │ │ │ ├── Vevay │ │ │ ├── Vincennes │ │ │ └── Winamac │ │ ├── Indianapolis │ │ ├── Inuvik │ │ ├── Iqaluit │ │ ├── Jamaica │ │ ├── Jujuy │ │ ├── Juneau │ │ ├── Kentucky │ │ │ ├── Louisville │ │ │ └── Monticello │ │ ├── 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 │ │ │ ├── Beulah │ │ │ ├── Center │ │ │ └── New_Salem │ │ ├── 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 │ │ ├── Antarctica │ │ ├── Casey │ │ ├── Davis │ │ ├── DumontDUrville │ │ ├── Macquarie │ │ ├── Mawson │ │ ├── McMurdo │ │ ├── Palmer │ │ ├── Rothera │ │ ├── South_Pole │ │ ├── Syowa │ │ ├── Troll │ │ └── Vostok │ │ ├── Arctic │ │ └── Longyearbyen │ │ ├── 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 │ │ ├── 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 │ │ ├── Atlantic │ │ ├── Azores │ │ ├── Bermuda │ │ ├── Canary │ │ ├── Cape_Verde │ │ ├── Faeroe │ │ ├── Faroe │ │ ├── Jan_Mayen │ │ ├── Madeira │ │ ├── Reykjavik │ │ ├── South_Georgia │ │ ├── St_Helena │ │ └── Stanley │ │ ├── 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 │ │ ├── Brazil │ │ ├── Acre │ │ ├── DeNoronha │ │ ├── East │ │ └── West │ │ ├── CET │ │ ├── CST6CDT │ │ ├── Canada │ │ ├── Atlantic │ │ ├── Central │ │ ├── East-Saskatchewan │ │ ├── Eastern │ │ ├── Mountain │ │ ├── Newfoundland │ │ ├── Pacific │ │ ├── Saskatchewan │ │ └── Yukon │ │ ├── Chile │ │ ├── Continental │ │ └── EasterIsland │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── Iran │ │ ├── Israel │ │ ├── Jamaica │ │ ├── Japan │ │ ├── Kwajalein │ │ ├── Libya │ │ ├── MET │ │ ├── MST │ │ ├── MST7MDT │ │ ├── Mexico │ │ ├── BajaNorte │ │ ├── BajaSur │ │ └── General │ │ ├── NZ │ │ ├── NZ-CHAT │ │ ├── Navajo │ │ ├── PRC │ │ ├── PST8PDT │ │ ├── Pacific │ │ ├── Apia │ │ ├── Auckland │ │ ├── Bougainville │ │ ├── Chatham │ │ ├── Chuuk │ │ ├── Easter │ │ ├── Efate │ │ ├── Enderbury │ │ ├── Fakaofo │ │ ├── Fiji │ │ ├── Funafuti │ │ ├── Galapagos │ │ ├── Gambier │ │ ├── Guadalcanal │ │ ├── Guam │ │ ├── Honolulu │ │ ├── Johnston │ │ ├── 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 │ │ ├── Poland │ │ ├── Portugal │ │ ├── ROC │ │ ├── ROK │ │ ├── Singapore │ │ ├── Turkey │ │ ├── UCT │ │ ├── US │ │ ├── Alaska │ │ ├── Aleutian │ │ ├── Arizona │ │ ├── Central │ │ ├── East-Indiana │ │ ├── Eastern │ │ ├── Hawaii │ │ ├── Indiana-Starke │ │ ├── Michigan │ │ ├── Mountain │ │ ├── Pacific │ │ ├── Pacific-New │ │ └── Samoa │ │ ├── UTC │ │ ├── Universal │ │ ├── W-SU │ │ ├── WET │ │ ├── Zulu │ │ ├── iso3166.tab │ │ ├── localtime │ │ ├── posixrules │ │ ├── zone.tab │ │ └── zone1970.tab │ ├── requests-2.18.3.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt │ ├── requests │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── __version__.cpython-36.pyc │ │ ├── _internal_utils.cpython-36.pyc │ │ ├── adapters.cpython-36.pyc │ │ ├── api.cpython-36.pyc │ │ ├── auth.cpython-36.pyc │ │ ├── certs.cpython-36.pyc │ │ ├── compat.cpython-36.pyc │ │ ├── cookies.cpython-36.pyc │ │ ├── exceptions.cpython-36.pyc │ │ ├── help.cpython-36.pyc │ │ ├── hooks.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── packages.cpython-36.pyc │ │ ├── sessions.cpython-36.pyc │ │ ├── status_codes.cpython-36.pyc │ │ ├── structures.cpython-36.pyc │ │ └── utils.cpython-36.pyc │ ├── __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 │ ├── setuptools-28.8.0.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── metadata.json │ ├── top_level.txt │ └── zip-safe │ ├── setuptools │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── archive_util.cpython-36.pyc │ │ ├── depends.cpython-36.pyc │ │ ├── dist.cpython-36.pyc │ │ ├── extension.cpython-36.pyc │ │ ├── glob.cpython-36.pyc │ │ ├── launch.cpython-36.pyc │ │ ├── lib2to3_ex.cpython-36.pyc │ │ ├── monkey.cpython-36.pyc │ │ ├── msvc.cpython-36.pyc │ │ ├── namespaces.cpython-36.pyc │ │ ├── package_index.cpython-36.pyc │ │ ├── py26compat.cpython-36.pyc │ │ ├── py27compat.cpython-36.pyc │ │ ├── py31compat.cpython-36.pyc │ │ ├── sandbox.cpython-36.pyc │ │ ├── site-patch.cpython-36.pyc │ │ ├── ssl_support.cpython-36.pyc │ │ ├── unicode_utils.cpython-36.pyc │ │ ├── version.cpython-36.pyc │ │ └── windows_support.cpython-36.pyc │ ├── archive_util.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli.exe │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── alias.cpython-36.pyc │ │ │ ├── bdist_egg.cpython-36.pyc │ │ │ ├── bdist_rpm.cpython-36.pyc │ │ │ ├── bdist_wininst.cpython-36.pyc │ │ │ ├── build_ext.cpython-36.pyc │ │ │ ├── build_py.cpython-36.pyc │ │ │ ├── develop.cpython-36.pyc │ │ │ ├── easy_install.cpython-36.pyc │ │ │ ├── egg_info.cpython-36.pyc │ │ │ ├── install.cpython-36.pyc │ │ │ ├── install_egg_info.cpython-36.pyc │ │ │ ├── install_lib.cpython-36.pyc │ │ │ ├── install_scripts.cpython-36.pyc │ │ │ ├── py36compat.cpython-36.pyc │ │ │ ├── register.cpython-36.pyc │ │ │ ├── rotate.cpython-36.pyc │ │ │ ├── saveopts.cpython-36.pyc │ │ │ ├── sdist.cpython-36.pyc │ │ │ ├── setopt.cpython-36.pyc │ │ │ ├── test.cpython-36.pyc │ │ │ ├── upload.cpython-36.pyc │ │ │ └── upload_docs.cpython-36.pyc │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wininst.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.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 │ ├── depends.py │ ├── dist.py │ ├── extension.py │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui.exe │ ├── launch.py │ ├── lib2to3_ex.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── py26compat.py │ ├── py27compat.py │ ├── py31compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── site-patch.py │ ├── ssl_support.py │ ├── unicode_utils.py │ ├── version.py │ └── windows_support.py │ ├── six-1.10.0.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt │ ├── six.py │ ├── socks.py │ ├── sockshandler.py │ ├── twilio-6.5.0.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt │ ├── twilio │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── compat.cpython-36.pyc │ │ └── request_validator.cpython-36.pyc │ ├── base │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── deserialize.cpython-36.pyc │ │ │ ├── domain.cpython-36.pyc │ │ │ ├── exceptions.cpython-36.pyc │ │ │ ├── instance_context.cpython-36.pyc │ │ │ ├── instance_resource.cpython-36.pyc │ │ │ ├── list_resource.cpython-36.pyc │ │ │ ├── page.cpython-36.pyc │ │ │ ├── serialize.cpython-36.pyc │ │ │ ├── values.cpython-36.pyc │ │ │ └── version.cpython-36.pyc │ │ ├── deserialize.py │ │ ├── domain.py │ │ ├── exceptions.py │ │ ├── instance_context.py │ │ ├── instance_resource.py │ │ ├── list_resource.py │ │ ├── page.py │ │ ├── serialize.py │ │ ├── values.py │ │ └── version.py │ ├── compat.py │ ├── conf │ │ └── cacert.pem │ ├── http │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── debug.cpython-36.pyc │ │ │ ├── http_client.cpython-36.pyc │ │ │ ├── request.cpython-36.pyc │ │ │ ├── response.cpython-36.pyc │ │ │ └── validation_client.cpython-36.pyc │ │ ├── debug.py │ │ ├── http_client.py │ │ ├── request.py │ │ ├── response.py │ │ └── validation_client.py │ ├── jwt │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── compat.cpython-36.pyc │ │ ├── access_token │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── grants.cpython-36.pyc │ │ │ └── grants.py │ │ ├── client │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ ├── compat.py │ │ ├── taskrouter │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── capabilities.cpython-36.pyc │ │ │ └── capabilities.py │ │ └── validation │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ ├── request_validator.py │ ├── rest │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ ├── accounts │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── credential │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── public_key.cpython-36.pyc │ │ │ │ └── public_key.py │ │ ├── api │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v2010 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── account │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── application.cpython-36.pyc │ │ │ │ ├── authorized_connect_app.cpython-36.pyc │ │ │ │ ├── connect_app.cpython-36.pyc │ │ │ │ ├── key.cpython-36.pyc │ │ │ │ ├── new_key.cpython-36.pyc │ │ │ │ ├── new_signing_key.cpython-36.pyc │ │ │ │ ├── notification.cpython-36.pyc │ │ │ │ ├── outgoing_caller_id.cpython-36.pyc │ │ │ │ ├── short_code.cpython-36.pyc │ │ │ │ ├── signing_key.cpython-36.pyc │ │ │ │ ├── token.cpython-36.pyc │ │ │ │ ├── transcription.cpython-36.pyc │ │ │ │ └── validation_request.cpython-36.pyc │ │ │ │ ├── address │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── dependent_phone_number.cpython-36.pyc │ │ │ │ └── dependent_phone_number.py │ │ │ │ ├── application.py │ │ │ │ ├── authorized_connect_app.py │ │ │ │ ├── available_phone_number │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── local.cpython-36.pyc │ │ │ │ │ ├── mobile.cpython-36.pyc │ │ │ │ │ └── toll_free.cpython-36.pyc │ │ │ │ ├── local.py │ │ │ │ ├── mobile.py │ │ │ │ └── toll_free.py │ │ │ │ ├── call │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── feedback.cpython-36.pyc │ │ │ │ │ ├── feedback_summary.cpython-36.pyc │ │ │ │ │ ├── notification.cpython-36.pyc │ │ │ │ │ └── recording.cpython-36.pyc │ │ │ │ ├── feedback.py │ │ │ │ ├── feedback_summary.py │ │ │ │ ├── notification.py │ │ │ │ └── recording.py │ │ │ │ ├── conference │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── participant.cpython-36.pyc │ │ │ │ └── participant.py │ │ │ │ ├── connect_app.py │ │ │ │ ├── incoming_phone_number │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── local.cpython-36.pyc │ │ │ │ │ ├── mobile.cpython-36.pyc │ │ │ │ │ └── toll_free.cpython-36.pyc │ │ │ │ ├── assigned_add_on │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── assigned_add_on_extension.cpython-36.pyc │ │ │ │ │ └── assigned_add_on_extension.py │ │ │ │ ├── local.py │ │ │ │ ├── mobile.py │ │ │ │ └── toll_free.py │ │ │ │ ├── key.py │ │ │ │ ├── message │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── feedback.cpython-36.pyc │ │ │ │ │ └── media.cpython-36.pyc │ │ │ │ ├── feedback.py │ │ │ │ └── media.py │ │ │ │ ├── new_key.py │ │ │ │ ├── new_signing_key.py │ │ │ │ ├── notification.py │ │ │ │ ├── outgoing_caller_id.py │ │ │ │ ├── queue │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── member.cpython-36.pyc │ │ │ │ └── member.py │ │ │ │ ├── recording │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── transcription.cpython-36.pyc │ │ │ │ ├── add_on_result │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ │ └── payload │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── transcription.py │ │ │ │ ├── short_code.py │ │ │ │ ├── signing_key.py │ │ │ │ ├── sip │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── credential_list │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── credential.cpython-36.pyc │ │ │ │ │ └── credential.py │ │ │ │ ├── domain │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── credential_list_mapping.cpython-36.pyc │ │ │ │ │ │ └── ip_access_control_list_mapping.cpython-36.pyc │ │ │ │ │ ├── credential_list_mapping.py │ │ │ │ │ └── ip_access_control_list_mapping.py │ │ │ │ └── ip_access_control_list │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── ip_address.cpython-36.pyc │ │ │ │ │ └── ip_address.py │ │ │ │ ├── token.py │ │ │ │ ├── transcription.py │ │ │ │ ├── usage │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── trigger.cpython-36.pyc │ │ │ │ ├── record │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── all_time.cpython-36.pyc │ │ │ │ │ │ ├── daily.cpython-36.pyc │ │ │ │ │ │ ├── last_month.cpython-36.pyc │ │ │ │ │ │ ├── monthly.cpython-36.pyc │ │ │ │ │ │ ├── this_month.cpython-36.pyc │ │ │ │ │ │ ├── today.cpython-36.pyc │ │ │ │ │ │ ├── yearly.cpython-36.pyc │ │ │ │ │ │ └── yesterday.cpython-36.pyc │ │ │ │ │ ├── all_time.py │ │ │ │ │ ├── daily.py │ │ │ │ │ ├── last_month.py │ │ │ │ │ ├── monthly.py │ │ │ │ │ ├── this_month.py │ │ │ │ │ ├── today.py │ │ │ │ │ ├── yearly.py │ │ │ │ │ └── yesterday.py │ │ │ │ └── trigger.py │ │ │ │ └── validation_request.py │ │ ├── chat │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── credential.cpython-36.pyc │ │ │ │ ├── credential.py │ │ │ │ └── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── role.cpython-36.pyc │ │ │ │ │ ├── channel │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── invite.cpython-36.pyc │ │ │ │ │ │ ├── member.cpython-36.pyc │ │ │ │ │ │ └── message.cpython-36.pyc │ │ │ │ │ ├── invite.py │ │ │ │ │ ├── member.py │ │ │ │ │ └── message.py │ │ │ │ │ ├── role.py │ │ │ │ │ └── user │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── user_channel.cpython-36.pyc │ │ │ │ │ └── user_channel.py │ │ │ └── v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── credential.cpython-36.pyc │ │ │ │ ├── credential.py │ │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── role.cpython-36.pyc │ │ │ │ ├── channel │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── invite.cpython-36.pyc │ │ │ │ │ ├── member.cpython-36.pyc │ │ │ │ │ └── message.cpython-36.pyc │ │ │ │ ├── invite.py │ │ │ │ ├── member.py │ │ │ │ └── message.py │ │ │ │ ├── role.py │ │ │ │ └── user │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── user_channel.cpython-36.pyc │ │ │ │ └── user_channel.py │ │ ├── fax │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── fax │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── fax_media.cpython-36.pyc │ │ │ │ └── fax_media.py │ │ ├── ip_messaging │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── credential.cpython-36.pyc │ │ │ │ ├── credential.py │ │ │ │ └── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── role.cpython-36.pyc │ │ │ │ │ ├── channel │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── invite.cpython-36.pyc │ │ │ │ │ │ ├── member.cpython-36.pyc │ │ │ │ │ │ └── message.cpython-36.pyc │ │ │ │ │ ├── invite.py │ │ │ │ │ ├── member.py │ │ │ │ │ └── message.py │ │ │ │ │ ├── role.py │ │ │ │ │ └── user │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── user_channel.cpython-36.pyc │ │ │ │ │ └── user_channel.py │ │ │ └── v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── credential.cpython-36.pyc │ │ │ │ ├── credential.py │ │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── role.cpython-36.pyc │ │ │ │ ├── channel │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── invite.cpython-36.pyc │ │ │ │ │ ├── member.cpython-36.pyc │ │ │ │ │ └── message.cpython-36.pyc │ │ │ │ ├── invite.py │ │ │ │ ├── member.py │ │ │ │ └── message.py │ │ │ │ ├── role.py │ │ │ │ └── user │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── user_channel.cpython-36.pyc │ │ │ │ └── user_channel.py │ │ ├── lookups │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── phone_number.cpython-36.pyc │ │ │ │ └── phone_number.py │ │ ├── messaging │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── alpha_sender.cpython-36.pyc │ │ │ │ ├── phone_number.cpython-36.pyc │ │ │ │ └── short_code.cpython-36.pyc │ │ │ │ ├── alpha_sender.py │ │ │ │ ├── phone_number.py │ │ │ │ └── short_code.py │ │ ├── monitor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── alert.cpython-36.pyc │ │ │ │ └── event.cpython-36.pyc │ │ │ │ ├── alert.py │ │ │ │ └── event.py │ │ ├── notify │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── credential.cpython-36.pyc │ │ │ │ ├── credential.py │ │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── binding.cpython-36.pyc │ │ │ │ ├── notification.cpython-36.pyc │ │ │ │ └── segment.cpython-36.pyc │ │ │ │ ├── binding.py │ │ │ │ ├── notification.py │ │ │ │ ├── segment.py │ │ │ │ └── user │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── segment_memberships.cpython-36.pyc │ │ │ │ └── user_binding.cpython-36.pyc │ │ │ │ ├── segment_memberships.py │ │ │ │ └── user_binding.py │ │ ├── preview │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ ├── bulk_exports │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── export_configuration.cpython-36.pyc │ │ │ │ ├── export │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── day.cpython-36.pyc │ │ │ │ │ └── day.py │ │ │ │ └── export_configuration.py │ │ │ ├── hosted_numbers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── hosted_number_order.cpython-36.pyc │ │ │ │ └── hosted_number_order.py │ │ │ ├── marketplace │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── available_add_on │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── available_add_on_extension.cpython-36.pyc │ │ │ │ │ └── available_add_on_extension.py │ │ │ │ └── installed_add_on │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── installed_add_on_extension.cpython-36.pyc │ │ │ │ │ └── installed_add_on_extension.py │ │ │ ├── proxy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── phone_number.cpython-36.pyc │ │ │ │ │ └── short_code.cpython-36.pyc │ │ │ │ │ ├── phone_number.py │ │ │ │ │ ├── session │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── interaction.cpython-36.pyc │ │ │ │ │ ├── interaction.py │ │ │ │ │ └── participant │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── message_interaction.cpython-36.pyc │ │ │ │ │ │ └── message_interaction.py │ │ │ │ │ └── short_code.py │ │ │ ├── sync │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── service │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ │ ├── document │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ └── document_permission.cpython-36.pyc │ │ │ │ │ └── document_permission.py │ │ │ │ │ ├── sync_list │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ │ ├── sync_list_item.cpython-36.pyc │ │ │ │ │ │ └── sync_list_permission.cpython-36.pyc │ │ │ │ │ ├── sync_list_item.py │ │ │ │ │ └── sync_list_permission.py │ │ │ │ │ └── sync_map │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── sync_map_item.cpython-36.pyc │ │ │ │ │ └── sync_map_permission.cpython-36.pyc │ │ │ │ │ ├── sync_map_item.py │ │ │ │ │ └── sync_map_permission.py │ │ │ └── wireless │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── command.cpython-36.pyc │ │ │ │ └── rate_plan.cpython-36.pyc │ │ │ │ ├── command.py │ │ │ │ ├── rate_plan.py │ │ │ │ └── sim │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── usage.cpython-36.pyc │ │ │ │ └── usage.py │ │ ├── pricing │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── messaging │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── country.cpython-36.pyc │ │ │ │ └── country.py │ │ │ │ ├── phone_number │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── country.cpython-36.pyc │ │ │ │ └── country.py │ │ │ │ └── voice │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── country.cpython-36.pyc │ │ │ │ └── number.cpython-36.pyc │ │ │ │ ├── country.py │ │ │ │ └── number.py │ │ ├── sync │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── service │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── document │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── document_permission.cpython-36.pyc │ │ │ │ └── document_permission.py │ │ │ │ ├── sync_list │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── sync_list_item.cpython-36.pyc │ │ │ │ │ └── sync_list_permission.cpython-36.pyc │ │ │ │ ├── sync_list_item.py │ │ │ │ └── sync_list_permission.py │ │ │ │ └── sync_map │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── sync_map_item.cpython-36.pyc │ │ │ │ └── sync_map_permission.cpython-36.pyc │ │ │ │ ├── sync_map_item.py │ │ │ │ └── sync_map_permission.py │ │ ├── taskrouter │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── workspace │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── activity.cpython-36.pyc │ │ │ │ ├── event.cpython-36.pyc │ │ │ │ ├── task_channel.cpython-36.pyc │ │ │ │ └── workspace_statistics.cpython-36.pyc │ │ │ │ ├── activity.py │ │ │ │ ├── event.py │ │ │ │ ├── task │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── reservation.cpython-36.pyc │ │ │ │ └── reservation.py │ │ │ │ ├── task_channel.py │ │ │ │ ├── task_queue │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── task_queue_statistics.cpython-36.pyc │ │ │ │ │ └── task_queues_statistics.cpython-36.pyc │ │ │ │ ├── task_queue_statistics.py │ │ │ │ └── task_queues_statistics.py │ │ │ │ ├── worker │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ ├── reservation.cpython-36.pyc │ │ │ │ │ ├── worker_channel.cpython-36.pyc │ │ │ │ │ ├── worker_statistics.cpython-36.pyc │ │ │ │ │ └── workers_statistics.cpython-36.pyc │ │ │ │ ├── reservation.py │ │ │ │ ├── worker_channel.py │ │ │ │ ├── worker_statistics.py │ │ │ │ └── workers_statistics.py │ │ │ │ ├── workflow │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ │ └── workflow_statistics.cpython-36.pyc │ │ │ │ └── workflow_statistics.py │ │ │ │ └── workspace_statistics.py │ │ ├── trunking │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── trunk │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── credential_list.cpython-36.pyc │ │ │ │ ├── ip_access_control_list.cpython-36.pyc │ │ │ │ ├── origination_url.cpython-36.pyc │ │ │ │ └── phone_number.cpython-36.pyc │ │ │ │ ├── credential_list.py │ │ │ │ ├── ip_access_control_list.py │ │ │ │ ├── origination_url.py │ │ │ │ └── phone_number.py │ │ ├── video │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ ├── recording │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── room │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ │ │ └── recording │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-36.pyc │ │ └── wireless │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ └── __init__.cpython-36.pyc │ │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── command.cpython-36.pyc │ │ │ └── rate_plan.cpython-36.pyc │ │ │ ├── command.py │ │ │ ├── rate_plan.py │ │ │ └── sim │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── usage_record.cpython-36.pyc │ │ │ └── usage_record.py │ └── twiml │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── messaging_response.cpython-36.pyc │ │ └── voice_response.cpython-36.pyc │ │ ├── messaging_response.py │ │ └── voice_response.py │ ├── urllib3-1.22.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── metadata.json │ └── top_level.txt │ ├── urllib3 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── _collections.cpython-36.pyc │ │ ├── connection.cpython-36.pyc │ │ ├── connectionpool.cpython-36.pyc │ │ ├── exceptions.cpython-36.pyc │ │ ├── fields.cpython-36.pyc │ │ ├── filepost.cpython-36.pyc │ │ ├── poolmanager.cpython-36.pyc │ │ ├── request.cpython-36.pyc │ │ └── response.cpython-36.pyc │ ├── _collections.py │ ├── connection.py │ ├── connectionpool.py │ ├── contrib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── appengine.cpython-36.pyc │ │ │ ├── ntlmpool.cpython-36.pyc │ │ │ ├── pyopenssl.cpython-36.pyc │ │ │ ├── securetransport.cpython-36.pyc │ │ │ └── socks.cpython-36.pyc │ │ ├── _securetransport │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ ├── bindings.cpython-36.pyc │ │ │ │ └── low_level.cpython-36.pyc │ │ │ ├── bindings.py │ │ │ └── low_level.py │ │ ├── appengine.py │ │ ├── ntlmpool.py │ │ ├── pyopenssl.py │ │ ├── securetransport.py │ │ └── socks.py │ ├── exceptions.py │ ├── fields.py │ ├── filepost.py │ ├── packages │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ ├── ordered_dict.cpython-36.pyc │ │ │ └── six.cpython-36.pyc │ │ ├── backports │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-36.pyc │ │ │ │ └── makefile.cpython-36.pyc │ │ │ └── makefile.py │ │ ├── ordered_dict.py │ │ ├── six.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-36.pyc │ │ │ └── _implementation.cpython-36.pyc │ │ │ └── _implementation.py │ ├── poolmanager.py │ ├── request.py │ ├── response.py │ └── util │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── connection.cpython-36.pyc │ │ ├── request.cpython-36.pyc │ │ ├── response.cpython-36.pyc │ │ ├── retry.cpython-36.pyc │ │ ├── selectors.cpython-36.pyc │ │ ├── ssl_.cpython-36.pyc │ │ ├── timeout.cpython-36.pyc │ │ ├── url.cpython-36.pyc │ │ └── wait.cpython-36.pyc │ │ ├── connection.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── selectors.py │ │ ├── ssl_.py │ │ ├── timeout.py │ │ ├── url.py │ │ └── wait.py │ └── werkzeug │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── _compat.cpython-36.pyc │ ├── _internal.cpython-36.pyc │ ├── _reloader.cpython-36.pyc │ ├── datastructures.cpython-36.pyc │ ├── exceptions.cpython-36.pyc │ ├── filesystem.cpython-36.pyc │ ├── formparser.cpython-36.pyc │ ├── http.cpython-36.pyc │ ├── local.cpython-36.pyc │ ├── posixemulation.cpython-36.pyc │ ├── routing.cpython-36.pyc │ ├── script.cpython-36.pyc │ ├── security.cpython-36.pyc │ ├── serving.cpython-36.pyc │ ├── test.cpython-36.pyc │ ├── testapp.cpython-36.pyc │ ├── urls.cpython-36.pyc │ ├── useragents.cpython-36.pyc │ ├── utils.cpython-36.pyc │ ├── wrappers.cpython-36.pyc │ └── wsgi.cpython-36.pyc │ ├── _compat.py │ ├── _internal.py │ ├── _reloader.py │ ├── contrib │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── atom.cpython-36.pyc │ │ ├── cache.cpython-36.pyc │ │ ├── fixers.cpython-36.pyc │ │ ├── iterio.cpython-36.pyc │ │ ├── jsrouting.cpython-36.pyc │ │ ├── limiter.cpython-36.pyc │ │ ├── lint.cpython-36.pyc │ │ ├── profiler.cpython-36.pyc │ │ ├── securecookie.cpython-36.pyc │ │ ├── sessions.cpython-36.pyc │ │ ├── testtools.cpython-36.pyc │ │ └── wrappers.cpython-36.pyc │ ├── atom.py │ ├── cache.py │ ├── fixers.py │ ├── iterio.py │ ├── jsrouting.py │ ├── limiter.py │ ├── lint.py │ ├── profiler.py │ ├── securecookie.py │ ├── sessions.py │ ├── testtools.py │ └── wrappers.py │ ├── datastructures.py │ ├── debug │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── console.cpython-36.pyc │ │ ├── repr.cpython-36.pyc │ │ └── tbtools.cpython-36.pyc │ ├── console.py │ ├── repr.py │ ├── shared │ │ ├── FONT_LICENSE │ │ ├── console.png │ │ ├── debugger.js │ │ ├── jquery.js │ │ ├── less.png │ │ ├── more.png │ │ ├── source.png │ │ ├── style.css │ │ └── ubuntu.ttf │ └── tbtools.py │ ├── exceptions.py │ ├── filesystem.py │ ├── formparser.py │ ├── http.py │ ├── local.py │ ├── posixemulation.py │ ├── routing.py │ ├── script.py │ ├── security.py │ ├── serving.py │ ├── test.py │ ├── testapp.py │ ├── urls.py │ ├── useragents.py │ ├── utils.py │ ├── wrappers.py │ └── wsgi.py ├── pip-selfcheck.json └── pyvenv.cfg /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn taskrouter_dashboard:app 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/app.json -------------------------------------------------------------------------------- /heroku_env_setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/heroku_env_setup.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/images/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/images/chat.png -------------------------------------------------------------------------------- /static/images/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/images/phone.png -------------------------------------------------------------------------------- /static/images/taskrouter-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/images/taskrouter-logo.png -------------------------------------------------------------------------------- /static/images/twilio-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/images/twilio-logo.png -------------------------------------------------------------------------------- /static/images/twilio-mark-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/images/twilio-mark-red.png -------------------------------------------------------------------------------- /static/images/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/images/video.png -------------------------------------------------------------------------------- /static/taskrouter_dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/taskrouter_dashboard.css -------------------------------------------------------------------------------- /static/taskrouter_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/taskrouter_dashboard.html -------------------------------------------------------------------------------- /static/taskrouter_dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/static/taskrouter_dashboard.js -------------------------------------------------------------------------------- /taskrouter_dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/taskrouter_dashboard.jpg -------------------------------------------------------------------------------- /taskrouter_dashboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/taskrouter_dashboard.py -------------------------------------------------------------------------------- /taskrouter_workspace_event_url_setup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/taskrouter_workspace_event_url_setup.jpg -------------------------------------------------------------------------------- /venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/activate -------------------------------------------------------------------------------- /venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/activate.csh -------------------------------------------------------------------------------- /venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/activate.fish -------------------------------------------------------------------------------- /venv/bin/chardetect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/chardetect -------------------------------------------------------------------------------- /venv/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/easy_install -------------------------------------------------------------------------------- /venv/bin/easy_install-3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/easy_install-3.6 -------------------------------------------------------------------------------- /venv/bin/flask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/flask -------------------------------------------------------------------------------- /venv/bin/gunicorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/gunicorn -------------------------------------------------------------------------------- /venv/bin/gunicorn_paster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/gunicorn_paster -------------------------------------------------------------------------------- /venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/pip -------------------------------------------------------------------------------- /venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/pip3 -------------------------------------------------------------------------------- /venv/bin/pip3.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/pip3.6 -------------------------------------------------------------------------------- /venv/bin/pyjwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/bin/pyjwt -------------------------------------------------------------------------------- /venv/bin/python: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /venv/bin/python3: -------------------------------------------------------------------------------- 1 | /Library/Frameworks/Python.framework/Versions/3.6/bin/python3 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/Flask-0.12.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/Flask-0.12.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/Jinja2-2.9.6.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/Jinja2-2.9.6.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jinja2 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/MarkupSafe-1.0-py3.6.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/MarkupSafe-1.0-py3.6.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/MarkupSafe-1.0-py3.6.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | markupsafe 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/PyJWT-1.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/PyJWT-1.5.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/PyJWT-1.5.0.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/PyJWT-1.5.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | jwt 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/PySocks-1.6.7.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | UNKNOWN 2 | 3 | 4 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/PySocks-1.6.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/PySocks-1.6.7.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/Werkzeug-0.12.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/Werkzeug-0.12.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | werkzeug 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/certifi-2017.7.27.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/certifi-2017.7.27.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/certifi/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/certifi/core.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/certifi/old_root.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/certifi/old_root.pem -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/certifi/weak.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/certifi/weak.pem -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/big5freq.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/big5prober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/chardistribution.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/charsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/cp949prober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/enums.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/escprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/escsm.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/eucjpprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/euckrfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/euckrprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/euctwfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/euctwprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/gb2312freq.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/gb2312prober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/hebrewprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/jisfreq.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/jpcntx.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/langthaimodel.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/latin1prober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/mbcssm.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/sjisprober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/utf8prober.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/chardet/version.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click-6.7.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- 1 | UNKNOWN 2 | 3 | 4 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click-6.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click-6.7.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click-6.7.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click-6.7.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click-6.7.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click-6.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/_bashcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/_bashcomplete.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/_termui_impl.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/_textwrap.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/_unicodefun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/_unicodefun.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/_winconsole.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/core.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/decorators.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/formatting.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/globals.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/parser.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/termui.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/testing.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/types.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/click/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/easy_install.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/app.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/blueprints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/blueprints.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/cli.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/config.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/ctx.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/debughelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/debughelpers.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/ext/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/exthook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/exthook.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/globals.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/helpers.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/json.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/logging.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/sessions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/signals.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/templating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/templating.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/testing.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/views.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/flask/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/flask/wrappers.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn-19.7.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn-19.7.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | gunicorn 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/app/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/app/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/app/base.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/app/pasterapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/app/pasterapp.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/app/wsgiapp.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/arbiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/arbiter.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/argparse_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/argparse_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/config.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/debug.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/glogging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/glogging.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/http/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/http/_sendfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/http/_sendfile.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/http/body.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/http/body.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/http/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/http/errors.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/http/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/http/message.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/http/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/http/parser.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/http/unreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/http/unreader.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/http/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/http/wsgi.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/instrument/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/pidfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/pidfile.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/reloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/reloader.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/selectors.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/six.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/sock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/sock.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/systemd.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/util.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/workers/async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/workers/async.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/workers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/workers/base.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/workers/ggevent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/workers/ggevent.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/workers/gthread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/workers/gthread.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/gunicorn/workers/sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/gunicorn/workers/sync.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna-2.5.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna-2.5.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/idna-2.5.dist-info/METADATA -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna-2.5.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/idna-2.5.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna-2.5.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/idna-2.5.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna-2.5.dist-info/pbr.json: -------------------------------------------------------------------------------- 1 | {"is_release": true, "git_version": "0088bfc"} -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna-2.5.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/idna/codec.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/idna/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/idna/core.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/itsdangerous-0.24-py3.6.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/itsdangerous-0.24-py3.6.egg-info/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/itsdangerous-0.24-py3.6.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | itsdangerous 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/itsdangerous.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/itsdangerous.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/_stringdefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/_stringdefs.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/asyncfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/asyncfilters.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/asyncsupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/asyncsupport.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/bccache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/bccache.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/compiler.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/constants.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/debug.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/defaults.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/environment.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/ext.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/filters.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/idtracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/idtracking.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/lexer.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/loaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/loaders.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/meta.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/nodes.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/optimizer.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/parser.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/runtime.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/sandbox.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/tests.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jinja2/visitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jinja2/visitor.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jwt/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jwt/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jwt/algorithms.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/api_jws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jwt/api_jws.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/api_jwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jwt/api_jwt.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jwt/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/contrib/algorithms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jwt/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/jwt/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/jwt/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/markupsafe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/markupsafe/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/markupsafe/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/markupsafe/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/markupsafe/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/markupsafe/_constants.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/markupsafe/_native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/markupsafe/_native.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/markupsafe/_speedups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/markupsafe/_speedups.c -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip-9.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip-9.0.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip-9.0.1.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip-9.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip-9.0.1.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip-9.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/ordereddict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/ordereddict.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/re-vendor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/re-vendor.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/requests/packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/basecommand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/basecommand.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/baseparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/baseparser.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/cmdoptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/check.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/completion.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/download.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/freeze.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/hash.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/help.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/install.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/list.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/search.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/show.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/uninstall.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/commands/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/compat/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/compat/dictconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/compat/dictconfig.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/download.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/index.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/locations.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/models/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/models/index.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/operations/check.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/operations/freeze.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/pep425tags.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/req/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/req/req_file.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/req/req_install.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/req/req_set.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/req/req_uninstall.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/status_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/appdirs.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/build.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/deprecation.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/encoding.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/filesystem.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/glibc.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/hashes.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/logging.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/outdated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/outdated.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/packaging.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/utils/ui.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/vcs/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/vcs/bazaar.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/vcs/git.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/vcs/mercurial.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/vcs/subversion.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pip/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pip/wheel.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz-2017.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz-2017.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz-2017.2.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz-2017.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pytz 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz-2017.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/lazy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/lazy.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/reference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/reference.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/tzfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/tzfile.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/tzinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/tzinfo.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Accra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Accra -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Asmara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Asmara -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Asmera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Asmera -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bamako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bamako -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bangui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bangui -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Banjul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Banjul -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bissau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Bissau -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Cairo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Cairo -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Ceuta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Ceuta -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Dakar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Dakar -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Douala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Douala -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Harare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Harare -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Juba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Juba -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Kigali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Kigali -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lagos -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lome -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Luanda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Luanda -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lusaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Lusaka -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Malabo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Malabo -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Maputo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Maputo -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Maseru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Maseru -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Niamey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Niamey -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Tunis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Africa/Tunis -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Adak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Adak -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Aruba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Aruba -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Atka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Atka -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Bahia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Bahia -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Belem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Belem -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Boise: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Boise -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Jujuy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Jujuy -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Lima: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Lima -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Nome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Nome -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Sitka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Sitka -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Thule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/America/Thule -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Aden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Aden -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Almaty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Almaty -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Amman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Amman -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Anadyr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Anadyr -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Aqtau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Aqtau -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Aqtobe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Aqtobe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ashgabat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ashgabat -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Atyrau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Atyrau -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Baghdad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Baghdad -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Bahrain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Bahrain -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Baku: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Baku -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Bangkok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Bangkok -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Barnaul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Barnaul -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Beirut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Beirut -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Bishkek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Bishkek -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Brunei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Brunei -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Calcutta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Calcutta -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Chita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Chita -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Colombo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Colombo -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dacca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dacca -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Damascus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Damascus -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dhaka: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dhaka -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dili: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dili -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dubai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dubai -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dushanbe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Dushanbe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Gaza: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Gaza -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Harbin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Harbin -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Hebron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Hebron -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Hovd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Hovd -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Irkutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Irkutsk -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Istanbul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Istanbul -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Jakarta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Jakarta -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Jayapura: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Jayapura -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kabul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kabul -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Karachi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Karachi -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kashgar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kashgar -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Katmandu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Katmandu -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Khandyga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Khandyga -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kolkata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kolkata -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kuching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kuching -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kuwait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Kuwait -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Macao: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Macao -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Macau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Macau -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Magadan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Magadan -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Makassar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Makassar -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Manila: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Manila -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Muscat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Muscat -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Nicosia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Nicosia -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Omsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Omsk -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Oral: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Oral -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Qatar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Qatar -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Rangoon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Rangoon -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Riyadh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Riyadh -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Saigon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Saigon -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Sakhalin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Sakhalin -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Seoul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Seoul -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Shanghai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Shanghai -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Taipei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Taipei -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tashkent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tashkent -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tbilisi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tbilisi -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tehran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tehran -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tel_Aviv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tel_Aviv -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Thimbu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Thimbu -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Thimphu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Thimphu -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tokyo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tokyo -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tomsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Tomsk -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Urumqi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Urumqi -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ust-Nera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Ust-Nera -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yakutsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yakutsk -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yangon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yangon -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yerevan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Asia/Yerevan -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Australia/ACT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Australia/ACT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Australia/LHI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Australia/LHI -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Australia/NSW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Australia/NSW -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Brazil/Acre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Brazil/Acre -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Brazil/East: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Brazil/East -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Brazil/West: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Brazil/West -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/CET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/CET -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/CST6CDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/CST6CDT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Canada/Yukon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Canada/Yukon -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Cuba: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Cuba -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/EET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/EET -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/EST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/EST -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/EST5EDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/EST5EDT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Egypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Egypt -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Eire -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+0 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+1 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+10 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+11 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+12 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+2 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+3 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+4 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+5 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+6 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+7 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+8 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT+9 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-0 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-1 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-10 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-11 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-12 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-13 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-14 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-2 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-3 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-4 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-5 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-6 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-7 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-8 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT-9 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/GMT0 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/Greenwich -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/UCT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/UTC -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/Universal -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Etc/Zulu -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Athens: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Athens -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Berlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Berlin -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Dublin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Dublin -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Jersey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Jersey -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Kiev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Kiev -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Kirov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Kirov -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Lisbon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Lisbon -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/London: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/London -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Madrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Madrid -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Malta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Malta -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Minsk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Minsk -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Monaco: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Monaco -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Moscow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Moscow -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Oslo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Oslo -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Paris: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Paris -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Prague: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Prague -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Riga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Riga -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Rome: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Rome -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Samara: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Samara -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Skopje: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Skopje -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Sofia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Sofia -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Tirane: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Tirane -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Vaduz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Vaduz -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Vienna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Vienna -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Warsaw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Warsaw -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Zagreb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Zagreb -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Zurich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Europe/Zurich -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Factory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Factory -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/GB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/GB -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/GB-Eire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/GB-Eire -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/GMT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/GMT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/GMT+0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/GMT+0 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/GMT-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/GMT-0 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/GMT0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/GMT0 -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Greenwich: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Greenwich -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/HST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/HST -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Hongkong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Hongkong -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Iceland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Iceland -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Indian/Chagos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Indian/Chagos -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Indian/Cocos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Indian/Cocos -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Indian/Comoro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Indian/Comoro -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Indian/Mahe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Indian/Mahe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Iran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Iran -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Israel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Israel -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Jamaica: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Jamaica -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Japan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Japan -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Kwajalein: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Kwajalein -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Libya: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Libya -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/MET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/MET -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/MST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/MST -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/MST7MDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/MST7MDT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/NZ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/NZ -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/NZ-CHAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/NZ-CHAT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Navajo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Navajo -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/PRC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/PRC -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/PST8PDT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/PST8PDT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Apia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Apia -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Chuuk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Chuuk -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Efate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Efate -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Fiji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Fiji -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Guam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Guam -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Nauru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Nauru -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Niue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Niue -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Palau: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Palau -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Samoa -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Truk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Truk -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Wake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Wake -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Yap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Pacific/Yap -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Poland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Poland -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Portugal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Portugal -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/ROC -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/ROK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/ROK -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Singapore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Singapore -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Turkey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Turkey -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/UCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/UCT -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Alaska: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Alaska -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Aleutian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Aleutian -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Arizona: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Arizona -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Central: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Central -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Eastern: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Eastern -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Hawaii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Hawaii -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Michigan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Michigan -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Mountain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Mountain -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Pacific: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Pacific -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Samoa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/US/Samoa -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/UTC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/UTC -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Universal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Universal -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/W-SU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/W-SU -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/WET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/WET -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/Zulu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/Zulu -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/iso3166.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/iso3166.tab -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/localtime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/localtime -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/posixrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/posixrules -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/zone.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/zone.tab -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/pytz/zoneinfo/zone1970.tab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/pytz/zoneinfo/zone1970.tab -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests-2.18.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests-2.18.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/__version__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/_internal_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/adapters.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/api.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/auth.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/certs.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/cookies.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/help.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/hooks.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/models.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/packages.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/sessions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/status_codes.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/structures.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/requests/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools-28.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools-28.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools-28.8.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/py26compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/py26compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/py27compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/py27compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/py31compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/site-patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/site-patch.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/six-1.10.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/six-1.10.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/six-1.10.0.dist-info/RECORD -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/six-1.10.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/six-1.10.0.dist-info/WHEEL -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/six-1.10.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/six.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/socks.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/sockshandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/sockshandler.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio-6.5.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio-6.5.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | twilio 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/base/deserialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/base/deserialize.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/base/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/base/domain.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/base/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/base/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/base/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/base/page.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/base/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/base/serialize.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/base/values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/base/values.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/base/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/base/version.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/conf/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/conf/cacert.pem -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/http/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/http/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/http/debug.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/http/http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/http/http_client.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/http/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/http/request.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/http/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/http/response.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/jwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/jwt/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/jwt/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/jwt/compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/request_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/request_validator.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/rest/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/rest/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/rest/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/rest/api/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/rest/fax/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/rest/fax/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/twilio/twiml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/twilio/twiml/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3-1.22.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3-1.22.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/_collections.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/connection.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/fields.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/filepost.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/request.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/response.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/connection.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/request.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/response.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/selectors.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/url.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/__init__.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/_compat.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/_internal.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/_reloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/_reloader.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/contrib/atom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/contrib/atom.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/contrib/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/contrib/lint.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/debug/repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/debug/repr.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/exceptions.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/filesystem.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/formparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/formparser.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/http.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/local.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/routing.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/script.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/security.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/security.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/serving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/serving.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/test.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/testapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/testapp.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/urls.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/useragents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/useragents.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/utils.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/wrappers.py -------------------------------------------------------------------------------- /venv/lib/python3.6/site-packages/werkzeug/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/lib/python3.6/site-packages/werkzeug/wsgi.py -------------------------------------------------------------------------------- /venv/pip-selfcheck.json: -------------------------------------------------------------------------------- 1 | {"last_check":"2017-08-23T11:28:52Z","pypi_version":"9.0.1"} -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameerbadri/twilio-taskrouter-realtime-dashboard/HEAD/venv/pyvenv.cfg --------------------------------------------------------------------------------