├── Chapter03 ├── JavaSpringBootAPI │ ├── .vscode │ │ ├── launch.json │ │ └── settings.json │ ├── components │ │ ├── pubsub.yaml │ │ └── statestore.yaml │ ├── k8deployment.yaml │ └── schedule │ │ ├── .dockerignore │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── Dockerfile │ │ ├── components │ │ ├── eventhubs_binding.yaml │ │ ├── pubsub.yaml │ │ └── statestore.yaml │ │ ├── docker-compose.debug.yml │ │ ├── docker-compose.yml │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── jobsystem │ │ │ │ └── schedule │ │ │ │ ├── DemoApplication.java │ │ │ │ ├── ScheduleController.java │ │ │ │ ├── ScheduleJob.java │ │ │ │ └── ScheduleRepository.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── jobsystem │ │ └── schedule │ │ └── DemoApplicationTests.java ├── NodeJSAPI │ ├── .dockerignore │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── Dockerfile │ ├── components │ │ ├── eventhubs_binding.yaml │ │ ├── pubsub.yaml │ │ └── statestore.yaml │ ├── k8deployment.yaml │ ├── package-lock.json │ ├── package.json │ └── server.js └── PythonAPI │ ├── .gitignore │ ├── .vscode │ └── settings.json │ ├── app.py │ ├── env │ ├── Lib │ │ └── site-packages │ │ │ ├── __pycache__ │ │ │ └── easy_install.cpython-37.pyc │ │ │ ├── easy_install.py │ │ │ ├── pip-18.1.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── __main__.cpython-37.pyc │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── build_env.cpython-37.pyc │ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ │ ├── configuration.cpython-37.pyc │ │ │ │ │ ├── download.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ ├── locations.cpython-37.pyc │ │ │ │ │ ├── pep425tags.cpython-37.pyc │ │ │ │ │ ├── pyproject.cpython-37.pyc │ │ │ │ │ ├── resolve.cpython-37.pyc │ │ │ │ │ └── wheel.cpython-37.pyc │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── autocompletion.cpython-37.pyc │ │ │ │ │ │ ├── base_command.cpython-37.pyc │ │ │ │ │ │ ├── cmdoptions.cpython-37.pyc │ │ │ │ │ │ ├── main_parser.cpython-37.pyc │ │ │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ │ │ └── status_codes.cpython-37.pyc │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ │ ├── completion.cpython-37.pyc │ │ │ │ │ │ ├── configuration.cpython-37.pyc │ │ │ │ │ │ ├── download.cpython-37.pyc │ │ │ │ │ │ ├── freeze.cpython-37.pyc │ │ │ │ │ │ ├── hash.cpython-37.pyc │ │ │ │ │ │ ├── help.cpython-37.pyc │ │ │ │ │ │ ├── install.cpython-37.pyc │ │ │ │ │ │ ├── list.cpython-37.pyc │ │ │ │ │ │ ├── search.cpython-37.pyc │ │ │ │ │ │ ├── show.cpython-37.pyc │ │ │ │ │ │ ├── uninstall.cpython-37.pyc │ │ │ │ │ │ └── wheel.cpython-37.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ ├── completion.py │ │ │ │ │ ├── configuration.py │ │ │ │ │ ├── download.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ ├── hash.py │ │ │ │ │ ├── help.py │ │ │ │ │ ├── install.py │ │ │ │ │ ├── list.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── show.py │ │ │ │ │ ├── uninstall.py │ │ │ │ │ └── wheel.py │ │ │ │ ├── configuration.py │ │ │ │ ├── download.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── index.py │ │ │ │ ├── locations.py │ │ │ │ ├── models │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── candidate.cpython-37.pyc │ │ │ │ │ │ ├── format_control.cpython-37.pyc │ │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ │ └── link.cpython-37.pyc │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ └── link.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ │ ├── freeze.cpython-37.pyc │ │ │ │ │ │ └── prepare.cpython-37.pyc │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── constructors.cpython-37.pyc │ │ │ │ │ │ ├── req_file.cpython-37.pyc │ │ │ │ │ │ ├── req_install.cpython-37.pyc │ │ │ │ │ │ ├── req_set.cpython-37.pyc │ │ │ │ │ │ ├── req_tracker.cpython-37.pyc │ │ │ │ │ │ └── req_uninstall.cpython-37.pyc │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolve.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ │ ├── deprecation.cpython-37.pyc │ │ │ │ │ │ ├── encoding.cpython-37.pyc │ │ │ │ │ │ ├── filesystem.cpython-37.pyc │ │ │ │ │ │ ├── glibc.cpython-37.pyc │ │ │ │ │ │ ├── hashes.cpython-37.pyc │ │ │ │ │ │ ├── logging.cpython-37.pyc │ │ │ │ │ │ ├── misc.cpython-37.pyc │ │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ │ ├── outdated.cpython-37.pyc │ │ │ │ │ │ ├── packaging.cpython-37.pyc │ │ │ │ │ │ ├── setuptools_build.cpython-37.pyc │ │ │ │ │ │ ├── temp_dir.cpython-37.pyc │ │ │ │ │ │ ├── typing.cpython-37.pyc │ │ │ │ │ │ └── ui.cpython-37.pyc │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── deprecation.py │ │ │ │ │ ├── encoding.py │ │ │ │ │ ├── filesystem.py │ │ │ │ │ ├── glibc.py │ │ │ │ │ ├── hashes.py │ │ │ │ │ ├── logging.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── models.py │ │ │ │ │ ├── outdated.py │ │ │ │ │ ├── packaging.py │ │ │ │ │ ├── setuptools_build.py │ │ │ │ │ ├── temp_dir.py │ │ │ │ │ ├── typing.py │ │ │ │ │ └── ui.py │ │ │ │ ├── vcs │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── bazaar.cpython-37.pyc │ │ │ │ │ │ ├── git.cpython-37.pyc │ │ │ │ │ │ ├── mercurial.cpython-37.pyc │ │ │ │ │ │ └── subversion.cpython-37.pyc │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ └── wheel.py │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ ├── distro.cpython-37.pyc │ │ │ │ ├── ipaddress.cpython-37.pyc │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ ├── retrying.cpython-37.pyc │ │ │ │ └── six.cpython-37.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _cmd.cpython-37.pyc │ │ │ │ │ ├── adapter.cpython-37.pyc │ │ │ │ │ ├── cache.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── controller.cpython-37.pyc │ │ │ │ │ ├── filewrapper.cpython-37.pyc │ │ │ │ │ ├── heuristics.cpython-37.pyc │ │ │ │ │ ├── serialize.cpython-37.pyc │ │ │ │ │ └── wrapper.cpython-37.pyc │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── file_cache.cpython-37.pyc │ │ │ │ │ │ └── redis_cache.cpython-37.pyc │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __main__.cpython-37.pyc │ │ │ │ │ └── core.cpython-37.pyc │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── big5freq.cpython-37.pyc │ │ │ │ │ ├── big5prober.cpython-37.pyc │ │ │ │ │ ├── chardistribution.cpython-37.pyc │ │ │ │ │ ├── charsetgroupprober.cpython-37.pyc │ │ │ │ │ ├── charsetprober.cpython-37.pyc │ │ │ │ │ ├── codingstatemachine.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── cp949prober.cpython-37.pyc │ │ │ │ │ ├── enums.cpython-37.pyc │ │ │ │ │ ├── escprober.cpython-37.pyc │ │ │ │ │ ├── escsm.cpython-37.pyc │ │ │ │ │ ├── eucjpprober.cpython-37.pyc │ │ │ │ │ ├── euckrfreq.cpython-37.pyc │ │ │ │ │ ├── euckrprober.cpython-37.pyc │ │ │ │ │ ├── euctwfreq.cpython-37.pyc │ │ │ │ │ ├── euctwprober.cpython-37.pyc │ │ │ │ │ ├── gb2312freq.cpython-37.pyc │ │ │ │ │ ├── gb2312prober.cpython-37.pyc │ │ │ │ │ ├── hebrewprober.cpython-37.pyc │ │ │ │ │ ├── jisfreq.cpython-37.pyc │ │ │ │ │ ├── jpcntx.cpython-37.pyc │ │ │ │ │ ├── langbulgarianmodel.cpython-37.pyc │ │ │ │ │ ├── langcyrillicmodel.cpython-37.pyc │ │ │ │ │ ├── langgreekmodel.cpython-37.pyc │ │ │ │ │ ├── langhebrewmodel.cpython-37.pyc │ │ │ │ │ ├── langhungarianmodel.cpython-37.pyc │ │ │ │ │ ├── langthaimodel.cpython-37.pyc │ │ │ │ │ ├── langturkishmodel.cpython-37.pyc │ │ │ │ │ ├── latin1prober.cpython-37.pyc │ │ │ │ │ ├── mbcharsetprober.cpython-37.pyc │ │ │ │ │ ├── mbcsgroupprober.cpython-37.pyc │ │ │ │ │ ├── mbcssm.cpython-37.pyc │ │ │ │ │ ├── sbcharsetprober.cpython-37.pyc │ │ │ │ │ ├── sbcsgroupprober.cpython-37.pyc │ │ │ │ │ ├── sjisprober.cpython-37.pyc │ │ │ │ │ ├── universaldetector.cpython-37.pyc │ │ │ │ │ ├── utf8prober.cpython-37.pyc │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── chardetect.cpython-37.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 │ │ │ │ ├── colorama │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── ansi.cpython-37.pyc │ │ │ │ │ ├── ansitowin32.cpython-37.pyc │ │ │ │ │ ├── initialise.cpython-37.pyc │ │ │ │ │ ├── win32.cpython-37.pyc │ │ │ │ │ └── winterm.cpython-37.pyc │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── database.cpython-37.pyc │ │ │ │ │ ├── index.cpython-37.pyc │ │ │ │ │ ├── locators.cpython-37.pyc │ │ │ │ │ ├── manifest.cpython-37.pyc │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ ├── metadata.cpython-37.pyc │ │ │ │ │ ├── resources.cpython-37.pyc │ │ │ │ │ ├── scripts.cpython-37.pyc │ │ │ │ │ ├── util.cpython-37.pyc │ │ │ │ │ ├── version.cpython-37.pyc │ │ │ │ │ └── wheel.cpython-37.pyc │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── misc.cpython-37.pyc │ │ │ │ │ │ ├── shutil.cpython-37.pyc │ │ │ │ │ │ ├── sysconfig.cpython-37.pyc │ │ │ │ │ │ └── tarfile.cpython-37.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-37.pyc │ │ │ │ │ ├── _ihatexml.cpython-37.pyc │ │ │ │ │ ├── _inputstream.cpython-37.pyc │ │ │ │ │ ├── _tokenizer.cpython-37.pyc │ │ │ │ │ ├── _utils.cpython-37.pyc │ │ │ │ │ ├── constants.cpython-37.pyc │ │ │ │ │ ├── html5parser.cpython-37.pyc │ │ │ │ │ └── serializer.cpython-37.pyc │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _base.cpython-37.pyc │ │ │ │ │ │ ├── datrie.cpython-37.pyc │ │ │ │ │ │ └── py.cpython-37.pyc │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── datrie.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── alphabeticalattributes.cpython-37.pyc │ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ │ ├── inject_meta_charset.cpython-37.pyc │ │ │ │ │ │ ├── lint.cpython-37.pyc │ │ │ │ │ │ ├── optionaltags.cpython-37.pyc │ │ │ │ │ │ ├── sanitizer.cpython-37.pyc │ │ │ │ │ │ └── whitespace.cpython-37.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-37.pyc │ │ │ │ │ │ ├── genshi.cpython-37.pyc │ │ │ │ │ │ └── sax.cpython-37.pyc │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ │ ├── dom.cpython-37.pyc │ │ │ │ │ │ ├── etree.cpython-37.pyc │ │ │ │ │ │ └── etree_lxml.cpython-37.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── base.cpython-37.pyc │ │ │ │ │ ├── dom.cpython-37.pyc │ │ │ │ │ ├── etree.cpython-37.pyc │ │ │ │ │ ├── etree_lxml.cpython-37.pyc │ │ │ │ │ └── genshi.cpython-37.pyc │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── codec.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ │ ├── idnadata.cpython-37.pyc │ │ │ │ │ ├── intranges.cpython-37.pyc │ │ │ │ │ ├── package_data.cpython-37.pyc │ │ │ │ │ └── uts46data.cpython-37.pyc │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── lockfile │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── linklockfile.cpython-37.pyc │ │ │ │ │ ├── mkdirlockfile.cpython-37.pyc │ │ │ │ │ ├── pidlockfile.cpython-37.pyc │ │ │ │ │ ├── sqlitelockfile.cpython-37.pyc │ │ │ │ │ └── symlinklockfile.cpython-37.pyc │ │ │ │ ├── linklockfile.py │ │ │ │ ├── mkdirlockfile.py │ │ │ │ ├── pidlockfile.py │ │ │ │ ├── sqlitelockfile.py │ │ │ │ └── symlinklockfile.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _version.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ └── fallback.cpython-37.pyc │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _in_process.cpython-37.pyc │ │ │ │ │ ├── check.cpython-37.pyc │ │ │ │ │ ├── colorlog.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── envbuild.cpython-37.pyc │ │ │ │ │ └── wrappers.cpython-37.pyc │ │ │ │ ├── _in_process.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── envbuild.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ └── py31compat.cpython-37.pyc │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── bar.cpython-37.pyc │ │ │ │ │ ├── counter.cpython-37.pyc │ │ │ │ │ ├── helpers.cpython-37.pyc │ │ │ │ │ └── spinner.cpython-37.pyc │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ ├── helpers.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── pytoml │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ │ └── writer.cpython-37.pyc │ │ │ │ ├── core.py │ │ │ │ ├── parser.py │ │ │ │ └── writer.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── __version__.cpython-37.pyc │ │ │ │ │ ├── _internal_utils.cpython-37.pyc │ │ │ │ │ ├── adapters.cpython-37.pyc │ │ │ │ │ ├── api.cpython-37.pyc │ │ │ │ │ ├── auth.cpython-37.pyc │ │ │ │ │ ├── certs.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── cookies.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── help.cpython-37.pyc │ │ │ │ │ ├── hooks.cpython-37.pyc │ │ │ │ │ ├── models.cpython-37.pyc │ │ │ │ │ ├── packages.cpython-37.pyc │ │ │ │ │ ├── sessions.cpython-37.pyc │ │ │ │ │ ├── status_codes.cpython-37.pyc │ │ │ │ │ ├── structures.cpython-37.pyc │ │ │ │ │ └── utils.cpython-37.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 │ │ │ │ ├── retrying.py │ │ │ │ ├── six.py │ │ │ │ ├── urllib3 │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _collections.cpython-37.pyc │ │ │ │ │ ├── connection.cpython-37.pyc │ │ │ │ │ ├── connectionpool.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── fields.cpython-37.pyc │ │ │ │ │ ├── filepost.cpython-37.pyc │ │ │ │ │ ├── poolmanager.cpython-37.pyc │ │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ │ └── response.cpython-37.pyc │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── appengine.cpython-37.pyc │ │ │ │ │ │ ├── ntlmpool.cpython-37.pyc │ │ │ │ │ │ ├── pyopenssl.cpython-37.pyc │ │ │ │ │ │ ├── securetransport.cpython-37.pyc │ │ │ │ │ │ └── socks.cpython-37.pyc │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ │ ├── bindings.cpython-37.pyc │ │ │ │ │ │ │ └── low_level.cpython-37.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-37.pyc │ │ │ │ │ │ ├── ordered_dict.cpython-37.pyc │ │ │ │ │ │ └── six.cpython-37.pyc │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ │ └── makefile.cpython-37.pyc │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── ordered_dict.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ └── _implementation.cpython-37.pyc │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── connection.cpython-37.pyc │ │ │ │ │ ├── queue.cpython-37.pyc │ │ │ │ │ ├── request.cpython-37.pyc │ │ │ │ │ ├── response.cpython-37.pyc │ │ │ │ │ ├── retry.cpython-37.pyc │ │ │ │ │ ├── ssl_.cpython-37.pyc │ │ │ │ │ ├── timeout.cpython-37.pyc │ │ │ │ │ ├── url.cpython-37.pyc │ │ │ │ │ └── wait.cpython-37.pyc │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── labels.cpython-37.pyc │ │ │ │ ├── mklabels.cpython-37.pyc │ │ │ │ ├── tests.cpython-37.pyc │ │ │ │ └── x_user_defined.cpython-37.pyc │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── py31compat.cpython-37.pyc │ │ │ ├── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── appdirs.cpython-37.pyc │ │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ │ └── six.cpython-37.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ │ └── version.cpython-37.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-37.pyc │ │ │ └── py31compat.py │ │ │ ├── setuptools-40.6.2.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── top_level.txt │ │ │ └── zip-safe │ │ │ └── setuptools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── _deprecation_warning.cpython-37.pyc │ │ │ ├── archive_util.cpython-37.pyc │ │ │ ├── build_meta.cpython-37.pyc │ │ │ ├── config.cpython-37.pyc │ │ │ ├── dep_util.cpython-37.pyc │ │ │ ├── depends.cpython-37.pyc │ │ │ ├── dist.cpython-37.pyc │ │ │ ├── extension.cpython-37.pyc │ │ │ ├── glibc.cpython-37.pyc │ │ │ ├── glob.cpython-37.pyc │ │ │ ├── launch.cpython-37.pyc │ │ │ ├── lib2to3_ex.cpython-37.pyc │ │ │ ├── monkey.cpython-37.pyc │ │ │ ├── msvc.cpython-37.pyc │ │ │ ├── namespaces.cpython-37.pyc │ │ │ ├── package_index.cpython-37.pyc │ │ │ ├── pep425tags.cpython-37.pyc │ │ │ ├── py27compat.cpython-37.pyc │ │ │ ├── py31compat.cpython-37.pyc │ │ │ ├── py33compat.cpython-37.pyc │ │ │ ├── py36compat.cpython-37.pyc │ │ │ ├── sandbox.cpython-37.pyc │ │ │ ├── site-patch.cpython-37.pyc │ │ │ ├── ssl_support.cpython-37.pyc │ │ │ ├── unicode_utils.cpython-37.pyc │ │ │ ├── version.cpython-37.pyc │ │ │ ├── wheel.cpython-37.pyc │ │ │ └── windows_support.cpython-37.pyc │ │ │ ├── _deprecation_warning.py │ │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── pyparsing.cpython-37.pyc │ │ │ │ └── six.cpython-37.pyc │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-37.pyc │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ ├── _structures.cpython-37.pyc │ │ │ │ │ ├── markers.cpython-37.pyc │ │ │ │ │ ├── requirements.cpython-37.pyc │ │ │ │ │ ├── specifiers.cpython-37.pyc │ │ │ │ │ ├── utils.cpython-37.pyc │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ │ ├── archive_util.py │ │ │ ├── build_meta.py │ │ │ ├── cli-32.exe │ │ │ ├── cli-64.exe │ │ │ ├── cli.exe │ │ │ ├── command │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── alias.cpython-37.pyc │ │ │ │ ├── bdist_egg.cpython-37.pyc │ │ │ │ ├── bdist_rpm.cpython-37.pyc │ │ │ │ ├── bdist_wininst.cpython-37.pyc │ │ │ │ ├── build_clib.cpython-37.pyc │ │ │ │ ├── build_ext.cpython-37.pyc │ │ │ │ ├── build_py.cpython-37.pyc │ │ │ │ ├── develop.cpython-37.pyc │ │ │ │ ├── dist_info.cpython-37.pyc │ │ │ │ ├── easy_install.cpython-37.pyc │ │ │ │ ├── egg_info.cpython-37.pyc │ │ │ │ ├── install.cpython-37.pyc │ │ │ │ ├── install_egg_info.cpython-37.pyc │ │ │ │ ├── install_lib.cpython-37.pyc │ │ │ │ ├── install_scripts.cpython-37.pyc │ │ │ │ ├── py36compat.cpython-37.pyc │ │ │ │ ├── register.cpython-37.pyc │ │ │ │ ├── rotate.cpython-37.pyc │ │ │ │ ├── saveopts.cpython-37.pyc │ │ │ │ ├── sdist.cpython-37.pyc │ │ │ │ ├── setopt.cpython-37.pyc │ │ │ │ ├── test.cpython-37.pyc │ │ │ │ ├── upload.cpython-37.pyc │ │ │ │ └── upload_docs.cpython-37.pyc │ │ │ ├── alias.py │ │ │ ├── bdist_egg.py │ │ │ ├── bdist_rpm.py │ │ │ ├── bdist_wininst.py │ │ │ ├── build_clib.py │ │ │ ├── build_ext.py │ │ │ ├── build_py.py │ │ │ ├── develop.py │ │ │ ├── dist_info.py │ │ │ ├── easy_install.py │ │ │ ├── egg_info.py │ │ │ ├── install.py │ │ │ ├── install_egg_info.py │ │ │ ├── install_lib.py │ │ │ ├── install_scripts.py │ │ │ ├── launcher manifest.xml │ │ │ ├── py36compat.py │ │ │ ├── register.py │ │ │ ├── rotate.py │ │ │ ├── saveopts.py │ │ │ ├── sdist.py │ │ │ ├── setopt.py │ │ │ ├── test.py │ │ │ ├── upload.py │ │ │ └── upload_docs.py │ │ │ ├── config.py │ │ │ ├── dep_util.py │ │ │ ├── depends.py │ │ │ ├── dist.py │ │ │ ├── extension.py │ │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── glibc.py │ │ │ ├── glob.py │ │ │ ├── gui-32.exe │ │ │ ├── gui-64.exe │ │ │ ├── gui.exe │ │ │ ├── launch.py │ │ │ ├── lib2to3_ex.py │ │ │ ├── monkey.py │ │ │ ├── msvc.py │ │ │ ├── namespaces.py │ │ │ ├── package_index.py │ │ │ ├── pep425tags.py │ │ │ ├── py27compat.py │ │ │ ├── py31compat.py │ │ │ ├── py33compat.py │ │ │ ├── py36compat.py │ │ │ ├── sandbox.py │ │ │ ├── script (dev).tmpl │ │ │ ├── script.tmpl │ │ │ ├── site-patch.py │ │ │ ├── ssl_support.py │ │ │ ├── unicode_utils.py │ │ │ ├── version.py │ │ │ ├── wheel.py │ │ │ └── windows_support.py │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── activate │ │ ├── activate.bat │ │ ├── deactivate.bat │ │ ├── easy_install-3.7.exe │ │ ├── easy_install.exe │ │ ├── pip.exe │ │ ├── pip3.7.exe │ │ ├── pip3.exe │ │ ├── python.exe │ │ └── pythonw.exe │ └── pyvenv.cfg │ └── sendgrid.env ├── Chapter04 └── NetCoreAPI │ ├── .dockerignore │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Consumer.cs │ ├── Dockerfile │ ├── JobRequestHostedService.cs │ ├── KafkaHttpManager.cs │ ├── NetCoreAPI.csproj │ ├── NotiificationHostedService.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.json │ └── k8deployment.yaml ├── Chapter05 └── FrontEnd │ ├── .editorconfig │ ├── .gitignore │ ├── .vscode │ └── launch.json │ ├── Dockerfile │ ├── README.md │ ├── angular.json │ ├── browserslist │ ├── dist │ └── JobOrderSystem │ │ ├── agent-agent-module-es2015.js │ │ ├── agent-agent-module-es2015.js.map │ │ ├── agent-agent-module-es5.js │ │ ├── agent-agent-module-es5.js.map │ │ ├── assets │ │ ├── cardimg1.jpg │ │ ├── cardimg2.jpg │ │ ├── cardimg3.jpg │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ ├── img3.jpg │ │ └── img41.jpg │ │ ├── common-es2015.js │ │ ├── common-es2015.js.map │ │ ├── common-es5.js │ │ ├── common-es5.js.map │ │ ├── default~agent-agent-module~jobrequest-jobrequest-module~login-login-module-es2015.js │ │ ├── default~agent-agent-module~jobrequest-jobrequest-module~login-login-module-es2015.js.map │ │ ├── default~agent-agent-module~jobrequest-jobrequest-module~login-login-module-es5.js │ │ ├── default~agent-agent-module~jobrequest-jobrequest-module~login-login-module-es5.js.map │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── jobrequest-jobrequest-module-es2015.js │ │ ├── jobrequest-jobrequest-module-es2015.js.map │ │ ├── jobrequest-jobrequest-module-es5.js │ │ ├── jobrequest-jobrequest-module-es5.js.map │ │ ├── login-login-module-es2015.js │ │ ├── login-login-module-es2015.js.map │ │ ├── login-login-module-es5.js │ │ ├── login-login-module-es5.js.map │ │ ├── main-es2015.js │ │ ├── main-es2015.js.map │ │ ├── main-es5.js │ │ ├── main-es5.js.map │ │ ├── polyfills-es2015.js │ │ ├── polyfills-es2015.js.map │ │ ├── polyfills-es5.js │ │ ├── polyfills-es5.js.map │ │ ├── runtime-es2015.js │ │ ├── runtime-es2015.js.map │ │ ├── runtime-es5.js │ │ ├── runtime-es5.js.map │ │ ├── scripts.js │ │ ├── scripts.js.map │ │ ├── styles-es2015.js │ │ ├── styles-es2015.js.map │ │ ├── styles-es5.js │ │ ├── styles-es5.js.map │ │ ├── vendor-es2015.js │ │ ├── vendor-es2015.js.map │ │ ├── vendor-es5.js │ │ └── vendor-es5.js.map │ ├── e2e │ ├── protractor.conf.js │ ├── src │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.json │ ├── k8deployment.yaml │ ├── karma.conf.js │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── app │ │ ├── agent │ │ │ ├── agent-jobprocess │ │ │ │ ├── agent-jobprocess.component.css │ │ │ │ ├── agent-jobprocess.component.html │ │ │ │ ├── agent-jobprocess.component.spec.ts │ │ │ │ └── agent-jobprocess.component.ts │ │ │ ├── agent-routing.module.ts │ │ │ ├── agent.guard.spec.ts │ │ │ ├── agent.guard.ts │ │ │ ├── agent.module.ts │ │ │ └── agentlist │ │ │ │ ├── agentlist.component.css │ │ │ │ ├── agentlist.component.html │ │ │ │ ├── agentlist.component.spec.ts │ │ │ │ └── agentlist.component.ts │ │ ├── app-routing.module.ts │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── data_service │ │ │ ├── agent.service.spec.ts │ │ │ ├── agent.service.ts │ │ │ ├── config.service.spec.ts │ │ │ ├── config.service.ts │ │ │ ├── jobrequest.service.spec.ts │ │ │ └── jobrequest.service.ts │ │ ├── home │ │ │ ├── home.component.css │ │ │ ├── home.component.html │ │ │ ├── home.component.spec.ts │ │ │ └── home.component.ts │ │ ├── jobrequest │ │ │ ├── jobrequest-routing.module.ts │ │ │ ├── jobrequest.guard.spec.ts │ │ │ ├── jobrequest.guard.ts │ │ │ ├── jobrequest.module.ts │ │ │ ├── jobrequest │ │ │ │ ├── jobrequest.component.css │ │ │ │ ├── jobrequest.component.html │ │ │ │ ├── jobrequest.component.spec.ts │ │ │ │ └── jobrequestcomponent.ts │ │ │ ├── jobrequestdetail │ │ │ │ ├── jobrequestdetail.component.css │ │ │ │ ├── jobrequestdetail.component.html │ │ │ │ ├── jobrequestdetail.component.spec.ts │ │ │ │ └── jobrequestdetail.component.ts │ │ │ └── jobrequestlist │ │ │ │ ├── jobrequestlist.component.css │ │ │ │ ├── jobrequestlist.component.html │ │ │ │ ├── jobrequestlist.component.spec.ts │ │ │ │ └── jobrequestlist.component.ts │ │ ├── login │ │ │ ├── authorization.service.spec.ts │ │ │ ├── authorization.service.ts │ │ │ ├── login-routing.module.ts │ │ │ ├── login.component.css │ │ │ ├── login.component.html │ │ │ ├── login.component.spec.ts │ │ │ ├── login.component.ts │ │ │ └── login.module.ts │ │ └── models │ │ │ ├── agent.ts │ │ │ ├── jobrequest.ts │ │ │ └── loggeduser.ts │ ├── assets │ │ ├── .gitkeep │ │ ├── cardimg1.jpg │ │ ├── cardimg2.jpg │ │ ├── cardimg3.jpg │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ ├── img3.jpg │ │ └── img41.jpg │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.ico │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ └── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.json │ ├── tsconfig.spec.json │ └── tslint.json ├── Chapter08 └── azure-pipelines.yml ├── Chapter09 ├── booktheme │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── themes │ │ └── booktheme-color-theme.json │ └── vsc-extension-quickstart.md ├── k8sobj │ ├── .vscode │ │ └── launch.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package.json │ ├── snippets │ │ └── snippets.code-snippets │ └── vsc-extension-quickstart.md └── vscode-first │ ├── .eslintrc.json │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── Commands │ │ └── commands.ts │ ├── extension.ts │ └── test │ │ ├── runTest.ts │ │ └── suite │ │ ├── extension.test.ts │ │ └── index.ts │ ├── tsconfig.json │ └── vsc-extension-quickstart.md ├── LICENSE └── README.md /Chapter03/JavaSpringBootAPI/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "java.configuration.updateBuildConfiguration": "automatic" 3 | } -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/components/pubsub.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: dapr.io/v1alpha1 2 | kind: Component 3 | metadata: 4 | name: messagebus 5 | spec: 6 | type: pubsub.redis 7 | metadata: 8 | - name: redisHost 9 | value: localhost:6379 10 | - name: redisPassword 11 | value: "" 12 | -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/components/statestore.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: dapr.io/v1alpha1 2 | kind: Component 3 | metadata: 4 | name: statestore 5 | spec: 6 | type: state.redis 7 | metadata: 8 | - name: redisHost 9 | value: localhost:6379 10 | - name: redisPassword 11 | value: "" 12 | - name: actorStateStore 13 | value: "true" 14 | -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/JavaSpringBootAPI/schedule/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip 2 | wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar 3 | -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/components/pubsub.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: dapr.io/v1alpha1 2 | kind: Component 3 | metadata: 4 | name: messagebus 5 | spec: 6 | type: pubsub.redis 7 | metadata: 8 | - name: redisHost 9 | value: localhost:6379 10 | - name: redisPassword 11 | value: "" 12 | -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/components/statestore.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: dapr.io/v1alpha1 2 | kind: Component 3 | metadata: 4 | name: statestore 5 | spec: 6 | type: state.redis 7 | metadata: 8 | - name: redisHost 9 | value: localhost:6379 10 | - name: redisPassword 11 | value: "" 12 | - name: actorStateStore 13 | value: "true" 14 | -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/docker-compose.debug.yml: -------------------------------------------------------------------------------- 1 | version: '3.4' 2 | 3 | services: 4 | schedule: 5 | image: schedule 6 | build: 7 | context: . 8 | dockerfile: Dockerfile 9 | environment: 10 | JAVA_OPTS: -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=5005,quiet=y 11 | ports: 12 | - 9003 13 | - 5005:5005 -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/docker-compose.yml: -------------------------------------------------------------------------------- 1 | version: '3.4' 2 | 3 | services: 4 | schedule: 5 | image: schedule 6 | build: . 7 | ports: 8 | - 9003 -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | server.port = 9003 2 | spring.data.mongodb.database=scheduledjobs 3 | spring.data.mongodb.uri=mongodb://jobinfo:hN4mjjpgCx4WYF8QnzI8OxBiNjW8h9TVXli7Vpa4FOtXf9lQbIlak6I3gDyjznIgazG4Y5HzpT5i4szyU7Gz1g==@jobinfo.mongo.cosmos.azure.com:10255/?ssl=true&replicaSet=globaldb&retrywrites=false&maxIdleTimeMS=120000&appName=@jobinfo@ 4 | -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/src/test/java/com/jobsystem/schedule/DemoApplicationTests.java: -------------------------------------------------------------------------------- 1 | package com.jobsystem.schedule; 2 | 3 | import org.junit.jupiter.api.Test; 4 | import org.springframework.boot.test.context.SpringBootTest; 5 | 6 | @SpringBootTest 7 | class DemoApplicationTests { 8 | 9 | @Test 10 | void contextLoads() { 11 | } 12 | 13 | } 14 | -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | "configurations": [ 3 | { 4 | "name": "Docker Node.js Launch", 5 | "type": "docker", 6 | "request": "launch", 7 | "preLaunchTask": "docker-run: debug", 8 | "platform": "node" 9 | } 10 | ] 11 | } -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:10.13-alpine 2 | RUN mkdir -p /usr/src/app 3 | WORKDIR /usr/src/app 4 | COPY . /usr/src/app 5 | RUN apk --no-cache --virtual build-dependencies add \ 6 | python \ 7 | bash \ 8 | make \ 9 | g++ \ 10 | && npm install \ 11 | && apk del build-dependencies 12 | 13 | EXPOSE 3001 14 | CMD npm start -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/components/pubsub.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: dapr.io/v1alpha1 2 | kind: Component 3 | metadata: 4 | name: messagebus 5 | spec: 6 | type: pubsub.redis 7 | metadata: 8 | - name: redisHost 9 | value: localhost:6379 10 | - name: redisPassword 11 | value: "" 12 | -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/components/statestore.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: dapr.io/v1alpha1 2 | kind: Component 3 | metadata: 4 | name: statestore 5 | spec: 6 | type: state.redis 7 | metadata: 8 | - name: redisHost 9 | value: localhost:6379 10 | - name: redisPassword 11 | value: "" 12 | - name: actorStateStore 13 | value: "true" 14 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/.gitignore -------------------------------------------------------------------------------- /Chapter03/PythonAPI/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "python.pythonPath": "C:\\Users\\ovmehboo\\AppData\\Local\\Programs\\Python\\Python37\\python.exe" 3 | } -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/__pycache__/easy_install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/__pycache__/easy_install.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- 1 | """Run the EasyInstall command""" 2 | 3 | if __name__ == '__main__': 4 | from setuptools.command.easy_install import main 5 | main() 6 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "18.1" 2 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/download.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/download.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/index.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/resolve.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/resolve.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/outdated.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/outdated.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "f=getattr(tokenize, 'open', open)(__file__);" 5 | "code=f.read().replace('\\r\\n', '\\n');" 6 | "f.close();" 7 | "exec(compile(code, __file__, 'exec'))" 8 | ) 9 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where, old_where 2 | 3 | __version__ = "2018.08.24" 4 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langcyrillicmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.3.9' 7 | 8 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/sysconfig.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.7' 2 | 3 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/linklockfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/linklockfile.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/mkdirlockfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/mkdirlockfile.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/pidlockfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/pidlockfile.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/sqlitelockfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/sqlitelockfile.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/symlinklockfile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__pycache__/symlinklockfile.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.2' 5 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/helpers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/helpers.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .writer import dump, dumps 4 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/ordered_dict.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/ordered_dict.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.32.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | https://files.pythonhosted.org/packages/source/c/certifi/certifi-2016.9.26.tar.gz#md5=baa81e951a29958563689d868ef1064d 2 | https://files.pythonhosted.org/packages/source/w/wincertstore/wincertstore-0.2.zip#md5=ae728f2f007185648d0c7a8679b361e2 3 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/config.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/config.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/depends.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/depends.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/dist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/dist.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/extension.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/extension.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/glibc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/glibc.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/glob.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/glob.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/launch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/launch.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/pep425tags.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/pep425tags.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/py36compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/py36compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- 1 | class SetuptoolsDeprecationWarning(Warning): 2 | """ 3 | Base class for warning deprecations in ``setuptools`` 4 | 5 | This class is not derived from ``DeprecationWarning``, and as such is 6 | visible by default. 7 | """ 8 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').require(%(spec)r) 4 | __file__ = %(dev_path)r 5 | with open(__file__) as f: 6 | exec(compile(f.read(), __file__, 'exec')) 7 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.get_distribution('setuptools').version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/env/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\ovmehboo\AppData\Local\Programs\Python\Python37 2 | include-system-site-packages = false 3 | version = 3.7.2 4 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/sendgrid.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter03/PythonAPI/sendgrid.env -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | }, 9 | "AllowedHosts": "*", 10 | "NotificationsServiceURL":"http://localhost:5000/notifications", 11 | "SchedulerServiceURL":"http://localhost:9003/jobs" 12 | } 13 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see https://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.ts] 12 | quote_type = single 13 | 14 | [*.md] 15 | max_line_length = off 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/assets/cardimg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/dist/JobOrderSystem/assets/cardimg1.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/assets/cardimg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/dist/JobOrderSystem/assets/cardimg2.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/assets/cardimg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/dist/JobOrderSystem/assets/cardimg3.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/assets/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/dist/JobOrderSystem/assets/img1.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/assets/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/dist/JobOrderSystem/assets/img2.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/assets/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/dist/JobOrderSystem/assets/img3.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/assets/img41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/dist/JobOrderSystem/assets/img41.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/dist/JobOrderSystem/favicon.ico -------------------------------------------------------------------------------- /Chapter05/FrontEnd/e2e/src/app.po.ts: -------------------------------------------------------------------------------- 1 | import { browser, by, element } from 'protractor'; 2 | 3 | export class AppPage { 4 | navigateTo(): Promise { 5 | return browser.get(browser.baseUrl) as Promise; 6 | } 7 | 8 | getTitleText(): Promise { 9 | return element(by.css('jos-root .content span')).getText() as Promise; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/e2e/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "../out-tsc/e2e", 5 | "module": "commonjs", 6 | "target": "es5", 7 | "types": [ 8 | "jasmine", 9 | "jasminewd2", 10 | "node" 11 | ] 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agent-jobprocess/agent-jobprocess.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/app/agent/agent-jobprocess/agent-jobprocess.component.css -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agentlist/agentlist.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/app/agent/agentlist/agentlist.component.css -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/app/app.component.css -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/data_service/config.service.ts: -------------------------------------------------------------------------------- 1 | import { Injectable } from '@angular/core'; 2 | 3 | @Injectable({ 4 | providedIn: 'root' 5 | }) 6 | export class ConfigService { 7 | 8 | nodeUrl : string = 'http://localhost:3001'; 9 | javaUrl : string = 'http://localhost:9003'; 10 | 11 | constructor() { } 12 | } 13 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/home/home.component.css: -------------------------------------------------------------------------------- 1 | .carousel-inner{ 2 | max-height: 300px; 3 | } -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/home/home.component.ts: -------------------------------------------------------------------------------- 1 | import { Component, OnInit } from '@angular/core'; 2 | 3 | @Component({ 4 | selector: 'jos-home', 5 | templateUrl: './home.component.html', 6 | styleUrls: ['./home.component.css'] 7 | }) 8 | export class HomeComponent implements OnInit { 9 | 10 | constructor() { } 11 | 12 | ngOnInit(): void { 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequest/jobrequest.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/app/jobrequest/jobrequest/jobrequest.component.css -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequestdetail/jobrequestdetail.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/app/jobrequest/jobrequestdetail/jobrequestdetail.component.css -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequestlist/jobrequestlist.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/app/jobrequest/jobrequestlist/jobrequestlist.component.css -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/login/login.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/app/login/login.component.css -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/models/jobrequest.ts: -------------------------------------------------------------------------------- 1 | export interface IJobrequest { 2 | _id: string, 3 | jobType: string, 4 | jobDescription: string, 5 | requestDate: string, 6 | contactNo: string, 7 | address: string, 8 | city: string, 9 | status: string, 10 | requestedBy: string 11 | } 12 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/models/loggeduser.ts: -------------------------------------------------------------------------------- 1 | export interface Loggeduser { 2 | userid: string; 3 | name: string; 4 | role: string; 5 | } -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/assets/.gitkeep -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/cardimg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/assets/cardimg1.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/cardimg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/assets/cardimg2.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/cardimg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/assets/cardimg3.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/assets/img1.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/assets/img2.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/assets/img3.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/img41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/assets/img41.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/397063e8bf24b77686c4251bbad756f6b6a60031/Chapter05/FrontEnd/src/favicon.ico -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | JobOrderSystem 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/styles.css: -------------------------------------------------------------------------------- 1 | /* You can add global styles to this file, and also import other style files */ 2 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/tsconfig.app.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/app", 5 | "types": [] 6 | }, 7 | "files": [ 8 | "src/main.ts", 9 | "src/polyfills.ts" 10 | ], 11 | "include": [ 12 | "src/**/*.d.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/tsconfig.spec.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.json", 3 | "compilerOptions": { 4 | "outDir": "./out-tsc/spec", 5 | "types": [ 6 | "jasmine", 7 | "node" 8 | ] 9 | }, 10 | "files": [ 11 | "src/test.ts", 12 | "src/polyfills.ts" 13 | ], 14 | "include": [ 15 | "src/**/*.spec.ts", 16 | "src/**/*.d.ts" 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /Chapter09/booktheme/.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .gitignore 4 | vsc-extension-quickstart.md 5 | -------------------------------------------------------------------------------- /Chapter09/booktheme/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to the "booktheme" extension will be documented in this file. 4 | 5 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 6 | 7 | ## [Unreleased] 8 | 9 | - Initial release 10 | -------------------------------------------------------------------------------- /Chapter09/k8sobj/.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | .gitignore 4 | vsc-extension-quickstart.md 5 | -------------------------------------------------------------------------------- /Chapter09/k8sobj/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to the "k8sobj" extension will be documented in this file. 4 | 5 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 6 | 7 | ## [Unreleased] 8 | 9 | - Initial release -------------------------------------------------------------------------------- /Chapter09/vscode-first/.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .vscode-test/ 4 | *.vsix 5 | -------------------------------------------------------------------------------- /Chapter09/vscode-first/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | // See http://go.microsoft.com/fwlink/?LinkId=827846 3 | // for the documentation about the extensions.json format 4 | "recommendations": [ 5 | "dbaeumer.vscode-eslint" 6 | ] 7 | } 8 | -------------------------------------------------------------------------------- /Chapter09/vscode-first/.vscodeignore: -------------------------------------------------------------------------------- 1 | .vscode/** 2 | .vscode-test/** 3 | out/test/** 4 | src/** 5 | .gitignore 6 | vsc-extension-quickstart.md 7 | **/tsconfig.json 8 | **/.eslintrc.json 9 | **/*.map 10 | **/*.ts 11 | -------------------------------------------------------------------------------- /Chapter09/vscode-first/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | 3 | All notable changes to the "vscode-first" extension will be documented in this file. 4 | 5 | Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. 6 | 7 | ## [Unreleased] 8 | 9 | - Initial release --------------------------------------------------------------------------------