├── 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/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/.vscode/settings.json -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/components/pubsub.yaml -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/components/statestore.yaml -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/k8deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/k8deployment.yaml -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/.dockerignore -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/.gitignore -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/Dockerfile -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/components/eventhubs_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/components/eventhubs_binding.yaml -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/components/pubsub.yaml -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/components/statestore.yaml -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/docker-compose.debug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/docker-compose.debug.yml -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/docker-compose.yml -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/mvnw -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/mvnw.cmd -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/pom.xml -------------------------------------------------------------------------------- /Chapter03/JavaSpringBootAPI/schedule/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/JavaSpringBootAPI/schedule/src/main/resources/application.properties -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/.dockerignore -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/Dockerfile -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/components/eventhubs_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/components/eventhubs_binding.yaml -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/components/pubsub.yaml -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/components/statestore.yaml -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/k8deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/k8deployment.yaml -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/package-lock.json -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/package.json -------------------------------------------------------------------------------- /Chapter03/NodeJSAPI/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/NodeJSAPI/server.js -------------------------------------------------------------------------------- /Chapter03/PythonAPI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/.gitignore -------------------------------------------------------------------------------- /Chapter03/PythonAPI/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/.vscode/settings.json -------------------------------------------------------------------------------- /Chapter03/PythonAPI/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/app.py -------------------------------------------------------------------------------- /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/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/__pycache__/easy_install.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/easy_install.py -------------------------------------------------------------------------------- /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/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/METADATA -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/RECORD -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/WHEEL -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip-18.1.dist-info/entry_points.txt -------------------------------------------------------------------------------- /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/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /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/HEAD/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/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/autocompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/autocompletion.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/configuration.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/download.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/index.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/locations.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/format_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/format_control.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/freeze.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/operations/prepare.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/pep425tags.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/req/req_uninstall.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/resolve.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/deprecation.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/outdated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/outdated.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/setuptools_build.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/typing.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/utils/ui.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_internal/wheel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /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/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/controller.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/chardistribution.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/charsetprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/cp949prober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/euckrprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/euctwprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/latin1prober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/sjisprober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/universaldetector.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/utf8prober.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/initialise.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/misc.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/shutil.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/sysconfig.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/tarfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/_backport/tarfile.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/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/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/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/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_ihatexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_ihatexml.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_inputstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_inputstream.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_tokenizer.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/_base.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/datrie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/datrie.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_trie/py.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/constants.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/base.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/lint.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/optionaltags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/optionaltags.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/sanitizer.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/whitespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/filters/whitespace.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/html5parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/html5parser.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/serializer.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/sax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treeadapters/sax.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/base.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/dom.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treebuilders/etree.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/base.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/dom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/dom.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/etree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/etree.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /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/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/linklockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/linklockfile.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/mkdirlockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/mkdirlockfile.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/pidlockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/pidlockfile.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/sqlitelockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/sqlitelockfile.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/symlinklockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/lockfile/symlinklockfile.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /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/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/requirements.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /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/_in_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/_in_process.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/helpers.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/core.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/parser.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/pytoml/writer.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/__version__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/_internal_utils.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/_collections.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/ordered_dict.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/packages/six.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/connection.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/request.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/response.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/labels.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/mklabels.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/tests.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/appdirs.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/_vendor/six.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/extern/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /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/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/LICENSE -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/METADATA -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/RECORD -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools-40.6.2.dist-info/WHEEL -------------------------------------------------------------------------------- /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/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_deprecation_warning.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/packaging/version.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/_vendor/six.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/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/HEAD/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/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/bdist_wininst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/bdist_wininst.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/build_clib.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/easy_install.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/install_egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/install_egg_info.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/install_lib.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/install_scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/install_scripts.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/launcher manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/launcher manifest.xml -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/py36compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/py36compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/upload_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/command/upload_docs.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/glibc.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/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/HEAD/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/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/pep425tags.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/py27compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/py27compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/py31compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/py33compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/py33compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/py36compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/py36compat.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/site-patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/site-patch.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Lib/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Lib/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Scripts/activate -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Chapter03/PythonAPI/env/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter03/PythonAPI/env/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/env/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter03/PythonAPI/sendgrid.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter03/PythonAPI/sendgrid.env -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/.dockerignore -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/Consumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/Consumer.cs -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/Dockerfile -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/JobRequestHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/JobRequestHostedService.cs -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/KafkaHttpManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/KafkaHttpManager.cs -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/NetCoreAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/NetCoreAPI.csproj -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/NotiificationHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/NotiificationHostedService.cs -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/Program.cs -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/Properties/launchSettings.json -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/Startup.cs -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/appsettings.json -------------------------------------------------------------------------------- /Chapter04/NetCoreAPI/k8deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter04/NetCoreAPI/k8deployment.yaml -------------------------------------------------------------------------------- /Chapter05/FrontEnd/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/.editorconfig -------------------------------------------------------------------------------- /Chapter05/FrontEnd/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter05/FrontEnd/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/Dockerfile -------------------------------------------------------------------------------- /Chapter05/FrontEnd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/README.md -------------------------------------------------------------------------------- /Chapter05/FrontEnd/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/angular.json -------------------------------------------------------------------------------- /Chapter05/FrontEnd/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/browserslist -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/agent-agent-module-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/agent-agent-module-es2015.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/agent-agent-module-es2015.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/agent-agent-module-es2015.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/agent-agent-module-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/agent-agent-module-es5.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/agent-agent-module-es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/agent-agent-module-es5.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/assets/cardimg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/assets/img41.jpg -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/common-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/common-es2015.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/common-es2015.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/common-es2015.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/common-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/common-es5.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/common-es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/common-es5.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/favicon.ico -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/index.html -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/jobrequest-jobrequest-module-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/jobrequest-jobrequest-module-es2015.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/jobrequest-jobrequest-module-es2015.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/jobrequest-jobrequest-module-es2015.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/jobrequest-jobrequest-module-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/jobrequest-jobrequest-module-es5.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/jobrequest-jobrequest-module-es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/jobrequest-jobrequest-module-es5.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/login-login-module-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/login-login-module-es2015.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/login-login-module-es2015.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/login-login-module-es2015.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/login-login-module-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/login-login-module-es5.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/login-login-module-es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/login-login-module-es5.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/main-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/main-es2015.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/main-es2015.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/main-es2015.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/main-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/main-es5.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/main-es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/main-es5.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/polyfills-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/polyfills-es2015.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/polyfills-es2015.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/polyfills-es2015.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/polyfills-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/polyfills-es5.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/polyfills-es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/polyfills-es5.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/runtime-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/runtime-es2015.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/runtime-es2015.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/runtime-es2015.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/runtime-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/runtime-es5.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/runtime-es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/runtime-es5.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/scripts.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/scripts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/scripts.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/styles-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/styles-es2015.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/styles-es2015.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/styles-es2015.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/styles-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/styles-es5.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/styles-es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/styles-es5.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/vendor-es2015.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/vendor-es2015.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/vendor-es2015.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/vendor-es2015.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/vendor-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/vendor-es5.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/dist/JobOrderSystem/vendor-es5.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/dist/JobOrderSystem/vendor-es5.js.map -------------------------------------------------------------------------------- /Chapter05/FrontEnd/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/e2e/protractor.conf.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/e2e/src/app.po.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/e2e/tsconfig.json -------------------------------------------------------------------------------- /Chapter05/FrontEnd/k8deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/k8deployment.yaml -------------------------------------------------------------------------------- /Chapter05/FrontEnd/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/FrontEnd/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/package-lock.json -------------------------------------------------------------------------------- /Chapter05/FrontEnd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/package.json -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agent-jobprocess/agent-jobprocess.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agent-jobprocess/agent-jobprocess.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/agent/agent-jobprocess/agent-jobprocess.component.html -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agent-jobprocess/agent-jobprocess.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/agent/agent-jobprocess/agent-jobprocess.component.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agent-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/agent/agent-routing.module.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agent.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/agent/agent.guard.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agent.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/agent/agent.guard.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agent.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/agent/agent.module.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agentlist/agentlist.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agentlist/agentlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/agent/agentlist/agentlist.component.html -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agentlist/agentlist.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/agent/agentlist/agentlist.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/agent/agentlist/agentlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/agent/agentlist/agentlist.component.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/app.component.html -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/app.component.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/app.module.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/data_service/agent.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/data_service/agent.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/data_service/agent.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/data_service/agent.service.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/data_service/config.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/data_service/config.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/data_service/config.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/data_service/config.service.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/data_service/jobrequest.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/data_service/jobrequest.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/data_service/jobrequest.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/data_service/jobrequest.service.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/home/home.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/home/home.component.css -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/home/home.component.html -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/home/home.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/home/home.component.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequest-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/jobrequest/jobrequest-routing.module.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequest.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/jobrequest/jobrequest.guard.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequest.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/jobrequest/jobrequest.guard.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequest.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/jobrequest/jobrequest.module.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequest/jobrequest.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequest/jobrequest.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/jobrequest/jobrequest/jobrequest.component.html -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequest/jobrequest.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/jobrequest/jobrequest/jobrequest.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequest/jobrequestcomponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/jobrequest/jobrequest/jobrequestcomponent.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequestdetail/jobrequestdetail.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequestlist/jobrequestlist.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequestlist/jobrequestlist.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/jobrequest/jobrequestlist/jobrequestlist.component.html -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/jobrequest/jobrequestlist/jobrequestlist.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/jobrequest/jobrequestlist/jobrequestlist.component.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/login/authorization.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/login/authorization.service.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/login/authorization.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/login/authorization.service.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/login/login-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/login/login-routing.module.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/login/login.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/login/login.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/login/login.component.html -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/login/login.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/login/login.component.spec.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/login/login.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/login/login.component.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/login/login.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/login/login.module.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/models/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/models/agent.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/models/jobrequest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/models/jobrequest.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/app/models/loggeduser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/app/models/loggeduser.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/assets/cardimg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/environments/environment.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/favicon.ico -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/index.html -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/main.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/polyfills.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/styles.css -------------------------------------------------------------------------------- /Chapter05/FrontEnd/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/src/test.ts -------------------------------------------------------------------------------- /Chapter05/FrontEnd/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/tsconfig.app.json -------------------------------------------------------------------------------- /Chapter05/FrontEnd/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/tsconfig.json -------------------------------------------------------------------------------- /Chapter05/FrontEnd/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/tsconfig.spec.json -------------------------------------------------------------------------------- /Chapter05/FrontEnd/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter05/FrontEnd/tslint.json -------------------------------------------------------------------------------- /Chapter08/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter08/azure-pipelines.yml -------------------------------------------------------------------------------- /Chapter09/booktheme/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/booktheme/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/booktheme/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/booktheme/.vscodeignore -------------------------------------------------------------------------------- /Chapter09/booktheme/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/booktheme/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter09/booktheme/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/booktheme/README.md -------------------------------------------------------------------------------- /Chapter09/booktheme/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/booktheme/package.json -------------------------------------------------------------------------------- /Chapter09/booktheme/themes/booktheme-color-theme.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/booktheme/themes/booktheme-color-theme.json -------------------------------------------------------------------------------- /Chapter09/booktheme/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/booktheme/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /Chapter09/k8sobj/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/k8sobj/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/k8sobj/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/k8sobj/.vscodeignore -------------------------------------------------------------------------------- /Chapter09/k8sobj/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/k8sobj/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter09/k8sobj/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/k8sobj/README.md -------------------------------------------------------------------------------- /Chapter09/k8sobj/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/k8sobj/package.json -------------------------------------------------------------------------------- /Chapter09/k8sobj/snippets/snippets.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/k8sobj/snippets/snippets.code-snippets -------------------------------------------------------------------------------- /Chapter09/k8sobj/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/k8sobj/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /Chapter09/vscode-first/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/.eslintrc.json -------------------------------------------------------------------------------- /Chapter09/vscode-first/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/.gitignore -------------------------------------------------------------------------------- /Chapter09/vscode-first/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/.vscode/extensions.json -------------------------------------------------------------------------------- /Chapter09/vscode-first/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/vscode-first/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/.vscode/settings.json -------------------------------------------------------------------------------- /Chapter09/vscode-first/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter09/vscode-first/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/.vscodeignore -------------------------------------------------------------------------------- /Chapter09/vscode-first/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/CHANGELOG.md -------------------------------------------------------------------------------- /Chapter09/vscode-first/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/README.md -------------------------------------------------------------------------------- /Chapter09/vscode-first/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/package-lock.json -------------------------------------------------------------------------------- /Chapter09/vscode-first/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/package.json -------------------------------------------------------------------------------- /Chapter09/vscode-first/src/Commands/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/src/Commands/commands.ts -------------------------------------------------------------------------------- /Chapter09/vscode-first/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/src/extension.ts -------------------------------------------------------------------------------- /Chapter09/vscode-first/src/test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/src/test/runTest.ts -------------------------------------------------------------------------------- /Chapter09/vscode-first/src/test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/src/test/suite/extension.test.ts -------------------------------------------------------------------------------- /Chapter09/vscode-first/src/test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/src/test/suite/index.ts -------------------------------------------------------------------------------- /Chapter09/vscode-first/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/tsconfig.json -------------------------------------------------------------------------------- /Chapter09/vscode-first/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/Chapter09/vscode-first/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Developing-Multi-platform-Apps-with-Visual-Studio-Code/HEAD/README.md --------------------------------------------------------------------------------