├── Chapter02 ├── pyboard_1_1 │ ├── RoundRobin │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── RoundRobin.iml │ │ │ ├── inspectionProfiles │ │ │ │ └── profiles_settings.xml │ │ │ ├── libraries │ │ │ │ └── MicroPython.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── main.py │ │ └── venv │ │ │ ├── Lib │ │ │ └── site-packages │ │ │ │ ├── Click-7.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ │ ├── __pycache__ │ │ │ │ └── docopt.cpython-37.pyc │ │ │ │ ├── adafruit_ampy-1.0.7.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ │ ├── ampy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ │ ├── files.cpython-37.pyc │ │ │ │ │ └── pyboard.cpython-37.pyc │ │ │ │ ├── cli.py │ │ │ │ ├── files.py │ │ │ │ └── pyboard.py │ │ │ │ ├── click │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── _bashcomplete.cpython-37.pyc │ │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ │ ├── _termui_impl.cpython-37.pyc │ │ │ │ │ ├── _textwrap.cpython-37.pyc │ │ │ │ │ ├── _unicodefun.cpython-37.pyc │ │ │ │ │ ├── _winconsole.cpython-37.pyc │ │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ │ ├── decorators.cpython-37.pyc │ │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ │ ├── formatting.cpython-37.pyc │ │ │ │ │ ├── globals.cpython-37.pyc │ │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ │ ├── termui.cpython-37.pyc │ │ │ │ │ ├── testing.cpython-37.pyc │ │ │ │ │ ├── types.cpython-37.pyc │ │ │ │ │ └── utils.cpython-37.pyc │ │ │ │ ├── _bashcomplete.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _termui_impl.py │ │ │ │ ├── _textwrap.py │ │ │ │ ├── _unicodefun.py │ │ │ │ ├── _winconsole.py │ │ │ │ ├── core.py │ │ │ │ ├── decorators.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── formatting.py │ │ │ │ ├── globals.py │ │ │ │ ├── parser.py │ │ │ │ ├── termui.py │ │ │ │ ├── testing.py │ │ │ │ ├── types.py │ │ │ │ └── utils.py │ │ │ │ ├── docopt-0.6.2-py3.7.egg-info │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── installed-files.txt │ │ │ │ └── top_level.txt │ │ │ │ ├── docopt.py │ │ │ │ ├── dotenv │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ │ ├── ipython.cpython-37.pyc │ │ │ │ │ ├── main.cpython-37.pyc │ │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ │ └── version.cpython-37.pyc │ │ │ │ ├── cli.py │ │ │ │ ├── compat.py │ │ │ │ ├── ipython.py │ │ │ │ ├── main.py │ │ │ │ ├── parser.py │ │ │ │ ├── py.typed │ │ │ │ └── version.py │ │ │ │ ├── easy-install.pth │ │ │ │ ├── pip-19.0.3-py3.7.egg │ │ │ │ ├── EGG-INFO │ │ │ │ │ ├── PKG-INFO │ │ │ │ │ ├── SOURCES.txt │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ ├── not-zip-safe │ │ │ │ │ └── top_level.txt │ │ │ │ └── pip │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _internal │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── build_env.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ │ ├── base_command.py │ │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ │ ├── main_parser.py │ │ │ │ │ │ ├── parser.py │ │ │ │ │ │ └── status_codes.py │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── candidate.py │ │ │ │ │ │ ├── format_control.py │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ └── link.py │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ └── prepare.py │ │ │ │ │ ├── pep425tags.py │ │ │ │ │ ├── pyproject.py │ │ │ │ │ ├── req │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── constructors.py │ │ │ │ │ │ ├── req_file.py │ │ │ │ │ │ ├── req_install.py │ │ │ │ │ │ ├── req_set.py │ │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ │ └── req_uninstall.py │ │ │ │ │ ├── resolve.py │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── bazaar.py │ │ │ │ │ │ ├── git.py │ │ │ │ │ │ ├── mercurial.py │ │ │ │ │ │ └── subversion.py │ │ │ │ │ └── wheel.py │ │ │ │ │ └── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _cmd.py │ │ │ │ │ ├── adapter.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ ├── heuristics.py │ │ │ │ │ ├── serialize.py │ │ │ │ │ └── wrapper.py │ │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── cacert.pem │ │ │ │ │ └── core.py │ │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ ├── initialise.py │ │ │ │ │ ├── win32.py │ │ │ │ │ └── winterm.py │ │ │ │ │ ├── distlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _backport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ ├── _trie │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── datrie.py │ │ │ │ │ │ └── py.py │ │ │ │ │ ├── _utils.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ ├── html5parser.py │ │ │ │ │ ├── serializer.py │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ └── sax.py │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ └── treewalkers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ └── genshi.py │ │ │ │ │ ├── idna │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── codec.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── idnadata.py │ │ │ │ │ ├── intranges.py │ │ │ │ │ ├── package_data.py │ │ │ │ │ └── uts46data.py │ │ │ │ │ ├── ipaddress.py │ │ │ │ │ ├── lockfile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── linklockfile.py │ │ │ │ │ ├── mkdirlockfile.py │ │ │ │ │ ├── pidlockfile.py │ │ │ │ │ ├── sqlitelockfile.py │ │ │ │ │ └── symlinklockfile.py │ │ │ │ │ ├── msgpack │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _version.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── fallback.py │ │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ │ ├── pep517 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _in_process.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── colorlog.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── envbuild.py │ │ │ │ │ └── wrappers.py │ │ │ │ │ ├── pkg_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── py31compat.py │ │ │ │ │ ├── progress │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.py │ │ │ │ │ ├── counter.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ └── spinner.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ ├── pytoml │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── test.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── writer.py │ │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __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 │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ │ └── low_level.py │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ ├── securetransport.py │ │ │ │ │ │ └── socks.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── makefile.py │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── queue.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ ├── url.py │ │ │ │ │ │ └── wait.py │ │ │ │ │ └── webencodings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── mklabels.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── x_user_defined.py │ │ │ │ ├── pyserial-3.4.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ │ ├── python_dotenv-0.10.3.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ │ ├── serial │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── aio.cpython-37.pyc │ │ │ │ │ ├── rfc2217.cpython-37.pyc │ │ │ │ │ ├── rs485.cpython-37.pyc │ │ │ │ │ ├── serialcli.cpython-37.pyc │ │ │ │ │ ├── serialjava.cpython-37.pyc │ │ │ │ │ ├── serialposix.cpython-37.pyc │ │ │ │ │ ├── serialutil.cpython-37.pyc │ │ │ │ │ ├── serialwin32.cpython-37.pyc │ │ │ │ │ └── win32.cpython-37.pyc │ │ │ │ ├── aio.py │ │ │ │ ├── aio.pyc │ │ │ │ ├── rfc2217.py │ │ │ │ ├── rfc2217.pyc │ │ │ │ ├── rs485.py │ │ │ │ ├── rs485.pyc │ │ │ │ ├── serialcli.py │ │ │ │ ├── serialcli.pyc │ │ │ │ ├── serialjava.py │ │ │ │ ├── serialjava.pyc │ │ │ │ ├── serialposix.py │ │ │ │ ├── serialposix.pyc │ │ │ │ ├── serialutil.py │ │ │ │ ├── serialutil.pyc │ │ │ │ ├── serialwin32.py │ │ │ │ ├── serialwin32.pyc │ │ │ │ ├── threaded │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── __pycache__ │ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ │ ├── tools │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── hexlify_codec.cpython-37.pyc │ │ │ │ │ │ ├── list_ports.cpython-37.pyc │ │ │ │ │ │ ├── list_ports_common.cpython-37.pyc │ │ │ │ │ │ ├── list_ports_linux.cpython-37.pyc │ │ │ │ │ │ ├── list_ports_osx.cpython-37.pyc │ │ │ │ │ │ ├── list_ports_posix.cpython-37.pyc │ │ │ │ │ │ ├── list_ports_windows.cpython-37.pyc │ │ │ │ │ │ └── miniterm.cpython-37.pyc │ │ │ │ │ ├── hexlify_codec.py │ │ │ │ │ ├── hexlify_codec.pyc │ │ │ │ │ ├── list_ports.py │ │ │ │ │ ├── list_ports.pyc │ │ │ │ │ ├── list_ports_common.py │ │ │ │ │ ├── list_ports_common.pyc │ │ │ │ │ ├── list_ports_linux.py │ │ │ │ │ ├── list_ports_linux.pyc │ │ │ │ │ ├── list_ports_osx.py │ │ │ │ │ ├── list_ports_osx.pyc │ │ │ │ │ ├── list_ports_posix.py │ │ │ │ │ ├── list_ports_posix.pyc │ │ │ │ │ ├── list_ports_windows.py │ │ │ │ │ ├── list_ports_windows.pyc │ │ │ │ │ ├── miniterm.py │ │ │ │ │ └── miniterm.pyc │ │ │ │ ├── urlhandler │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __init__.pyc │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ │ ├── protocol_alt.cpython-37.pyc │ │ │ │ │ │ ├── protocol_hwgrep.cpython-37.pyc │ │ │ │ │ │ ├── protocol_loop.cpython-37.pyc │ │ │ │ │ │ ├── protocol_rfc2217.cpython-37.pyc │ │ │ │ │ │ ├── protocol_serve-rfc2217.cpython-37.pyc │ │ │ │ │ │ ├── protocol_socket.cpython-37.pyc │ │ │ │ │ │ └── protocol_spy.cpython-37.pyc │ │ │ │ │ ├── protocol_alt.py │ │ │ │ │ ├── protocol_hwgrep.py │ │ │ │ │ ├── protocol_hwgrep.pyc │ │ │ │ │ ├── protocol_loop.py │ │ │ │ │ ├── protocol_loop.pyc │ │ │ │ │ ├── protocol_rfc2217.py │ │ │ │ │ ├── protocol_rfc2217.pyc │ │ │ │ │ ├── protocol_serve-rfc2217.py │ │ │ │ │ ├── protocol_socket.py │ │ │ │ │ ├── protocol_socket.pyc │ │ │ │ │ ├── protocol_spy.py │ │ │ │ │ └── protocol_spy.pyc │ │ │ │ ├── win32.py │ │ │ │ └── win32.pyc │ │ │ │ ├── setuptools-40.8.0-py3.7.egg │ │ │ │ └── setuptools.pth │ │ │ ├── Scripts │ │ │ ├── Activate.ps1 │ │ │ ├── __pycache__ │ │ │ │ └── miniterm.cpython-37.pyc │ │ │ ├── activate │ │ │ ├── activate.bat │ │ │ ├── ampy.exe │ │ │ ├── deactivate.bat │ │ │ ├── dotenv.exe │ │ │ ├── easy_install-3.7-script.py │ │ │ ├── easy_install-3.7.exe │ │ │ ├── easy_install-3.7.exe.manifest │ │ │ ├── easy_install-script.py │ │ │ ├── easy_install.exe │ │ │ ├── easy_install.exe.manifest │ │ │ ├── miniterm.py │ │ │ ├── miniterm.pyc │ │ │ ├── pip-script.py │ │ │ ├── pip.exe │ │ │ ├── pip.exe.manifest │ │ │ ├── pip3-script.py │ │ │ ├── pip3.7-script.py │ │ │ ├── pip3.7.exe │ │ │ ├── pip3.7.exe.manifest │ │ │ ├── pip3.exe │ │ │ ├── pip3.exe.manifest │ │ │ ├── python.exe │ │ │ └── pythonw.exe │ │ │ └── pyvenv.cfg │ ├── Threads │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── Threads.iml │ │ │ ├── inspectionProfiles │ │ │ │ └── profiles_settings.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── main.py │ │ └── venv │ │ │ ├── Lib │ │ │ └── site-packages │ │ │ │ ├── easy-install.pth │ │ │ │ ├── pip-19.0.3-py3.7.egg │ │ │ │ ├── EGG-INFO │ │ │ │ │ ├── PKG-INFO │ │ │ │ │ ├── SOURCES.txt │ │ │ │ │ ├── dependency_links.txt │ │ │ │ │ ├── entry_points.txt │ │ │ │ │ ├── not-zip-safe │ │ │ │ │ └── top_level.txt │ │ │ │ └── pip │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── _internal │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── build_env.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ │ ├── base_command.py │ │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ │ ├── main_parser.py │ │ │ │ │ │ ├── parser.py │ │ │ │ │ │ └── status_codes.py │ │ │ │ │ ├── commands │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── candidate.py │ │ │ │ │ │ ├── format_control.py │ │ │ │ │ │ ├── index.py │ │ │ │ │ │ └── link.py │ │ │ │ │ ├── operations │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── check.py │ │ │ │ │ │ ├── freeze.py │ │ │ │ │ │ └── prepare.py │ │ │ │ │ ├── pep425tags.py │ │ │ │ │ ├── pyproject.py │ │ │ │ │ ├── req │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── constructors.py │ │ │ │ │ │ ├── req_file.py │ │ │ │ │ │ ├── req_install.py │ │ │ │ │ │ ├── req_set.py │ │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ │ └── req_uninstall.py │ │ │ │ │ ├── resolve.py │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── bazaar.py │ │ │ │ │ │ ├── git.py │ │ │ │ │ │ ├── mercurial.py │ │ │ │ │ │ └── subversion.py │ │ │ │ │ └── wheel.py │ │ │ │ │ └── _vendor │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── appdirs.py │ │ │ │ │ ├── cachecontrol │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _cmd.py │ │ │ │ │ ├── adapter.py │ │ │ │ │ ├── cache.py │ │ │ │ │ ├── caches │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── file_cache.py │ │ │ │ │ │ └── redis_cache.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── controller.py │ │ │ │ │ ├── filewrapper.py │ │ │ │ │ ├── heuristics.py │ │ │ │ │ ├── serialize.py │ │ │ │ │ └── wrapper.py │ │ │ │ │ ├── certifi │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __main__.py │ │ │ │ │ ├── cacert.pem │ │ │ │ │ └── core.py │ │ │ │ │ ├── chardet │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── big5freq.py │ │ │ │ │ ├── big5prober.py │ │ │ │ │ ├── chardistribution.py │ │ │ │ │ ├── charsetgroupprober.py │ │ │ │ │ ├── charsetprober.py │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── 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 │ │ │ │ │ ├── ansi.py │ │ │ │ │ ├── ansitowin32.py │ │ │ │ │ ├── initialise.py │ │ │ │ │ ├── win32.py │ │ │ │ │ └── winterm.py │ │ │ │ │ ├── distlib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _backport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── 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 │ │ │ │ │ ├── _ihatexml.py │ │ │ │ │ ├── _inputstream.py │ │ │ │ │ ├── _tokenizer.py │ │ │ │ │ ├── _trie │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _base.py │ │ │ │ │ │ ├── datrie.py │ │ │ │ │ │ └── py.py │ │ │ │ │ ├── _utils.py │ │ │ │ │ ├── constants.py │ │ │ │ │ ├── filters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ │ ├── lint.py │ │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ │ └── whitespace.py │ │ │ │ │ ├── html5parser.py │ │ │ │ │ ├── serializer.py │ │ │ │ │ ├── treeadapters │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── genshi.py │ │ │ │ │ │ └── sax.py │ │ │ │ │ ├── treebuilders │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ └── etree_lxml.py │ │ │ │ │ └── treewalkers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── dom.py │ │ │ │ │ │ ├── etree.py │ │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ │ └── genshi.py │ │ │ │ │ ├── idna │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── codec.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── idnadata.py │ │ │ │ │ ├── intranges.py │ │ │ │ │ ├── package_data.py │ │ │ │ │ └── uts46data.py │ │ │ │ │ ├── ipaddress.py │ │ │ │ │ ├── lockfile │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── linklockfile.py │ │ │ │ │ ├── mkdirlockfile.py │ │ │ │ │ ├── pidlockfile.py │ │ │ │ │ ├── sqlitelockfile.py │ │ │ │ │ └── symlinklockfile.py │ │ │ │ │ ├── msgpack │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _version.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ └── fallback.py │ │ │ │ │ ├── packaging │ │ │ │ │ ├── __about__.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _compat.py │ │ │ │ │ ├── _structures.py │ │ │ │ │ ├── markers.py │ │ │ │ │ ├── requirements.py │ │ │ │ │ ├── specifiers.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── version.py │ │ │ │ │ ├── pep517 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _in_process.py │ │ │ │ │ ├── build.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── colorlog.py │ │ │ │ │ ├── compat.py │ │ │ │ │ ├── envbuild.py │ │ │ │ │ └── wrappers.py │ │ │ │ │ ├── pkg_resources │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── py31compat.py │ │ │ │ │ ├── progress │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bar.py │ │ │ │ │ ├── counter.py │ │ │ │ │ ├── helpers.py │ │ │ │ │ └── spinner.py │ │ │ │ │ ├── pyparsing.py │ │ │ │ │ ├── pytoml │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── core.py │ │ │ │ │ ├── parser.py │ │ │ │ │ ├── test.py │ │ │ │ │ ├── utils.py │ │ │ │ │ └── writer.py │ │ │ │ │ ├── requests │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __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 │ │ │ │ │ ├── _collections.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── connectionpool.py │ │ │ │ │ ├── contrib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ │ └── low_level.py │ │ │ │ │ │ ├── appengine.py │ │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ │ ├── securetransport.py │ │ │ │ │ │ └── socks.py │ │ │ │ │ ├── exceptions.py │ │ │ │ │ ├── fields.py │ │ │ │ │ ├── filepost.py │ │ │ │ │ ├── packages │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backports │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── makefile.py │ │ │ │ │ │ ├── six.py │ │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ │ └── _implementation.py │ │ │ │ │ ├── poolmanager.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ └── util │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── connection.py │ │ │ │ │ │ ├── queue.py │ │ │ │ │ │ ├── request.py │ │ │ │ │ │ ├── response.py │ │ │ │ │ │ ├── retry.py │ │ │ │ │ │ ├── ssl_.py │ │ │ │ │ │ ├── timeout.py │ │ │ │ │ │ ├── url.py │ │ │ │ │ │ └── wait.py │ │ │ │ │ └── webencodings │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── labels.py │ │ │ │ │ ├── mklabels.py │ │ │ │ │ ├── tests.py │ │ │ │ │ └── x_user_defined.py │ │ │ │ ├── setuptools-40.8.0-py3.7.egg │ │ │ │ └── setuptools.pth │ │ │ ├── Scripts │ │ │ ├── Activate.ps1 │ │ │ ├── activate │ │ │ ├── activate.bat │ │ │ ├── deactivate.bat │ │ │ ├── easy_install-3.7-script.py │ │ │ ├── easy_install-3.7.exe │ │ │ ├── easy_install-3.7.exe.manifest │ │ │ ├── easy_install-script.py │ │ │ ├── easy_install.exe │ │ │ ├── easy_install.exe.manifest │ │ │ ├── pip-script.py │ │ │ ├── pip.exe │ │ │ ├── pip.exe.manifest │ │ │ ├── pip3-script.py │ │ │ ├── pip3.7-script.py │ │ │ ├── pip3.7.exe │ │ │ ├── pip3.7.exe.manifest │ │ │ ├── pip3.exe │ │ │ ├── pip3.exe.manifest │ │ │ ├── python.exe │ │ │ └── pythonw.exe │ │ │ └── pyvenv.cfg │ ├── TimerTasks │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── TimerTasks.iml │ │ │ ├── inspectionProfiles │ │ │ │ └── profiles_settings.xml │ │ │ ├── libraries │ │ │ │ └── MicroPython.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ └── vcs.xml │ │ ├── main.py │ │ └── venv │ │ │ ├── Lib │ │ │ └── site-packages │ │ │ │ ├── Click-7.0.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ └── top_level.txt │ │ │ │ ├── adafruit_ampy-1.0.7.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ │ ├── ampy │ │ │ │ ├── __init__.py │ │ │ │ ├── cli.py │ │ │ │ ├── files.py │ │ │ │ └── pyboard.py │ │ │ │ ├── click │ │ │ │ ├── __init__.py │ │ │ │ ├── _bashcomplete.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _termui_impl.py │ │ │ │ ├── _textwrap.py │ │ │ │ ├── _unicodefun.py │ │ │ │ ├── _winconsole.py │ │ │ │ ├── core.py │ │ │ │ ├── decorators.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── formatting.py │ │ │ │ ├── globals.py │ │ │ │ ├── parser.py │ │ │ │ ├── termui.py │ │ │ │ ├── testing.py │ │ │ │ ├── types.py │ │ │ │ └── utils.py │ │ │ │ ├── docopt-0.6.2-py3.7.egg-info │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── installed-files.txt │ │ │ │ └── top_level.txt │ │ │ │ ├── docopt.py │ │ │ │ ├── dotenv │ │ │ │ ├── __init__.py │ │ │ │ ├── cli.py │ │ │ │ ├── compat.py │ │ │ │ ├── ipython.py │ │ │ │ ├── main.py │ │ │ │ ├── parser.py │ │ │ │ ├── py.typed │ │ │ │ └── version.py │ │ │ │ ├── pyserial-3.4.dist-info │ │ │ │ ├── DESCRIPTION.rst │ │ │ │ ├── INSTALLER │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── metadata.json │ │ │ │ └── top_level.txt │ │ │ │ ├── python_dotenv-0.10.3.dist-info │ │ │ │ ├── INSTALLER │ │ │ │ ├── LICENSE │ │ │ │ ├── METADATA │ │ │ │ ├── RECORD │ │ │ │ ├── WHEEL │ │ │ │ ├── entry_points.txt │ │ │ │ └── top_level.txt │ │ │ │ └── serial │ │ │ │ ├── __init__.py │ │ │ │ ├── aio.py │ │ │ │ ├── rfc2217.py │ │ │ │ ├── rs485.py │ │ │ │ ├── serialcli.py │ │ │ │ ├── serialjava.py │ │ │ │ ├── serialposix.py │ │ │ │ ├── serialutil.py │ │ │ │ ├── serialwin32.py │ │ │ │ ├── threaded │ │ │ │ └── __init__.py │ │ │ │ ├── tools │ │ │ │ ├── __init__.py │ │ │ │ ├── hexlify_codec.py │ │ │ │ ├── list_ports.py │ │ │ │ ├── list_ports_common.py │ │ │ │ ├── list_ports_linux.py │ │ │ │ ├── list_ports_osx.py │ │ │ │ ├── list_ports_posix.py │ │ │ │ ├── list_ports_windows.py │ │ │ │ └── miniterm.py │ │ │ │ ├── urlhandler │ │ │ │ ├── __init__.py │ │ │ │ ├── protocol_alt.py │ │ │ │ ├── protocol_hwgrep.py │ │ │ │ ├── protocol_loop.py │ │ │ │ ├── protocol_rfc2217.py │ │ │ │ ├── protocol_serve-rfc2217.py │ │ │ │ ├── protocol_socket.py │ │ │ │ └── protocol_spy.py │ │ │ │ └── win32.py │ │ │ └── Scripts │ │ │ ├── ampy.exe │ │ │ ├── dotenv.exe │ │ │ └── miniterm.py │ └── asyncio │ │ ├── .idea │ │ ├── .gitignore │ │ ├── asyncio.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── libraries │ │ │ └── MicroPython.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ │ ├── main.py │ │ └── venv │ │ ├── Lib │ │ └── site-packages │ │ │ ├── Click-7.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ │ ├── adafruit_ampy-1.0.7.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── ampy │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ ├── files.cpython-37.pyc │ │ │ │ └── pyboard.cpython-37.pyc │ │ │ ├── cli.py │ │ │ ├── files.py │ │ │ └── pyboard.py │ │ │ ├── click │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── _bashcomplete.cpython-37.pyc │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ ├── _termui_impl.cpython-37.pyc │ │ │ │ ├── _textwrap.cpython-37.pyc │ │ │ │ ├── _unicodefun.cpython-37.pyc │ │ │ │ ├── _winconsole.cpython-37.pyc │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ ├── decorators.cpython-37.pyc │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ ├── formatting.cpython-37.pyc │ │ │ │ ├── globals.cpython-37.pyc │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ ├── termui.cpython-37.pyc │ │ │ │ ├── testing.cpython-37.pyc │ │ │ │ ├── types.cpython-37.pyc │ │ │ │ └── utils.cpython-37.pyc │ │ │ ├── _bashcomplete.py │ │ │ ├── _compat.py │ │ │ ├── _termui_impl.py │ │ │ ├── _textwrap.py │ │ │ ├── _unicodefun.py │ │ │ ├── _winconsole.py │ │ │ ├── core.py │ │ │ ├── decorators.py │ │ │ ├── exceptions.py │ │ │ ├── formatting.py │ │ │ ├── globals.py │ │ │ ├── parser.py │ │ │ ├── termui.py │ │ │ ├── testing.py │ │ │ ├── types.py │ │ │ └── utils.py │ │ │ ├── docopt-0.6.2-py3.7.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── installed-files.txt │ │ │ └── top_level.txt │ │ │ ├── docopt.py │ │ │ ├── dotenv │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ ├── ipython.cpython-37.pyc │ │ │ │ ├── main.cpython-37.pyc │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ └── version.cpython-37.pyc │ │ │ ├── cli.py │ │ │ ├── compat.py │ │ │ ├── ipython.py │ │ │ ├── main.py │ │ │ ├── parser.py │ │ │ ├── py.typed │ │ │ └── version.py │ │ │ ├── easy-install.pth │ │ │ ├── pip-19.0.3-py3.7.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── entry_points.txt │ │ │ │ ├── not-zip-safe │ │ │ │ └── top_level.txt │ │ │ └── pip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ └── link.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolve.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ └── wheel.py │ │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── 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 │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── datrie.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ └── whitespace.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── serializer.py │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── lockfile │ │ │ │ ├── __init__.py │ │ │ │ ├── linklockfile.py │ │ │ │ ├── mkdirlockfile.py │ │ │ │ ├── pidlockfile.py │ │ │ │ ├── sqlitelockfile.py │ │ │ │ └── symlinklockfile.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── envbuild.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ ├── helpers.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── pytoml │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── parser.py │ │ │ │ ├── test.py │ │ │ │ ├── utils.py │ │ │ │ └── writer.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __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 │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ │ ├── pyserial-3.4.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ │ ├── python_dotenv-0.10.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── serial │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── aio.cpython-37.pyc │ │ │ │ ├── rfc2217.cpython-37.pyc │ │ │ │ ├── rs485.cpython-37.pyc │ │ │ │ ├── serialcli.cpython-37.pyc │ │ │ │ ├── serialjava.cpython-37.pyc │ │ │ │ ├── serialposix.cpython-37.pyc │ │ │ │ ├── serialutil.cpython-37.pyc │ │ │ │ ├── serialwin32.cpython-37.pyc │ │ │ │ └── win32.cpython-37.pyc │ │ │ ├── aio.py │ │ │ ├── aio.pyc │ │ │ ├── rfc2217.py │ │ │ ├── rfc2217.pyc │ │ │ ├── rs485.py │ │ │ ├── rs485.pyc │ │ │ ├── serialcli.py │ │ │ ├── serialcli.pyc │ │ │ ├── serialjava.py │ │ │ ├── serialjava.pyc │ │ │ ├── serialposix.py │ │ │ ├── serialposix.pyc │ │ │ ├── serialutil.py │ │ │ ├── serialutil.pyc │ │ │ ├── serialwin32.py │ │ │ ├── serialwin32.pyc │ │ │ ├── threaded │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── tools │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── hexlify_codec.cpython-37.pyc │ │ │ │ │ ├── list_ports.cpython-37.pyc │ │ │ │ │ ├── list_ports_common.cpython-37.pyc │ │ │ │ │ ├── list_ports_linux.cpython-37.pyc │ │ │ │ │ ├── list_ports_osx.cpython-37.pyc │ │ │ │ │ ├── list_ports_posix.cpython-37.pyc │ │ │ │ │ ├── list_ports_windows.cpython-37.pyc │ │ │ │ │ └── miniterm.cpython-37.pyc │ │ │ │ ├── hexlify_codec.py │ │ │ │ ├── hexlify_codec.pyc │ │ │ │ ├── list_ports.py │ │ │ │ ├── list_ports.pyc │ │ │ │ ├── list_ports_common.py │ │ │ │ ├── list_ports_common.pyc │ │ │ │ ├── list_ports_linux.py │ │ │ │ ├── list_ports_linux.pyc │ │ │ │ ├── list_ports_osx.py │ │ │ │ ├── list_ports_osx.pyc │ │ │ │ ├── list_ports_posix.py │ │ │ │ ├── list_ports_posix.pyc │ │ │ │ ├── list_ports_windows.py │ │ │ │ ├── list_ports_windows.pyc │ │ │ │ ├── miniterm.py │ │ │ │ └── miniterm.pyc │ │ │ ├── urlhandler │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── protocol_alt.cpython-37.pyc │ │ │ │ │ ├── protocol_hwgrep.cpython-37.pyc │ │ │ │ │ ├── protocol_loop.cpython-37.pyc │ │ │ │ │ ├── protocol_rfc2217.cpython-37.pyc │ │ │ │ │ ├── protocol_serve-rfc2217.cpython-37.pyc │ │ │ │ │ ├── protocol_socket.cpython-37.pyc │ │ │ │ │ └── protocol_spy.cpython-37.pyc │ │ │ │ ├── protocol_alt.py │ │ │ │ ├── protocol_hwgrep.py │ │ │ │ ├── protocol_hwgrep.pyc │ │ │ │ ├── protocol_loop.py │ │ │ │ ├── protocol_loop.pyc │ │ │ │ ├── protocol_rfc2217.py │ │ │ │ ├── protocol_rfc2217.pyc │ │ │ │ ├── protocol_serve-rfc2217.py │ │ │ │ ├── protocol_socket.py │ │ │ │ ├── protocol_socket.pyc │ │ │ │ ├── protocol_spy.py │ │ │ │ └── protocol_spy.pyc │ │ │ ├── win32.py │ │ │ └── win32.pyc │ │ │ ├── setuptools-40.8.0-py3.7.egg │ │ │ └── setuptools.pth │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── __pycache__ │ │ │ └── miniterm.cpython-37.pyc │ │ ├── activate │ │ ├── activate.bat │ │ ├── ampy.exe │ │ ├── deactivate.bat │ │ ├── dotenv.exe │ │ ├── easy_install-3.7-script.py │ │ ├── easy_install-3.7.exe │ │ ├── easy_install-3.7.exe.manifest │ │ ├── easy_install-script.py │ │ ├── easy_install.exe │ │ ├── easy_install.exe.manifest │ │ ├── miniterm.py │ │ ├── miniterm.pyc │ │ ├── pip-script.py │ │ ├── pip.exe │ │ ├── pip.exe.manifest │ │ ├── pip3-script.py │ │ ├── pip3.7-script.py │ │ ├── pip3.7.exe │ │ ├── pip3.7.exe.manifest │ │ ├── pip3.exe │ │ ├── pip3.exe.manifest │ │ ├── python.exe │ │ └── pythonw.exe │ │ └── pyvenv.cfg └── pyboard_d │ ├── RoundRobin │ ├── .idea │ │ ├── .gitignore │ │ ├── RoundRobin.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── libraries │ │ │ └── MicroPython.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── main.py │ └── venv │ │ ├── Lib │ │ └── site-packages │ │ │ ├── Click-7.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ │ ├── __pycache__ │ │ │ └── docopt.cpython-37.pyc │ │ │ ├── adafruit_ampy-1.0.7.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── ampy │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ ├── files.cpython-37.pyc │ │ │ │ └── pyboard.cpython-37.pyc │ │ │ ├── cli.py │ │ │ ├── files.py │ │ │ └── pyboard.py │ │ │ ├── click │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── _bashcomplete.cpython-37.pyc │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ ├── _termui_impl.cpython-37.pyc │ │ │ │ ├── _textwrap.cpython-37.pyc │ │ │ │ ├── _unicodefun.cpython-37.pyc │ │ │ │ ├── _winconsole.cpython-37.pyc │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ ├── decorators.cpython-37.pyc │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ ├── formatting.cpython-37.pyc │ │ │ │ ├── globals.cpython-37.pyc │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ ├── termui.cpython-37.pyc │ │ │ │ ├── testing.cpython-37.pyc │ │ │ │ ├── types.cpython-37.pyc │ │ │ │ └── utils.cpython-37.pyc │ │ │ ├── _bashcomplete.py │ │ │ ├── _compat.py │ │ │ ├── _termui_impl.py │ │ │ ├── _textwrap.py │ │ │ ├── _unicodefun.py │ │ │ ├── _winconsole.py │ │ │ ├── core.py │ │ │ ├── decorators.py │ │ │ ├── exceptions.py │ │ │ ├── formatting.py │ │ │ ├── globals.py │ │ │ ├── parser.py │ │ │ ├── termui.py │ │ │ ├── testing.py │ │ │ ├── types.py │ │ │ └── utils.py │ │ │ ├── docopt-0.6.2-py3.7.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── installed-files.txt │ │ │ └── top_level.txt │ │ │ ├── docopt.py │ │ │ ├── dotenv │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ ├── ipython.cpython-37.pyc │ │ │ │ ├── main.cpython-37.pyc │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ └── version.cpython-37.pyc │ │ │ ├── cli.py │ │ │ ├── compat.py │ │ │ ├── ipython.py │ │ │ ├── main.py │ │ │ ├── parser.py │ │ │ ├── py.typed │ │ │ └── version.py │ │ │ ├── easy-install.pth │ │ │ ├── pip-19.0.3-py3.7.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── entry_points.txt │ │ │ │ ├── not-zip-safe │ │ │ │ └── top_level.txt │ │ │ └── pip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ └── link.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolve.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ └── wheel.py │ │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── 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 │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── datrie.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ └── whitespace.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── serializer.py │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── lockfile │ │ │ │ ├── __init__.py │ │ │ │ ├── linklockfile.py │ │ │ │ ├── mkdirlockfile.py │ │ │ │ ├── pidlockfile.py │ │ │ │ ├── sqlitelockfile.py │ │ │ │ └── symlinklockfile.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── envbuild.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ ├── helpers.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── pytoml │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── parser.py │ │ │ │ ├── test.py │ │ │ │ ├── utils.py │ │ │ │ └── writer.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __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 │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ │ ├── pyserial-3.4.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ │ ├── python_dotenv-0.10.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── serial │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── aio.cpython-37.pyc │ │ │ │ ├── rfc2217.cpython-37.pyc │ │ │ │ ├── rs485.cpython-37.pyc │ │ │ │ ├── serialcli.cpython-37.pyc │ │ │ │ ├── serialjava.cpython-37.pyc │ │ │ │ ├── serialposix.cpython-37.pyc │ │ │ │ ├── serialutil.cpython-37.pyc │ │ │ │ ├── serialwin32.cpython-37.pyc │ │ │ │ └── win32.cpython-37.pyc │ │ │ ├── aio.py │ │ │ ├── aio.pyc │ │ │ ├── rfc2217.py │ │ │ ├── rfc2217.pyc │ │ │ ├── rs485.py │ │ │ ├── rs485.pyc │ │ │ ├── serialcli.py │ │ │ ├── serialcli.pyc │ │ │ ├── serialjava.py │ │ │ ├── serialjava.pyc │ │ │ ├── serialposix.py │ │ │ ├── serialposix.pyc │ │ │ ├── serialutil.py │ │ │ ├── serialutil.pyc │ │ │ ├── serialwin32.py │ │ │ ├── serialwin32.pyc │ │ │ ├── threaded │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── tools │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── hexlify_codec.cpython-37.pyc │ │ │ │ │ ├── list_ports.cpython-37.pyc │ │ │ │ │ ├── list_ports_common.cpython-37.pyc │ │ │ │ │ ├── list_ports_linux.cpython-37.pyc │ │ │ │ │ ├── list_ports_osx.cpython-37.pyc │ │ │ │ │ ├── list_ports_posix.cpython-37.pyc │ │ │ │ │ ├── list_ports_windows.cpython-37.pyc │ │ │ │ │ └── miniterm.cpython-37.pyc │ │ │ │ ├── hexlify_codec.py │ │ │ │ ├── hexlify_codec.pyc │ │ │ │ ├── list_ports.py │ │ │ │ ├── list_ports.pyc │ │ │ │ ├── list_ports_common.py │ │ │ │ ├── list_ports_common.pyc │ │ │ │ ├── list_ports_linux.py │ │ │ │ ├── list_ports_linux.pyc │ │ │ │ ├── list_ports_osx.py │ │ │ │ ├── list_ports_osx.pyc │ │ │ │ ├── list_ports_posix.py │ │ │ │ ├── list_ports_posix.pyc │ │ │ │ ├── list_ports_windows.py │ │ │ │ ├── list_ports_windows.pyc │ │ │ │ ├── miniterm.py │ │ │ │ └── miniterm.pyc │ │ │ ├── urlhandler │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── protocol_alt.cpython-37.pyc │ │ │ │ │ ├── protocol_hwgrep.cpython-37.pyc │ │ │ │ │ ├── protocol_loop.cpython-37.pyc │ │ │ │ │ ├── protocol_rfc2217.cpython-37.pyc │ │ │ │ │ ├── protocol_serve-rfc2217.cpython-37.pyc │ │ │ │ │ ├── protocol_socket.cpython-37.pyc │ │ │ │ │ └── protocol_spy.cpython-37.pyc │ │ │ │ ├── protocol_alt.py │ │ │ │ ├── protocol_hwgrep.py │ │ │ │ ├── protocol_hwgrep.pyc │ │ │ │ ├── protocol_loop.py │ │ │ │ ├── protocol_loop.pyc │ │ │ │ ├── protocol_rfc2217.py │ │ │ │ ├── protocol_rfc2217.pyc │ │ │ │ ├── protocol_serve-rfc2217.py │ │ │ │ ├── protocol_socket.py │ │ │ │ ├── protocol_socket.pyc │ │ │ │ ├── protocol_spy.py │ │ │ │ └── protocol_spy.pyc │ │ │ ├── win32.py │ │ │ └── win32.pyc │ │ │ ├── setuptools-40.8.0-py3.7.egg │ │ │ └── setuptools.pth │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── __pycache__ │ │ │ └── miniterm.cpython-37.pyc │ │ ├── activate │ │ ├── activate.bat │ │ ├── ampy.exe │ │ ├── deactivate.bat │ │ ├── dotenv.exe │ │ ├── easy_install-3.7-script.py │ │ ├── easy_install-3.7.exe │ │ ├── easy_install-3.7.exe.manifest │ │ ├── easy_install-script.py │ │ ├── easy_install.exe │ │ ├── easy_install.exe.manifest │ │ ├── miniterm.py │ │ ├── miniterm.pyc │ │ ├── pip-script.py │ │ ├── pip.exe │ │ ├── pip.exe.manifest │ │ ├── pip3-script.py │ │ ├── pip3.7-script.py │ │ ├── pip3.7.exe │ │ ├── pip3.7.exe.manifest │ │ ├── pip3.exe │ │ ├── pip3.exe.manifest │ │ ├── python.exe │ │ └── pythonw.exe │ │ └── pyvenv.cfg │ ├── Threads │ ├── .idea │ │ ├── .gitignore │ │ ├── Threads.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── libraries │ │ │ └── MicroPython.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── main.py │ └── venv │ │ ├── Lib │ │ └── site-packages │ │ │ ├── Click-7.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ │ ├── __pycache__ │ │ │ └── docopt.cpython-37.pyc │ │ │ ├── adafruit_ampy-1.0.7.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── ampy │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ ├── files.cpython-37.pyc │ │ │ │ └── pyboard.cpython-37.pyc │ │ │ ├── cli.py │ │ │ ├── files.py │ │ │ └── pyboard.py │ │ │ ├── click │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── _bashcomplete.cpython-37.pyc │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ ├── _termui_impl.cpython-37.pyc │ │ │ │ ├── _textwrap.cpython-37.pyc │ │ │ │ ├── _unicodefun.cpython-37.pyc │ │ │ │ ├── _winconsole.cpython-37.pyc │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ ├── decorators.cpython-37.pyc │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ ├── formatting.cpython-37.pyc │ │ │ │ ├── globals.cpython-37.pyc │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ ├── termui.cpython-37.pyc │ │ │ │ ├── testing.cpython-37.pyc │ │ │ │ ├── types.cpython-37.pyc │ │ │ │ └── utils.cpython-37.pyc │ │ │ ├── _bashcomplete.py │ │ │ ├── _compat.py │ │ │ ├── _termui_impl.py │ │ │ ├── _textwrap.py │ │ │ ├── _unicodefun.py │ │ │ ├── _winconsole.py │ │ │ ├── core.py │ │ │ ├── decorators.py │ │ │ ├── exceptions.py │ │ │ ├── formatting.py │ │ │ ├── globals.py │ │ │ ├── parser.py │ │ │ ├── termui.py │ │ │ ├── testing.py │ │ │ ├── types.py │ │ │ └── utils.py │ │ │ ├── docopt-0.6.2-py3.7.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── installed-files.txt │ │ │ └── top_level.txt │ │ │ ├── docopt.py │ │ │ ├── dotenv │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ ├── ipython.cpython-37.pyc │ │ │ │ ├── main.cpython-37.pyc │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ └── version.cpython-37.pyc │ │ │ ├── cli.py │ │ │ ├── compat.py │ │ │ ├── ipython.py │ │ │ ├── main.py │ │ │ ├── parser.py │ │ │ ├── py.typed │ │ │ └── version.py │ │ │ ├── easy-install.pth │ │ │ ├── pip-19.0.3-py3.7.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── entry_points.txt │ │ │ │ ├── not-zip-safe │ │ │ │ └── top_level.txt │ │ │ └── pip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ └── link.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolve.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ └── wheel.py │ │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── 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 │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── datrie.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ └── whitespace.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── serializer.py │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── lockfile │ │ │ │ ├── __init__.py │ │ │ │ ├── linklockfile.py │ │ │ │ ├── mkdirlockfile.py │ │ │ │ ├── pidlockfile.py │ │ │ │ ├── sqlitelockfile.py │ │ │ │ └── symlinklockfile.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── envbuild.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ ├── helpers.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── pytoml │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── parser.py │ │ │ │ ├── test.py │ │ │ │ ├── utils.py │ │ │ │ └── writer.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __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 │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ │ ├── pyserial-3.4.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ │ ├── python_dotenv-0.10.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── serial │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── aio.cpython-37.pyc │ │ │ │ ├── rfc2217.cpython-37.pyc │ │ │ │ ├── rs485.cpython-37.pyc │ │ │ │ ├── serialcli.cpython-37.pyc │ │ │ │ ├── serialjava.cpython-37.pyc │ │ │ │ ├── serialposix.cpython-37.pyc │ │ │ │ ├── serialutil.cpython-37.pyc │ │ │ │ ├── serialwin32.cpython-37.pyc │ │ │ │ └── win32.cpython-37.pyc │ │ │ ├── aio.py │ │ │ ├── aio.pyc │ │ │ ├── rfc2217.py │ │ │ ├── rfc2217.pyc │ │ │ ├── rs485.py │ │ │ ├── rs485.pyc │ │ │ ├── serialcli.py │ │ │ ├── serialcli.pyc │ │ │ ├── serialjava.py │ │ │ ├── serialjava.pyc │ │ │ ├── serialposix.py │ │ │ ├── serialposix.pyc │ │ │ ├── serialutil.py │ │ │ ├── serialutil.pyc │ │ │ ├── serialwin32.py │ │ │ ├── serialwin32.pyc │ │ │ ├── threaded │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── tools │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── hexlify_codec.cpython-37.pyc │ │ │ │ │ ├── list_ports.cpython-37.pyc │ │ │ │ │ ├── list_ports_common.cpython-37.pyc │ │ │ │ │ ├── list_ports_linux.cpython-37.pyc │ │ │ │ │ ├── list_ports_osx.cpython-37.pyc │ │ │ │ │ ├── list_ports_posix.cpython-37.pyc │ │ │ │ │ ├── list_ports_windows.cpython-37.pyc │ │ │ │ │ └── miniterm.cpython-37.pyc │ │ │ │ ├── hexlify_codec.py │ │ │ │ ├── hexlify_codec.pyc │ │ │ │ ├── list_ports.py │ │ │ │ ├── list_ports.pyc │ │ │ │ ├── list_ports_common.py │ │ │ │ ├── list_ports_common.pyc │ │ │ │ ├── list_ports_linux.py │ │ │ │ ├── list_ports_linux.pyc │ │ │ │ ├── list_ports_osx.py │ │ │ │ ├── list_ports_osx.pyc │ │ │ │ ├── list_ports_posix.py │ │ │ │ ├── list_ports_posix.pyc │ │ │ │ ├── list_ports_windows.py │ │ │ │ ├── list_ports_windows.pyc │ │ │ │ ├── miniterm.py │ │ │ │ └── miniterm.pyc │ │ │ ├── urlhandler │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── protocol_alt.cpython-37.pyc │ │ │ │ │ ├── protocol_hwgrep.cpython-37.pyc │ │ │ │ │ ├── protocol_loop.cpython-37.pyc │ │ │ │ │ ├── protocol_rfc2217.cpython-37.pyc │ │ │ │ │ ├── protocol_serve-rfc2217.cpython-37.pyc │ │ │ │ │ ├── protocol_socket.cpython-37.pyc │ │ │ │ │ └── protocol_spy.cpython-37.pyc │ │ │ │ ├── protocol_alt.py │ │ │ │ ├── protocol_hwgrep.py │ │ │ │ ├── protocol_hwgrep.pyc │ │ │ │ ├── protocol_loop.py │ │ │ │ ├── protocol_loop.pyc │ │ │ │ ├── protocol_rfc2217.py │ │ │ │ ├── protocol_rfc2217.pyc │ │ │ │ ├── protocol_serve-rfc2217.py │ │ │ │ ├── protocol_socket.py │ │ │ │ ├── protocol_socket.pyc │ │ │ │ ├── protocol_spy.py │ │ │ │ └── protocol_spy.pyc │ │ │ ├── win32.py │ │ │ └── win32.pyc │ │ │ ├── setuptools-40.8.0-py3.7.egg │ │ │ └── setuptools.pth │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── __pycache__ │ │ │ └── miniterm.cpython-37.pyc │ │ ├── activate │ │ ├── activate.bat │ │ ├── ampy.exe │ │ ├── deactivate.bat │ │ ├── dotenv.exe │ │ ├── easy_install-3.7-script.py │ │ ├── easy_install-3.7.exe │ │ ├── easy_install-3.7.exe.manifest │ │ ├── easy_install-script.py │ │ ├── easy_install.exe │ │ ├── easy_install.exe.manifest │ │ ├── miniterm.py │ │ ├── miniterm.pyc │ │ ├── pip-script.py │ │ ├── pip.exe │ │ ├── pip.exe.manifest │ │ ├── pip3-script.py │ │ ├── pip3.7-script.py │ │ ├── pip3.7.exe │ │ ├── pip3.7.exe.manifest │ │ ├── pip3.exe │ │ ├── pip3.exe.manifest │ │ ├── python.exe │ │ └── pythonw.exe │ │ └── pyvenv.cfg │ ├── TimerTasks │ ├── .idea │ │ ├── .gitignore │ │ ├── TimerTasks.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── libraries │ │ │ └── MicroPython.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── vcs.xml │ ├── main.py │ └── venv │ │ ├── Lib │ │ └── site-packages │ │ │ ├── Click-7.0.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE.txt │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ └── top_level.txt │ │ │ ├── __pycache__ │ │ │ └── docopt.cpython-37.pyc │ │ │ ├── adafruit_ampy-1.0.7.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── ampy │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ ├── files.cpython-37.pyc │ │ │ │ └── pyboard.cpython-37.pyc │ │ │ ├── cli.py │ │ │ ├── files.py │ │ │ └── pyboard.py │ │ │ ├── click │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── _bashcomplete.cpython-37.pyc │ │ │ │ ├── _compat.cpython-37.pyc │ │ │ │ ├── _termui_impl.cpython-37.pyc │ │ │ │ ├── _textwrap.cpython-37.pyc │ │ │ │ ├── _unicodefun.cpython-37.pyc │ │ │ │ ├── _winconsole.cpython-37.pyc │ │ │ │ ├── core.cpython-37.pyc │ │ │ │ ├── decorators.cpython-37.pyc │ │ │ │ ├── exceptions.cpython-37.pyc │ │ │ │ ├── formatting.cpython-37.pyc │ │ │ │ ├── globals.cpython-37.pyc │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ ├── termui.cpython-37.pyc │ │ │ │ ├── testing.cpython-37.pyc │ │ │ │ ├── types.cpython-37.pyc │ │ │ │ └── utils.cpython-37.pyc │ │ │ ├── _bashcomplete.py │ │ │ ├── _compat.py │ │ │ ├── _termui_impl.py │ │ │ ├── _textwrap.py │ │ │ ├── _unicodefun.py │ │ │ ├── _winconsole.py │ │ │ ├── core.py │ │ │ ├── decorators.py │ │ │ ├── exceptions.py │ │ │ ├── formatting.py │ │ │ ├── globals.py │ │ │ ├── parser.py │ │ │ ├── termui.py │ │ │ ├── testing.py │ │ │ ├── types.py │ │ │ └── utils.py │ │ │ ├── docopt-0.6.2-py3.7.egg-info │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── installed-files.txt │ │ │ └── top_level.txt │ │ │ ├── docopt.py │ │ │ ├── dotenv │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── cli.cpython-37.pyc │ │ │ │ ├── compat.cpython-37.pyc │ │ │ │ ├── ipython.cpython-37.pyc │ │ │ │ ├── main.cpython-37.pyc │ │ │ │ ├── parser.cpython-37.pyc │ │ │ │ └── version.cpython-37.pyc │ │ │ ├── cli.py │ │ │ ├── compat.py │ │ │ ├── ipython.py │ │ │ ├── main.py │ │ │ ├── parser.py │ │ │ ├── py.typed │ │ │ └── version.py │ │ │ ├── easy-install.pth │ │ │ ├── pip-19.0.3-py3.7.egg │ │ │ ├── EGG-INFO │ │ │ │ ├── PKG-INFO │ │ │ │ ├── SOURCES.txt │ │ │ │ ├── dependency_links.txt │ │ │ │ ├── entry_points.txt │ │ │ │ ├── not-zip-safe │ │ │ │ └── top_level.txt │ │ │ └── pip │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── _internal │ │ │ │ ├── __init__.py │ │ │ │ ├── build_env.py │ │ │ │ ├── cache.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── autocompletion.py │ │ │ │ │ ├── base_command.py │ │ │ │ │ ├── cmdoptions.py │ │ │ │ │ ├── main_parser.py │ │ │ │ │ ├── parser.py │ │ │ │ │ └── status_codes.py │ │ │ │ ├── commands │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ │ ├── candidate.py │ │ │ │ │ ├── format_control.py │ │ │ │ │ ├── index.py │ │ │ │ │ └── link.py │ │ │ │ ├── operations │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── check.py │ │ │ │ │ ├── freeze.py │ │ │ │ │ └── prepare.py │ │ │ │ ├── pep425tags.py │ │ │ │ ├── pyproject.py │ │ │ │ ├── req │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── constructors.py │ │ │ │ │ ├── req_file.py │ │ │ │ │ ├── req_install.py │ │ │ │ │ ├── req_set.py │ │ │ │ │ ├── req_tracker.py │ │ │ │ │ └── req_uninstall.py │ │ │ │ ├── resolve.py │ │ │ │ ├── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ │ ├── bazaar.py │ │ │ │ │ ├── git.py │ │ │ │ │ ├── mercurial.py │ │ │ │ │ └── subversion.py │ │ │ │ └── wheel.py │ │ │ │ └── _vendor │ │ │ │ ├── __init__.py │ │ │ │ ├── appdirs.py │ │ │ │ ├── cachecontrol │ │ │ │ ├── __init__.py │ │ │ │ ├── _cmd.py │ │ │ │ ├── adapter.py │ │ │ │ ├── cache.py │ │ │ │ ├── caches │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── file_cache.py │ │ │ │ │ └── redis_cache.py │ │ │ │ ├── compat.py │ │ │ │ ├── controller.py │ │ │ │ ├── filewrapper.py │ │ │ │ ├── heuristics.py │ │ │ │ ├── serialize.py │ │ │ │ └── wrapper.py │ │ │ │ ├── certifi │ │ │ │ ├── __init__.py │ │ │ │ ├── __main__.py │ │ │ │ ├── cacert.pem │ │ │ │ └── core.py │ │ │ │ ├── chardet │ │ │ │ ├── __init__.py │ │ │ │ ├── big5freq.py │ │ │ │ ├── big5prober.py │ │ │ │ ├── chardistribution.py │ │ │ │ ├── charsetgroupprober.py │ │ │ │ ├── charsetprober.py │ │ │ │ ├── cli │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── 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 │ │ │ │ ├── ansi.py │ │ │ │ ├── ansitowin32.py │ │ │ │ ├── initialise.py │ │ │ │ ├── win32.py │ │ │ │ └── winterm.py │ │ │ │ ├── distlib │ │ │ │ ├── __init__.py │ │ │ │ ├── _backport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── 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 │ │ │ │ ├── _ihatexml.py │ │ │ │ ├── _inputstream.py │ │ │ │ ├── _tokenizer.py │ │ │ │ ├── _trie │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _base.py │ │ │ │ │ ├── datrie.py │ │ │ │ │ └── py.py │ │ │ │ ├── _utils.py │ │ │ │ ├── constants.py │ │ │ │ ├── filters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── inject_meta_charset.py │ │ │ │ │ ├── lint.py │ │ │ │ │ ├── optionaltags.py │ │ │ │ │ ├── sanitizer.py │ │ │ │ │ └── whitespace.py │ │ │ │ ├── html5parser.py │ │ │ │ ├── serializer.py │ │ │ │ ├── treeadapters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── genshi.py │ │ │ │ │ └── sax.py │ │ │ │ ├── treebuilders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ └── etree_lxml.py │ │ │ │ └── treewalkers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── dom.py │ │ │ │ │ ├── etree.py │ │ │ │ │ ├── etree_lxml.py │ │ │ │ │ └── genshi.py │ │ │ │ ├── idna │ │ │ │ ├── __init__.py │ │ │ │ ├── codec.py │ │ │ │ ├── compat.py │ │ │ │ ├── core.py │ │ │ │ ├── idnadata.py │ │ │ │ ├── intranges.py │ │ │ │ ├── package_data.py │ │ │ │ └── uts46data.py │ │ │ │ ├── ipaddress.py │ │ │ │ ├── lockfile │ │ │ │ ├── __init__.py │ │ │ │ ├── linklockfile.py │ │ │ │ ├── mkdirlockfile.py │ │ │ │ ├── pidlockfile.py │ │ │ │ ├── sqlitelockfile.py │ │ │ │ └── symlinklockfile.py │ │ │ │ ├── msgpack │ │ │ │ ├── __init__.py │ │ │ │ ├── _version.py │ │ │ │ ├── exceptions.py │ │ │ │ └── fallback.py │ │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ │ ├── pep517 │ │ │ │ ├── __init__.py │ │ │ │ ├── _in_process.py │ │ │ │ ├── build.py │ │ │ │ ├── check.py │ │ │ │ ├── colorlog.py │ │ │ │ ├── compat.py │ │ │ │ ├── envbuild.py │ │ │ │ └── wrappers.py │ │ │ │ ├── pkg_resources │ │ │ │ ├── __init__.py │ │ │ │ └── py31compat.py │ │ │ │ ├── progress │ │ │ │ ├── __init__.py │ │ │ │ ├── bar.py │ │ │ │ ├── counter.py │ │ │ │ ├── helpers.py │ │ │ │ └── spinner.py │ │ │ │ ├── pyparsing.py │ │ │ │ ├── pytoml │ │ │ │ ├── __init__.py │ │ │ │ ├── core.py │ │ │ │ ├── parser.py │ │ │ │ ├── test.py │ │ │ │ ├── utils.py │ │ │ │ └── writer.py │ │ │ │ ├── requests │ │ │ │ ├── __init__.py │ │ │ │ ├── __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 │ │ │ │ ├── _collections.py │ │ │ │ ├── connection.py │ │ │ │ ├── connectionpool.py │ │ │ │ ├── contrib │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── _appengine_environ.py │ │ │ │ │ ├── _securetransport │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bindings.py │ │ │ │ │ │ └── low_level.py │ │ │ │ │ ├── appengine.py │ │ │ │ │ ├── ntlmpool.py │ │ │ │ │ ├── pyopenssl.py │ │ │ │ │ ├── securetransport.py │ │ │ │ │ └── socks.py │ │ │ │ ├── exceptions.py │ │ │ │ ├── fields.py │ │ │ │ ├── filepost.py │ │ │ │ ├── packages │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── backports │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── makefile.py │ │ │ │ │ ├── six.py │ │ │ │ │ └── ssl_match_hostname │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── _implementation.py │ │ │ │ ├── poolmanager.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ └── util │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── connection.py │ │ │ │ │ ├── queue.py │ │ │ │ │ ├── request.py │ │ │ │ │ ├── response.py │ │ │ │ │ ├── retry.py │ │ │ │ │ ├── ssl_.py │ │ │ │ │ ├── timeout.py │ │ │ │ │ ├── url.py │ │ │ │ │ └── wait.py │ │ │ │ └── webencodings │ │ │ │ ├── __init__.py │ │ │ │ ├── labels.py │ │ │ │ ├── mklabels.py │ │ │ │ ├── tests.py │ │ │ │ └── x_user_defined.py │ │ │ ├── pyserial-3.4.dist-info │ │ │ ├── DESCRIPTION.rst │ │ │ ├── INSTALLER │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── metadata.json │ │ │ └── top_level.txt │ │ │ ├── python_dotenv-0.10.3.dist-info │ │ │ ├── INSTALLER │ │ │ ├── LICENSE │ │ │ ├── METADATA │ │ │ ├── RECORD │ │ │ ├── WHEEL │ │ │ ├── entry_points.txt │ │ │ └── top_level.txt │ │ │ ├── serial │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── aio.cpython-37.pyc │ │ │ │ ├── rfc2217.cpython-37.pyc │ │ │ │ ├── rs485.cpython-37.pyc │ │ │ │ ├── serialcli.cpython-37.pyc │ │ │ │ ├── serialjava.cpython-37.pyc │ │ │ │ ├── serialposix.cpython-37.pyc │ │ │ │ ├── serialutil.cpython-37.pyc │ │ │ │ ├── serialwin32.cpython-37.pyc │ │ │ │ └── win32.cpython-37.pyc │ │ │ ├── aio.py │ │ │ ├── aio.pyc │ │ │ ├── rfc2217.py │ │ │ ├── rfc2217.pyc │ │ │ ├── rs485.py │ │ │ ├── rs485.pyc │ │ │ ├── serialcli.py │ │ │ ├── serialcli.pyc │ │ │ ├── serialjava.py │ │ │ ├── serialjava.pyc │ │ │ ├── serialposix.py │ │ │ ├── serialposix.pyc │ │ │ ├── serialutil.py │ │ │ ├── serialutil.pyc │ │ │ ├── serialwin32.py │ │ │ ├── serialwin32.pyc │ │ │ ├── threaded │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-37.pyc │ │ │ ├── tools │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── hexlify_codec.cpython-37.pyc │ │ │ │ │ ├── list_ports.cpython-37.pyc │ │ │ │ │ ├── list_ports_common.cpython-37.pyc │ │ │ │ │ ├── list_ports_linux.cpython-37.pyc │ │ │ │ │ ├── list_ports_osx.cpython-37.pyc │ │ │ │ │ ├── list_ports_posix.cpython-37.pyc │ │ │ │ │ ├── list_ports_windows.cpython-37.pyc │ │ │ │ │ └── miniterm.cpython-37.pyc │ │ │ │ ├── hexlify_codec.py │ │ │ │ ├── hexlify_codec.pyc │ │ │ │ ├── list_ports.py │ │ │ │ ├── list_ports.pyc │ │ │ │ ├── list_ports_common.py │ │ │ │ ├── list_ports_common.pyc │ │ │ │ ├── list_ports_linux.py │ │ │ │ ├── list_ports_linux.pyc │ │ │ │ ├── list_ports_osx.py │ │ │ │ ├── list_ports_osx.pyc │ │ │ │ ├── list_ports_posix.py │ │ │ │ ├── list_ports_posix.pyc │ │ │ │ ├── list_ports_windows.py │ │ │ │ ├── list_ports_windows.pyc │ │ │ │ ├── miniterm.py │ │ │ │ └── miniterm.pyc │ │ │ ├── urlhandler │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ │ ├── protocol_alt.cpython-37.pyc │ │ │ │ │ ├── protocol_hwgrep.cpython-37.pyc │ │ │ │ │ ├── protocol_loop.cpython-37.pyc │ │ │ │ │ ├── protocol_rfc2217.cpython-37.pyc │ │ │ │ │ ├── protocol_serve-rfc2217.cpython-37.pyc │ │ │ │ │ ├── protocol_socket.cpython-37.pyc │ │ │ │ │ └── protocol_spy.cpython-37.pyc │ │ │ │ ├── protocol_alt.py │ │ │ │ ├── protocol_hwgrep.py │ │ │ │ ├── protocol_hwgrep.pyc │ │ │ │ ├── protocol_loop.py │ │ │ │ ├── protocol_loop.pyc │ │ │ │ ├── protocol_rfc2217.py │ │ │ │ ├── protocol_rfc2217.pyc │ │ │ │ ├── protocol_serve-rfc2217.py │ │ │ │ ├── protocol_socket.py │ │ │ │ ├── protocol_socket.pyc │ │ │ │ ├── protocol_spy.py │ │ │ │ └── protocol_spy.pyc │ │ │ ├── win32.py │ │ │ └── win32.pyc │ │ │ ├── setuptools-40.8.0-py3.7.egg │ │ │ └── setuptools.pth │ │ ├── Scripts │ │ ├── Activate.ps1 │ │ ├── __pycache__ │ │ │ └── miniterm.cpython-37.pyc │ │ ├── activate │ │ ├── activate.bat │ │ ├── ampy.exe │ │ ├── deactivate.bat │ │ ├── dotenv.exe │ │ ├── easy_install-3.7-script.py │ │ ├── easy_install-3.7.exe │ │ ├── easy_install-3.7.exe.manifest │ │ ├── easy_install-script.py │ │ ├── easy_install.exe │ │ ├── easy_install.exe.manifest │ │ ├── miniterm.py │ │ ├── miniterm.pyc │ │ ├── pip-script.py │ │ ├── pip.exe │ │ ├── pip.exe.manifest │ │ ├── pip3-script.py │ │ ├── pip3.7-script.py │ │ ├── pip3.7.exe │ │ ├── pip3.7.exe.manifest │ │ ├── pip3.exe │ │ ├── pip3.exe.manifest │ │ ├── python.exe │ │ └── pythonw.exe │ │ └── pyvenv.cfg │ └── asyncio │ ├── .idea │ ├── .gitignore │ ├── asyncio.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── libraries │ │ ├── MicroPython.xml │ │ ├── MicroPython2.xml │ │ └── MicroPython3.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml │ ├── main.py │ └── venv │ ├── Lib │ └── site-packages │ │ ├── Click-7.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── __pycache__ │ │ └── docopt.cpython-37.pyc │ │ ├── adafruit_ampy-1.0.7.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── ampy │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── cli.cpython-37.pyc │ │ │ ├── files.cpython-37.pyc │ │ │ └── pyboard.cpython-37.pyc │ │ ├── cli.py │ │ ├── files.py │ │ └── pyboard.py │ │ ├── click │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── _bashcomplete.cpython-37.pyc │ │ │ ├── _compat.cpython-37.pyc │ │ │ ├── _termui_impl.cpython-37.pyc │ │ │ ├── _textwrap.cpython-37.pyc │ │ │ ├── _unicodefun.cpython-37.pyc │ │ │ ├── _winconsole.cpython-37.pyc │ │ │ ├── core.cpython-37.pyc │ │ │ ├── decorators.cpython-37.pyc │ │ │ ├── exceptions.cpython-37.pyc │ │ │ ├── formatting.cpython-37.pyc │ │ │ ├── globals.cpython-37.pyc │ │ │ ├── parser.cpython-37.pyc │ │ │ ├── termui.cpython-37.pyc │ │ │ ├── testing.cpython-37.pyc │ │ │ ├── types.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── _bashcomplete.py │ │ ├── _compat.py │ │ ├── _termui_impl.py │ │ ├── _textwrap.py │ │ ├── _unicodefun.py │ │ ├── _winconsole.py │ │ ├── core.py │ │ ├── decorators.py │ │ ├── exceptions.py │ │ ├── formatting.py │ │ ├── globals.py │ │ ├── parser.py │ │ ├── termui.py │ │ ├── testing.py │ │ ├── types.py │ │ └── utils.py │ │ ├── docopt-0.6.2-py3.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ └── top_level.txt │ │ ├── docopt.py │ │ ├── dotenv │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── cli.cpython-37.pyc │ │ │ ├── compat.cpython-37.pyc │ │ │ ├── ipython.cpython-37.pyc │ │ │ ├── main.cpython-37.pyc │ │ │ ├── parser.cpython-37.pyc │ │ │ └── version.cpython-37.pyc │ │ ├── cli.py │ │ ├── compat.py │ │ ├── ipython.py │ │ ├── main.py │ │ ├── parser.py │ │ ├── py.typed │ │ └── version.py │ │ ├── easy-install.pth │ │ ├── pip-19.0.3-py3.7.egg │ │ ├── EGG-INFO │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── not-zip-safe │ │ │ └── top_level.txt │ │ └── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ │ ├── candidate.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ └── link.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolve.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ └── subversion.py │ │ │ └── wheel.py │ │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ └── 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 │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ ├── datrie.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ │ ├── ipaddress.py │ │ │ ├── lockfile │ │ │ ├── __init__.py │ │ │ ├── linklockfile.py │ │ │ ├── mkdirlockfile.py │ │ │ ├── pidlockfile.py │ │ │ ├── sqlitelockfile.py │ │ │ └── symlinklockfile.py │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── _in_process.py │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── envbuild.py │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ ├── helpers.py │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── pytoml │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── parser.py │ │ │ ├── test.py │ │ │ ├── utils.py │ │ │ └── writer.py │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __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 │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ │ ├── pyserial-3.4.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── python_dotenv-0.10.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── serial │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── aio.cpython-37.pyc │ │ │ ├── rfc2217.cpython-37.pyc │ │ │ ├── rs485.cpython-37.pyc │ │ │ ├── serialcli.cpython-37.pyc │ │ │ ├── serialjava.cpython-37.pyc │ │ │ ├── serialposix.cpython-37.pyc │ │ │ ├── serialutil.cpython-37.pyc │ │ │ ├── serialwin32.cpython-37.pyc │ │ │ └── win32.cpython-37.pyc │ │ ├── aio.py │ │ ├── aio.pyc │ │ ├── rfc2217.py │ │ ├── rfc2217.pyc │ │ ├── rs485.py │ │ ├── rs485.pyc │ │ ├── serialcli.py │ │ ├── serialcli.pyc │ │ ├── serialjava.py │ │ ├── serialjava.pyc │ │ ├── serialposix.py │ │ ├── serialposix.pyc │ │ ├── serialutil.py │ │ ├── serialutil.pyc │ │ ├── serialwin32.py │ │ ├── serialwin32.pyc │ │ ├── threaded │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── hexlify_codec.cpython-37.pyc │ │ │ │ ├── list_ports.cpython-37.pyc │ │ │ │ ├── list_ports_common.cpython-37.pyc │ │ │ │ ├── list_ports_linux.cpython-37.pyc │ │ │ │ ├── list_ports_osx.cpython-37.pyc │ │ │ │ ├── list_ports_posix.cpython-37.pyc │ │ │ │ ├── list_ports_windows.cpython-37.pyc │ │ │ │ └── miniterm.cpython-37.pyc │ │ │ ├── hexlify_codec.py │ │ │ ├── hexlify_codec.pyc │ │ │ ├── list_ports.py │ │ │ ├── list_ports.pyc │ │ │ ├── list_ports_common.py │ │ │ ├── list_ports_common.pyc │ │ │ ├── list_ports_linux.py │ │ │ ├── list_ports_linux.pyc │ │ │ ├── list_ports_osx.py │ │ │ ├── list_ports_osx.pyc │ │ │ ├── list_ports_posix.py │ │ │ ├── list_ports_posix.pyc │ │ │ ├── list_ports_windows.py │ │ │ ├── list_ports_windows.pyc │ │ │ ├── miniterm.py │ │ │ └── miniterm.pyc │ │ ├── urlhandler │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── protocol_alt.cpython-37.pyc │ │ │ │ ├── protocol_hwgrep.cpython-37.pyc │ │ │ │ ├── protocol_loop.cpython-37.pyc │ │ │ │ ├── protocol_rfc2217.cpython-37.pyc │ │ │ │ ├── protocol_serve-rfc2217.cpython-37.pyc │ │ │ │ ├── protocol_socket.cpython-37.pyc │ │ │ │ └── protocol_spy.cpython-37.pyc │ │ │ ├── protocol_alt.py │ │ │ ├── protocol_hwgrep.py │ │ │ ├── protocol_hwgrep.pyc │ │ │ ├── protocol_loop.py │ │ │ ├── protocol_loop.pyc │ │ │ ├── protocol_rfc2217.py │ │ │ ├── protocol_rfc2217.pyc │ │ │ ├── protocol_serve-rfc2217.py │ │ │ ├── protocol_socket.py │ │ │ ├── protocol_socket.pyc │ │ │ ├── protocol_spy.py │ │ │ └── protocol_spy.pyc │ │ ├── win32.py │ │ └── win32.pyc │ │ ├── setuptools-40.8.0-py3.7.egg │ │ └── setuptools.pth │ ├── Scripts │ ├── Activate.ps1 │ ├── __pycache__ │ │ └── miniterm.cpython-37.pyc │ ├── activate │ ├── activate.bat │ ├── ampy.exe │ ├── deactivate.bat │ ├── dotenv.exe │ ├── easy_install-3.7-script.py │ ├── easy_install-3.7.exe │ ├── easy_install-3.7.exe.manifest │ ├── easy_install-script.py │ ├── easy_install.exe │ ├── easy_install.exe.manifest │ ├── miniterm.py │ ├── miniterm.pyc │ ├── pip-script.py │ ├── pip.exe │ ├── pip.exe.manifest │ ├── pip3-script.py │ ├── pip3.7-script.py │ ├── pip3.7.exe │ ├── pip3.7.exe.manifest │ ├── pip3.exe │ ├── pip3.exe.manifest │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── Chapter03 └── pyboard_1_1 │ ├── .idea │ ├── .gitignore │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── libraries │ │ └── MicroPython.xml │ ├── misc.xml │ ├── modules.xml │ ├── pyboard_1_1.iml │ └── vcs.xml │ ├── LED_RGB.py │ ├── PCA8574.py │ ├── button_rgb.py │ ├── main.py │ └── venv │ ├── Lib │ └── site-packages │ │ ├── Click-7.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── adafruit_ampy-1.0.7.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── ampy │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── cli.cpython-37.pyc │ │ │ ├── files.cpython-37.pyc │ │ │ └── pyboard.cpython-37.pyc │ │ ├── cli.py │ │ ├── files.py │ │ └── pyboard.py │ │ ├── click │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── _bashcomplete.cpython-37.pyc │ │ │ ├── _compat.cpython-37.pyc │ │ │ ├── _termui_impl.cpython-37.pyc │ │ │ ├── _textwrap.cpython-37.pyc │ │ │ ├── _unicodefun.cpython-37.pyc │ │ │ ├── _winconsole.cpython-37.pyc │ │ │ ├── core.cpython-37.pyc │ │ │ ├── decorators.cpython-37.pyc │ │ │ ├── exceptions.cpython-37.pyc │ │ │ ├── formatting.cpython-37.pyc │ │ │ ├── globals.cpython-37.pyc │ │ │ ├── parser.cpython-37.pyc │ │ │ ├── termui.cpython-37.pyc │ │ │ ├── testing.cpython-37.pyc │ │ │ ├── types.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── _bashcomplete.py │ │ ├── _compat.py │ │ ├── _termui_impl.py │ │ ├── _textwrap.py │ │ ├── _unicodefun.py │ │ ├── _winconsole.py │ │ ├── core.py │ │ ├── decorators.py │ │ ├── exceptions.py │ │ ├── formatting.py │ │ ├── globals.py │ │ ├── parser.py │ │ ├── termui.py │ │ ├── testing.py │ │ ├── types.py │ │ └── utils.py │ │ ├── docopt-0.6.2-py3.7.egg-info │ │ ├── PKG-INFO │ │ ├── SOURCES.txt │ │ ├── dependency_links.txt │ │ ├── installed-files.txt │ │ └── top_level.txt │ │ ├── docopt.py │ │ ├── dotenv │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── cli.cpython-37.pyc │ │ │ ├── compat.cpython-37.pyc │ │ │ ├── ipython.cpython-37.pyc │ │ │ ├── main.cpython-37.pyc │ │ │ ├── parser.cpython-37.pyc │ │ │ └── version.cpython-37.pyc │ │ ├── cli.py │ │ ├── compat.py │ │ ├── ipython.py │ │ ├── main.py │ │ ├── parser.py │ │ ├── py.typed │ │ └── version.py │ │ ├── easy-install.pth │ │ ├── pip-19.0.3-py3.7.egg │ │ ├── EGG-INFO │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── not-zip-safe │ │ │ └── top_level.txt │ │ └── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ │ ├── candidate.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ └── link.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolve.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ └── subversion.py │ │ │ └── wheel.py │ │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ └── 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 │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ ├── datrie.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ │ ├── ipaddress.py │ │ │ ├── lockfile │ │ │ ├── __init__.py │ │ │ ├── linklockfile.py │ │ │ ├── mkdirlockfile.py │ │ │ ├── pidlockfile.py │ │ │ ├── sqlitelockfile.py │ │ │ └── symlinklockfile.py │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── _in_process.py │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── envbuild.py │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ ├── helpers.py │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── pytoml │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── parser.py │ │ │ ├── test.py │ │ │ ├── utils.py │ │ │ └── writer.py │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __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 │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ │ ├── pyserial-3.4.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── python_dotenv-0.10.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── serial │ │ ├── __init__.py │ │ ├── __init__.pyc │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── aio.cpython-37.pyc │ │ │ ├── rfc2217.cpython-37.pyc │ │ │ ├── rs485.cpython-37.pyc │ │ │ ├── serialcli.cpython-37.pyc │ │ │ ├── serialjava.cpython-37.pyc │ │ │ ├── serialposix.cpython-37.pyc │ │ │ ├── serialutil.cpython-37.pyc │ │ │ ├── serialwin32.cpython-37.pyc │ │ │ └── win32.cpython-37.pyc │ │ ├── aio.py │ │ ├── aio.pyc │ │ ├── rfc2217.py │ │ ├── rfc2217.pyc │ │ ├── rs485.py │ │ ├── rs485.pyc │ │ ├── serialcli.py │ │ ├── serialcli.pyc │ │ ├── serialjava.py │ │ ├── serialjava.pyc │ │ ├── serialposix.py │ │ ├── serialposix.pyc │ │ ├── serialutil.py │ │ ├── serialutil.pyc │ │ ├── serialwin32.py │ │ ├── serialwin32.pyc │ │ ├── threaded │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-37.pyc │ │ ├── tools │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── hexlify_codec.cpython-37.pyc │ │ │ │ ├── list_ports.cpython-37.pyc │ │ │ │ ├── list_ports_common.cpython-37.pyc │ │ │ │ ├── list_ports_linux.cpython-37.pyc │ │ │ │ ├── list_ports_osx.cpython-37.pyc │ │ │ │ ├── list_ports_posix.cpython-37.pyc │ │ │ │ ├── list_ports_windows.cpython-37.pyc │ │ │ │ └── miniterm.cpython-37.pyc │ │ │ ├── hexlify_codec.py │ │ │ ├── hexlify_codec.pyc │ │ │ ├── list_ports.py │ │ │ ├── list_ports.pyc │ │ │ ├── list_ports_common.py │ │ │ ├── list_ports_common.pyc │ │ │ ├── list_ports_linux.py │ │ │ ├── list_ports_linux.pyc │ │ │ ├── list_ports_osx.py │ │ │ ├── list_ports_osx.pyc │ │ │ ├── list_ports_posix.py │ │ │ ├── list_ports_posix.pyc │ │ │ ├── list_ports_windows.py │ │ │ ├── list_ports_windows.pyc │ │ │ ├── miniterm.py │ │ │ └── miniterm.pyc │ │ ├── urlhandler │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── protocol_alt.cpython-37.pyc │ │ │ │ ├── protocol_hwgrep.cpython-37.pyc │ │ │ │ ├── protocol_loop.cpython-37.pyc │ │ │ │ ├── protocol_rfc2217.cpython-37.pyc │ │ │ │ ├── protocol_serve-rfc2217.cpython-37.pyc │ │ │ │ ├── protocol_socket.cpython-37.pyc │ │ │ │ └── protocol_spy.cpython-37.pyc │ │ │ ├── protocol_alt.py │ │ │ ├── protocol_hwgrep.py │ │ │ ├── protocol_hwgrep.pyc │ │ │ ├── protocol_loop.py │ │ │ ├── protocol_loop.pyc │ │ │ ├── protocol_rfc2217.py │ │ │ ├── protocol_rfc2217.pyc │ │ │ ├── protocol_serve-rfc2217.py │ │ │ ├── protocol_socket.py │ │ │ ├── protocol_socket.pyc │ │ │ ├── protocol_spy.py │ │ │ └── protocol_spy.pyc │ │ ├── win32.py │ │ └── win32.pyc │ │ ├── setuptools-40.8.0-py3.7.egg │ │ └── setuptools.pth │ ├── Scripts │ ├── Activate.ps1 │ ├── __pycache__ │ │ └── miniterm.cpython-37.pyc │ ├── activate │ ├── activate.bat │ ├── ampy.exe │ ├── deactivate.bat │ ├── dotenv.exe │ ├── easy_install-3.7-script.py │ ├── easy_install-3.7.exe │ ├── easy_install-3.7.exe.manifest │ ├── easy_install-script.py │ ├── easy_install.exe │ ├── easy_install.exe.manifest │ ├── miniterm.py │ ├── miniterm.pyc │ ├── pip-script.py │ ├── pip.exe │ ├── pip.exe.manifest │ ├── pip3-script.py │ ├── pip3.7-script.py │ ├── pip3.7.exe │ ├── pip3.7.exe.manifest │ ├── pip3.exe │ ├── pip3.exe.manifest │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── Chapter04 ├── LED_RGB.py ├── PCA8574.py ├── PCA8574_tests.py ├── button_rgb.py ├── main.py └── test_harness.py ├── Chapter05 ├── scripts │ ├── LED_RGB.py │ ├── PCA8574.py │ ├── button_rgb.py │ └── main.py └── uPKernel │ ├── board_init.c │ ├── firmware.dfu │ ├── firmware.hex │ ├── firmware.map │ └── mpconfigboard.h ├── Chapter06 ├── Host │ └── RTPlotter.py └── MicroPython │ └── main.py ├── Chapter07 ├── APDS_9960.py └── main.py ├── Chapter08 └── esp32 │ ├── .idea │ ├── .gitignore │ ├── esp32.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── libraries │ │ └── MicroPython.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml │ ├── main.py │ └── venv │ ├── Lib │ └── site-packages │ │ ├── easy-install.pth │ │ ├── pip-19.0.3-py3.7.egg │ │ ├── EGG-INFO │ │ │ ├── PKG-INFO │ │ │ ├── SOURCES.txt │ │ │ ├── dependency_links.txt │ │ │ ├── entry_points.txt │ │ │ ├── not-zip-safe │ │ │ └── top_level.txt │ │ └── pip │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ │ ├── candidate.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ └── link.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── resolve.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ └── subversion.py │ │ │ └── wheel.py │ │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ └── 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 │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── 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 │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── _base.py │ │ │ │ ├── datrie.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ │ ├── ipaddress.py │ │ │ ├── lockfile │ │ │ ├── __init__.py │ │ │ ├── linklockfile.py │ │ │ ├── mkdirlockfile.py │ │ │ ├── pidlockfile.py │ │ │ ├── sqlitelockfile.py │ │ │ └── symlinklockfile.py │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── _in_process.py │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── envbuild.py │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ ├── helpers.py │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── pytoml │ │ │ ├── __init__.py │ │ │ ├── core.py │ │ │ ├── parser.py │ │ │ ├── test.py │ │ │ ├── utils.py │ │ │ └── writer.py │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __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 │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bindings.py │ │ │ │ │ └── low_level.py │ │ │ │ ├── appengine.py │ │ │ │ ├── ntlmpool.py │ │ │ │ ├── pyopenssl.py │ │ │ │ ├── securetransport.py │ │ │ │ └── socks.py │ │ │ ├── exceptions.py │ │ │ ├── fields.py │ │ │ ├── filepost.py │ │ │ ├── packages │ │ │ │ ├── __init__.py │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── connection.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ │ ├── setuptools-40.8.0-py3.7.egg │ │ └── setuptools.pth │ ├── Scripts │ ├── Activate.ps1 │ ├── activate │ ├── activate.bat │ ├── deactivate.bat │ ├── easy_install-3.7-script.py │ ├── easy_install-3.7.exe │ ├── easy_install-3.7.exe.manifest │ ├── easy_install-script.py │ ├── easy_install.exe │ ├── easy_install.exe.manifest │ ├── pip-script.py │ ├── pip.exe │ ├── pip.exe.manifest │ ├── pip3-script.py │ ├── pip3.7-script.py │ ├── pip3.7.exe │ ├── pip3.7.exe.manifest │ ├── pip3.exe │ ├── pip3.exe.manifest │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── Chapter09 └── ReadMe.txt ├── LICENSE └── README.md /Chapter02/pyboard_1_1/RoundRobin/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/.idea/RoundRobin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/.idea/RoundRobin.iml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/.idea/libraries/MicroPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/.idea/libraries/MicroPython.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/Click-7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/Click-7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ampy 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/ampy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/ampy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/ampy/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/ampy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/ampy/files.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/docopt.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/dotenv/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/dotenv/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/dotenv/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.10.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pyserial-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/pyserial-3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/serial/aio.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/serial/aio.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/serial/aio.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/activate -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/ampy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/ampy.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/dotenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/dotenv.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/miniterm.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/miniterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/miniterm.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pip3.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/RoundRobin/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/RoundRobin/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/.idea/Threads.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/.idea/Threads.iml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/activate -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/easy_install.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pip.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pip3.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/Threads/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/Threads/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/.idea/TimerTasks.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/.idea/TimerTasks.iml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/.idea/libraries/MicroPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/.idea/libraries/MicroPython.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/Click-7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/Click-7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ampy 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/ampy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/ampy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/ampy/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/ampy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/ampy/files.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/docopt.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/dotenv/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/dotenv/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/dotenv/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.10.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/pyserial-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/pyserial-3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/serial/aio.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Lib/site-packages/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Scripts/ampy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Scripts/ampy.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Scripts/dotenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Scripts/dotenv.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/TimerTasks/venv/Scripts/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/TimerTasks/venv/Scripts/miniterm.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/.idea/asyncio.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/.idea/asyncio.iml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/.idea/libraries/MicroPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/.idea/libraries/MicroPython.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/Click-7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/Click-7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ampy 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/ampy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/ampy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/ampy/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/ampy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/ampy/files.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/ampy/pyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/ampy/pyboard.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/__init__.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/_compat.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/globals.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/parser.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/termui.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/testing.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/docopt.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/compat.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/ipython.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/parser.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.10.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pyserial-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/pyserial-3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/aio.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/aio.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/aio.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/rfc2217.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/rs485.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/rs485.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/rs485.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/rs485.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/win32.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/win32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/serial/win32.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/activate -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/ampy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/ampy.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/dotenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/dotenv.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/easy_install.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/miniterm.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/miniterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/miniterm.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pip3.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_1_1/asyncio/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_1_1/asyncio/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/.idea/RoundRobin.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/.idea/RoundRobin.iml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/.idea/libraries/MicroPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/.idea/libraries/MicroPython.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/Click-7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/Click-7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ampy 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/ampy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/ampy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/ampy/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/ampy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/ampy/files.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/ampy/pyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/ampy/pyboard.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/_compat.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/globals.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/parser.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/termui.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/testing.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/docopt.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/compat.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/parser.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.10.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pyserial-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/pyserial-3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/serial/aio.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/serial/aio.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/serial/aio.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/serial/rs485.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/serial/rs485.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/activate -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/ampy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/ampy.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/dotenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/dotenv.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/miniterm.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/miniterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/miniterm.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pip3.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/RoundRobin/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/RoundRobin/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/.idea/Threads.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/.idea/Threads.iml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/.idea/libraries/MicroPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/.idea/libraries/MicroPython.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/Click-7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/Click-7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ampy 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/ampy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/ampy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/ampy/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/ampy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/ampy/files.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/ampy/pyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/ampy/pyboard.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/__init__.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/_compat.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/globals.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/parser.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/termui.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/testing.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/docopt.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/compat.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/ipython.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/parser.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.10.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pyserial-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/pyserial-3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/aio.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/aio.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/aio.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/rfc2217.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/rs485.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/rs485.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/rs485.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/rs485.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/win32.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/win32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Lib/site-packages/serial/win32.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/activate -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/ampy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/ampy.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/dotenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/dotenv.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/easy_install.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/easy_install.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/miniterm.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/miniterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/miniterm.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pip.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pip3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pip3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pip3.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pip3.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/Threads/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/Threads/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # Default ignored files 3 | /workspace.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/.idea/TimerTasks.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/.idea/TimerTasks.iml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/.idea/libraries/MicroPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/.idea/libraries/MicroPython.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/Click-7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/Click-7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ampy 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/ampy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/ampy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/ampy/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/ampy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/ampy/files.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/docopt.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/dotenv/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/dotenv/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/dotenv/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.10.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pyserial-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/pyserial-3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/serial/aio.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/serial/aio.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/serial/aio.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/activate -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/ampy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/ampy.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/dotenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/dotenv.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/miniterm.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/miniterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/miniterm.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pip3.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/TimerTasks/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/TimerTasks/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/.idea/asyncio.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/.idea/asyncio.iml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/.idea/libraries/MicroPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/.idea/libraries/MicroPython.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/.idea/libraries/MicroPython2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/.idea/libraries/MicroPython2.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/.idea/libraries/MicroPython3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/.idea/libraries/MicroPython3.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/Click-7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/Click-7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ampy 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/ampy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/ampy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/ampy/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/ampy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/ampy/files.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/ampy/pyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/ampy/pyboard.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/__init__.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/_compat.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/globals.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/parser.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/termui.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/testing.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/docopt.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/cli.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/compat.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/ipython.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/main.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/parser.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.10.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pyserial-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/pyserial-3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/aio.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/aio.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/aio.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/rfc2217.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/rs485.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/rs485.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/rs485.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/rs485.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/win32.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/win32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/serial/win32.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/activate -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/ampy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/ampy.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/dotenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/dotenv.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/easy_install.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/miniterm.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/miniterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/miniterm.pyc -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pip.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pip3.exe.manifest -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter02/pyboard_d/asyncio/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter02/pyboard_d/asyncio/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/.idea/libraries/MicroPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/.idea/libraries/MicroPython.xml -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/.idea/pyboard_1_1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/.idea/pyboard_1_1.iml -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/LED_RGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/LED_RGB.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/PCA8574.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/PCA8574.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/button_rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/button_rgb.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/main.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/Click-7.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/Click-7.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/adafruit_ampy-1.0.7.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | ampy 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/ampy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/ampy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/ampy/cli.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/ampy/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/ampy/files.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/ampy/pyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/ampy/pyboard.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/__init__.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_bashcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_bashcomplete.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_compat.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_termui_impl.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_textwrap.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_unicodefun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_unicodefun.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/_winconsole.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/decorators.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/exceptions.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/formatting.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/globals.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/parser.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/termui.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/testing.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/docopt-0.6.2-py3.7.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | docopt 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/docopt.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/__init__.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/cli.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/compat.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/ipython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/ipython.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/main.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/parser.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/dotenv/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.10.3" 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pyserial-3.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/pyserial-3.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | serial 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/python_dotenv-0.10.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | dotenv 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/__init__.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/__init__.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/aio.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/aio.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/aio.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/rfc2217.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/rfc2217.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/rfc2217.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/rfc2217.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/rs485.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/rs485.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/rs485.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/rs485.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialcli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialcli.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialcli.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialcli.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialjava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialjava.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialjava.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialjava.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialposix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialposix.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialposix.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialposix.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialutil.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialutil.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialutil.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialwin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialwin32.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialwin32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/serialwin32.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/urlhandler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/win32.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/win32.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Lib/site-packages/serial/win32.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/activate -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/ampy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/ampy.exe -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/dotenv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/dotenv.exe -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/easy_install-3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/easy_install-3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/easy_install.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/easy_install.exe.manifest -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/miniterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/miniterm.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/miniterm.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/miniterm.pyc -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pip.exe.manifest -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pip3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pip3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pip3.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pip3.exe.manifest -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter03/pyboard_1_1/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter03/pyboard_1_1/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter04/LED_RGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter04/LED_RGB.py -------------------------------------------------------------------------------- /Chapter04/PCA8574.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter04/PCA8574.py -------------------------------------------------------------------------------- /Chapter04/PCA8574_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter04/PCA8574_tests.py -------------------------------------------------------------------------------- /Chapter04/button_rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter04/button_rgb.py -------------------------------------------------------------------------------- /Chapter04/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter04/main.py -------------------------------------------------------------------------------- /Chapter04/test_harness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter04/test_harness.py -------------------------------------------------------------------------------- /Chapter05/scripts/LED_RGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter05/scripts/LED_RGB.py -------------------------------------------------------------------------------- /Chapter05/scripts/PCA8574.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter05/scripts/PCA8574.py -------------------------------------------------------------------------------- /Chapter05/scripts/button_rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter05/scripts/button_rgb.py -------------------------------------------------------------------------------- /Chapter05/scripts/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter05/scripts/main.py -------------------------------------------------------------------------------- /Chapter05/uPKernel/board_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter05/uPKernel/board_init.c -------------------------------------------------------------------------------- /Chapter05/uPKernel/firmware.dfu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter05/uPKernel/firmware.dfu -------------------------------------------------------------------------------- /Chapter05/uPKernel/firmware.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter05/uPKernel/firmware.hex -------------------------------------------------------------------------------- /Chapter05/uPKernel/firmware.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter05/uPKernel/firmware.map -------------------------------------------------------------------------------- /Chapter05/uPKernel/mpconfigboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter05/uPKernel/mpconfigboard.h -------------------------------------------------------------------------------- /Chapter06/Host/RTPlotter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter06/Host/RTPlotter.py -------------------------------------------------------------------------------- /Chapter06/MicroPython/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter06/MicroPython/main.py -------------------------------------------------------------------------------- /Chapter07/APDS_9960.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter07/APDS_9960.py -------------------------------------------------------------------------------- /Chapter07/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter07/main.py -------------------------------------------------------------------------------- /Chapter08/esp32/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /Chapter08/esp32/.idea/esp32.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/.idea/esp32.iml -------------------------------------------------------------------------------- /Chapter08/esp32/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Chapter08/esp32/.idea/libraries/MicroPython.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/.idea/libraries/MicroPython.xml -------------------------------------------------------------------------------- /Chapter08/esp32/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/.idea/misc.xml -------------------------------------------------------------------------------- /Chapter08/esp32/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/.idea/modules.xml -------------------------------------------------------------------------------- /Chapter08/esp32/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/.idea/vcs.xml -------------------------------------------------------------------------------- /Chapter08/esp32/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/main.py -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/activate -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/easy_install-3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/easy_install-3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/easy_install.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/easy_install.exe.manifest -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pip.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pip.exe.manifest -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pip3.7.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pip3.7.exe.manifest -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pip3.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pip3.exe.manifest -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Chapter08/esp32/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Chapter08/esp32/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter08/esp32/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Chapter09/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/Chapter09/ReadMe.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/MicroPython-Projects/HEAD/README.md --------------------------------------------------------------------------------