├── .DS_Store ├── .idea ├── .gitignore ├── Python-Projects.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── AI_Attendence_Program ├── Attendence.csv ├── Images │ └── elonmusk.jpg ├── Main.py └── readme.md ├── AirCanvas ├── .idea │ ├── .gitignore │ ├── AirCanvas.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── main.py └── readme.md ├── Banking App ├── Readme.md └── banking.py ├── Car Racing Game ├── background_music.wav ├── car_nfs.png ├── main.py └── road_nfs.jpg ├── Conway's Game of Life ├── game_of_life.py └── readme.md ├── Dice-Simulator ├── .idea │ ├── Dice-Simulator.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── dice.py ├── readme.md └── 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-script.py │ ├── easy_install.exe │ ├── pip-script.py │ ├── pip.exe │ ├── pip3-script.py │ ├── pip3.7-script.py │ ├── pip3.7.exe │ ├── pip3.exe │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── Dictionary-App ├── .idea │ ├── Dictionary-App.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── dictionary.py ├── readme.md └── venv │ ├── Lib │ └── site-packages │ │ ├── PyDictionary-2.0.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── PyDictionary │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── core.cpython-37.pyc │ │ │ ├── script.cpython-37.pyc │ │ │ ├── test_pydictionary.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── core.py │ │ ├── script.py │ │ ├── test_pydictionary.py │ │ └── utils.py │ │ ├── __pycache__ │ │ └── goslate.cpython-37.pyc │ │ ├── beautifulsoup4-4.9.1.dist-info │ │ ├── AUTHORS │ │ ├── COPYING.txt │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── bs4-0.0.1.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── bs4 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── dammit.cpython-37.pyc │ │ │ ├── diagnose.cpython-37.pyc │ │ │ ├── element.cpython-37.pyc │ │ │ ├── formatter.cpython-37.pyc │ │ │ └── testing.cpython-37.pyc │ │ ├── builder │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── _html5lib.cpython-37.pyc │ │ │ │ ├── _htmlparser.cpython-37.pyc │ │ │ │ └── _lxml.cpython-37.pyc │ │ │ ├── _html5lib.py │ │ │ ├── _htmlparser.py │ │ │ └── _lxml.py │ │ ├── dammit.py │ │ ├── diagnose.py │ │ ├── element.py │ │ ├── formatter.py │ │ ├── testing.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── test_builder_registry.cpython-37.pyc │ │ │ ├── test_docs.cpython-37.pyc │ │ │ ├── test_html5lib.cpython-37.pyc │ │ │ ├── test_htmlparser.cpython-37.pyc │ │ │ ├── test_lxml.cpython-37.pyc │ │ │ ├── test_soup.cpython-37.pyc │ │ │ └── test_tree.cpython-37.pyc │ │ │ ├── test_builder_registry.py │ │ │ ├── test_docs.py │ │ │ ├── test_html5lib.py │ │ │ ├── test_htmlparser.py │ │ │ ├── test_lxml.py │ │ │ ├── test_soup.py │ │ │ └── test_tree.py │ │ ├── certifi-2020.6.20.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __main__.cpython-37.pyc │ │ │ └── core.cpython-37.pyc │ │ ├── cacert.pem │ │ └── core.py │ │ ├── chardet-3.0.4.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── chardet │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── big5freq.cpython-37.pyc │ │ │ ├── big5prober.cpython-37.pyc │ │ │ ├── chardistribution.cpython-37.pyc │ │ │ ├── charsetgroupprober.cpython-37.pyc │ │ │ ├── charsetprober.cpython-37.pyc │ │ │ ├── codingstatemachine.cpython-37.pyc │ │ │ ├── compat.cpython-37.pyc │ │ │ ├── cp949prober.cpython-37.pyc │ │ │ ├── enums.cpython-37.pyc │ │ │ ├── escprober.cpython-37.pyc │ │ │ ├── escsm.cpython-37.pyc │ │ │ ├── eucjpprober.cpython-37.pyc │ │ │ ├── euckrfreq.cpython-37.pyc │ │ │ ├── euckrprober.cpython-37.pyc │ │ │ ├── euctwfreq.cpython-37.pyc │ │ │ ├── euctwprober.cpython-37.pyc │ │ │ ├── gb2312freq.cpython-37.pyc │ │ │ ├── gb2312prober.cpython-37.pyc │ │ │ ├── hebrewprober.cpython-37.pyc │ │ │ ├── jisfreq.cpython-37.pyc │ │ │ ├── jpcntx.cpython-37.pyc │ │ │ ├── langbulgarianmodel.cpython-37.pyc │ │ │ ├── langcyrillicmodel.cpython-37.pyc │ │ │ ├── langgreekmodel.cpython-37.pyc │ │ │ ├── langhebrewmodel.cpython-37.pyc │ │ │ ├── langhungarianmodel.cpython-37.pyc │ │ │ ├── langthaimodel.cpython-37.pyc │ │ │ ├── langturkishmodel.cpython-37.pyc │ │ │ ├── latin1prober.cpython-37.pyc │ │ │ ├── mbcharsetprober.cpython-37.pyc │ │ │ ├── mbcsgroupprober.cpython-37.pyc │ │ │ ├── mbcssm.cpython-37.pyc │ │ │ ├── sbcharsetprober.cpython-37.pyc │ │ │ ├── sbcsgroupprober.cpython-37.pyc │ │ │ ├── sjisprober.cpython-37.pyc │ │ │ ├── universaldetector.cpython-37.pyc │ │ │ ├── utf8prober.cpython-37.pyc │ │ │ └── version.cpython-37.pyc │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── chardetect.cpython-37.pyc │ │ │ └── chardetect.py │ │ ├── codingstatemachine.py │ │ ├── compat.py │ │ ├── cp949prober.py │ │ ├── enums.py │ │ ├── escprober.py │ │ ├── escsm.py │ │ ├── eucjpprober.py │ │ ├── euckrfreq.py │ │ ├── euckrprober.py │ │ ├── euctwfreq.py │ │ ├── euctwprober.py │ │ ├── gb2312freq.py │ │ ├── gb2312prober.py │ │ ├── hebrewprober.py │ │ ├── jisfreq.py │ │ ├── jpcntx.py │ │ ├── langbulgarianmodel.py │ │ ├── langcyrillicmodel.py │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langthaimodel.py │ │ ├── langturkishmodel.py │ │ ├── latin1prober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ ├── utf8prober.py │ │ └── version.py │ │ ├── click-7.1.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── 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 │ │ ├── easy-install.pth │ │ ├── futures-3.1.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── goslate-1.5.1.dist-info │ │ ├── INSTALLER │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── goslate.py │ │ ├── idna-2.10.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.rst │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── idna │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── codec.cpython-37.pyc │ │ │ ├── compat.cpython-37.pyc │ │ │ ├── core.cpython-37.pyc │ │ │ ├── idnadata.cpython-37.pyc │ │ │ ├── intranges.cpython-37.pyc │ │ │ ├── package_data.cpython-37.pyc │ │ │ └── uts46data.cpython-37.pyc │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ │ ├── 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 │ │ ├── requests-2.24.0.dist-info │ │ ├── DESCRIPTION.rst │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── metadata.json │ │ └── top_level.txt │ │ ├── requests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __version__.cpython-37.pyc │ │ │ ├── _internal_utils.cpython-37.pyc │ │ │ ├── adapters.cpython-37.pyc │ │ │ ├── api.cpython-37.pyc │ │ │ ├── auth.cpython-37.pyc │ │ │ ├── certs.cpython-37.pyc │ │ │ ├── compat.cpython-37.pyc │ │ │ ├── cookies.cpython-37.pyc │ │ │ ├── exceptions.cpython-37.pyc │ │ │ ├── help.cpython-37.pyc │ │ │ ├── hooks.cpython-37.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── packages.cpython-37.pyc │ │ │ ├── sessions.cpython-37.pyc │ │ │ ├── status_codes.cpython-37.pyc │ │ │ ├── structures.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ │ ├── setuptools-40.8.0-py3.7.egg │ │ ├── setuptools.pth │ │ ├── soupsieve-2.0.1.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.md │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ ├── soupsieve │ │ ├── __init__.py │ │ ├── __meta__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __meta__.cpython-37.pyc │ │ │ ├── css_match.cpython-37.pyc │ │ │ ├── css_parser.cpython-37.pyc │ │ │ ├── css_types.cpython-37.pyc │ │ │ └── util.cpython-37.pyc │ │ ├── css_match.py │ │ ├── css_parser.py │ │ ├── css_types.py │ │ └── util.py │ │ ├── urllib3-1.25.10.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ │ └── urllib3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── _collections.cpython-37.pyc │ │ ├── _version.cpython-37.pyc │ │ ├── connection.cpython-37.pyc │ │ ├── connectionpool.cpython-37.pyc │ │ ├── exceptions.cpython-37.pyc │ │ ├── fields.cpython-37.pyc │ │ ├── filepost.cpython-37.pyc │ │ ├── poolmanager.cpython-37.pyc │ │ ├── request.cpython-37.pyc │ │ └── response.cpython-37.pyc │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── _appengine_environ.cpython-37.pyc │ │ │ ├── appengine.cpython-37.pyc │ │ │ ├── ntlmpool.cpython-37.pyc │ │ │ ├── pyopenssl.cpython-37.pyc │ │ │ ├── securetransport.cpython-37.pyc │ │ │ └── socks.cpython-37.pyc │ │ ├── _appengine_environ.py │ │ ├── _securetransport │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── bindings.cpython-37.pyc │ │ │ │ └── low_level.cpython-37.pyc │ │ │ ├── bindings.py │ │ │ └── low_level.py │ │ ├── appengine.py │ │ ├── ntlmpool.py │ │ ├── pyopenssl.py │ │ ├── securetransport.py │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── six.cpython-37.pyc │ │ ├── backports │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ └── makefile.cpython-37.pyc │ │ │ └── makefile.py │ │ ├── six.py │ │ └── ssl_match_hostname │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── _implementation.cpython-37.pyc │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── connection.cpython-37.pyc │ │ ├── queue.cpython-37.pyc │ │ ├── request.cpython-37.pyc │ │ ├── response.cpython-37.pyc │ │ ├── retry.cpython-37.pyc │ │ ├── ssl_.cpython-37.pyc │ │ ├── timeout.cpython-37.pyc │ │ ├── url.cpython-37.pyc │ │ └── wait.cpython-37.pyc │ │ ├── connection.py │ │ ├── queue.py │ │ ├── request.py │ │ ├── response.py │ │ ├── retry.py │ │ ├── ssl_.py │ │ ├── timeout.py │ │ ├── url.py │ │ └── wait.py │ ├── Scripts │ ├── Activate.ps1 │ ├── activate │ ├── activate.bat │ ├── chardetect.exe │ ├── deactivate.bat │ ├── easy_install-3.7-script.py │ ├── easy_install-3.7.exe │ ├── easy_install-script.py │ ├── easy_install.exe │ ├── pip-script.py │ ├── pip.exe │ ├── pip3-script.py │ ├── pip3.7-script.py │ ├── pip3.7.exe │ ├── pip3.exe │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── FaceRecgonition ├── .idea │ ├── .gitignore │ ├── .name │ ├── FaceRecgonition.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── main.py └── readme.md ├── Hangman Game ├── .idea │ ├── Hangman Game.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── added.txt ├── hangman.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-script.py │ ├── easy_install.exe │ ├── pip-script.py │ ├── pip.exe │ ├── pip3-script.py │ ├── pip3.7-script.py │ ├── pip3.7.exe │ ├── pip3.exe │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── Language Detector ├── Readme.md ├── main.py └── requirements.txt ├── Local-Chat ├── README.md ├── main.py ├── requirements.txt └── src │ ├── Client.gif │ ├── GUI.png │ └── Server.gif ├── Networking-Tools ├── README.md ├── requirements.txt ├── tools.py └── tools_main.py ├── Number Guessing Game ├── main.py └── readme.md ├── Pictures Organizer ├── images │ ├── attractive-g3e98a5913_640.jpg │ ├── beard-g42aa0992e_640.jpg │ ├── family-g9f80a310a_640.jpg │ └── people-g159624022_640.jpg ├── main.py └── readme.md ├── QR Code ├── main.py ├── readem.md └── requirements.txt ├── README.md ├── Riddle ├── readme.md └── riddle.py ├── Rock Paper Scissors Game ├── main.py └── readem.md ├── SNAKE ├── readme.md └── snake_game.py ├── SchduledMessageWhatsApp ├── README.md └── main.py ├── Screen_Recording_App ├── main.py └── readme.md ├── Student Management System ├── Student Management System.py ├── datab.db └── datab.py ├── Sudoku-Solver ├── LICENSE ├── README.md ├── SudokuGUI.py ├── __pycache__ │ └── sudokutools.cpython-310.pyc ├── assets │ ├── Entering Values.gif │ ├── Visualizer.gif │ └── thumbnail.png ├── requirements.txt └── sudokutools.py ├── Text-to-Speech ├── Demo.png ├── Text-to-speech.py └── requirements.txt ├── Tic-Tac-Toe ├── .idea │ ├── Tic-Tac-Toe.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml ├── TicTacToe.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-script.py │ ├── easy_install.exe │ ├── pip-script.py │ ├── pip.exe │ ├── pip3-script.py │ ├── pip3.7-script.py │ ├── pip3.7.exe │ ├── pip3.exe │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── Tkinter Clock ├── README.md └── main.py.py ├── Towers of Hanoi ├── Rules.md └── Towers of Hanoi.py ├── Turtle Crossing Capstone Game ├── __pycache__ │ ├── car_manager.cpython-310.pyc │ ├── car_manager.cpython-38.pyc │ ├── player.cpython-310.pyc │ ├── player.cpython-38.pyc │ ├── scoreboard.cpython-310.pyc │ └── scoreboard.cpython-38.pyc ├── car_manager.py ├── main.py ├── player.py └── scoreboard.py ├── Web_Automation ├── Facebook_Bot.py ├── Linkedin_Bot.py └── Twitter_Bot.py ├── Youtube Searching Script └── youtubeSearch.py └── pokemone_battle.py ├── README └── main.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Python-Projects.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AI_Attendence_Program/Attendence.csv: -------------------------------------------------------------------------------- 1 | #All Attendence are marked here 2 | 3 | ELON MUSK,20:12:05,08/12/2021 4 | -------------------------------------------------------------------------------- /AI_Attendence_Program/Images/elonmusk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/AI_Attendence_Program/Images/elonmusk.jpg -------------------------------------------------------------------------------- /AirCanvas/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /AirCanvas/.idea/AirCanvas.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /AirCanvas/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 14 | -------------------------------------------------------------------------------- /AirCanvas/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /AirCanvas/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /AirCanvas/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Banking App/Readme.md: -------------------------------------------------------------------------------- 1 | ## A Banking App 2 | 3 | 4 | A simple python program that uses luhn algorithm to verify card number, enables transfer and withdrawal of money It makes use of sqlite3 for database storage and therefore permits manipulation of our details and keeps them safe. -------------------------------------------------------------------------------- /Car Racing Game/background_music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Car Racing Game/background_music.wav -------------------------------------------------------------------------------- /Car Racing Game/car_nfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Car Racing Game/car_nfs.png -------------------------------------------------------------------------------- /Car Racing Game/road_nfs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Car Racing Game/road_nfs.jpg -------------------------------------------------------------------------------- /Dice-Simulator/.idea/Dice-Simulator.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /Dice-Simulator/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Dice-Simulator/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Dice-Simulator/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Dice-Simulator/readme.md: -------------------------------------------------------------------------------- 1 | ## Dice Simulator 2 | 3 | This is a basic dice simluator implementation game. -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | ./pip-19.0.3-py3.7.egg 3 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | import os 4 | import sys 5 | 6 | # If we are running from a wheel, add the wheel to sys.path 7 | # This allows the usage python pip-*.whl/pip install pip-*.whl 8 | if __package__ == '': 9 | # __file__ is pip-*.whl/pip/__main__.py 10 | # first dirname call strips of '/__main__.py', second strips off '/pip' 11 | # Resulting path is the name of the wheel itself 12 | # Add that to sys.path so we can import pip 13 | path = os.path.dirname(os.path.dirname(__file__)) 14 | sys.path.insert(0, path) 15 | 16 | from pip._internal import main as _main # isort:skip # noqa 17 | 18 | if __name__ == '__main__': 19 | sys.exit(_main()) 20 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "f=getattr(tokenize, 'open', open)(__file__);" 5 | "code=f.read().replace('\\r\\n', '\\n');" 6 | "f.close();" 7 | "exec(compile(code, __file__, 'exec'))" 8 | ) 9 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.5" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /Dice-Simulator/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 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certifi.py 6 | ~~~~~~~~~~ 7 | 8 | This module returns the installation location of cacert.pem. 9 | """ 10 | import os 11 | 12 | 13 | def where(): 14 | f = os.path.dirname(__file__) 15 | 16 | return os.path.join(f, 'cacert.pem') 17 | 18 | 19 | if __name__ == '__main__': 20 | print(where()) 21 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.1' 7 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2017 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.8' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | -------------------------------------------------------------------------------- /Dice-Simulator/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 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- 1 | class TomlError(RuntimeError): 2 | def __init__(self, message, line, col, filename): 3 | RuntimeError.__init__(self, message, line, col, filename) 4 | self.message = message 5 | self.line = line 6 | self.col = col 7 | self.filename = filename 8 | 9 | def __str__(self): 10 | return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) 11 | 12 | def __repr__(self): 13 | return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename) 14 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.21.0' 9 | __build__ = 0x022100 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2018 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if defined _OLD_VIRTUAL_PROMPT ( 4 | set "PROMPT=%_OLD_VIRTUAL_PROMPT%" 5 | ) 6 | set _OLD_VIRTUAL_PROMPT= 7 | 8 | if defined _OLD_VIRTUAL_PYTHONHOME ( 9 | set "PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%" 10 | set _OLD_VIRTUAL_PYTHONHOME= 11 | ) 12 | 13 | if defined _OLD_VIRTUAL_PATH ( 14 | set "PATH=%_OLD_VIRTUAL_PATH%" 15 | ) 16 | 17 | set _OLD_VIRTUAL_PATH= 18 | 19 | set VIRTUAL_ENV= 20 | 21 | :END 22 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dice-Simulator\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install-3.7' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install-3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dice-Simulator\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dice-Simulator\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dice-Simulator\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dice-Simulator\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3.7' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dice-Simulator/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\Shahryar\AppData\Local\Programs\Python\Python37 2 | include-system-site-packages = false 3 | version = 3.7.4 4 | -------------------------------------------------------------------------------- /Dictionary-App/.idea/Dictionary-App.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /Dictionary-App/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Dictionary-App/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Dictionary-App/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Dictionary-App/readme.md: -------------------------------------------------------------------------------- 1 | ## Dictionary APP 2 | 3 | This is a basic implementation of the dictionary app. 4 | 5 | Note: 6 | 7 | Following freatures are to be added here: 8 | 9 | 1- is to make this program in such a way that if word not exist then do something 10 | 2- also if user enter wrong word by mistake (for example if user want to enter ""happy"" but type "Haappyy") then do something 11 | 3- task number 2 is with get_close_matches() for difflib library 12 | 4- then make GUI application of this -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary-2.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary-2.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary-2.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PyDictionary 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = "Pradipta Bora" 2 | __version__ = "1.5.1" 3 | 4 | try: 5 | from .core import * 6 | except: 7 | from core import * 8 | 9 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/script.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/script.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/test_pydictionary.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/test_pydictionary.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/script.py: -------------------------------------------------------------------------------- 1 | import click 2 | try: 3 | from .core import * 4 | except: 5 | from core import * 6 | 7 | @click.command() 8 | @click.option('--mode','-m',default="meaning",help="Mode of Script [meaning, antonym, synonym]") 9 | @click.option('--words', '-w',prompt="Enter words in a string separated by commas") 10 | def script(words,mode): 11 | print("PyDictionary:") 12 | word_values = [w.strip() for w in words.split(',')] 13 | d = PyDictionary(word_values) 14 | maps = {"meaning":d.printMeanings,"antonym":d.printAntonyms,"synonym":d.printSynonyms} 15 | click.echo(maps[mode]()) 16 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/test_pydictionary.py: -------------------------------------------------------------------------------- 1 | import unittest 2 | try: 3 | from .__init__ import PyDictionary #Python 3 4 | except: 5 | from __init__ import PyDictionary 6 | 7 | dictionary=PyDictionary() 8 | 9 | class PyDictionaryTest(unittest.TestCase): 10 | def testMeaning(self): 11 | self.assertIsInstance(dictionary.meaning('python'),dict) 12 | def testSynonym(self): 13 | self.assertIsInstance(dictionary.synonym('happy'),list) 14 | def testAntonym(self): 15 | self.assertIsInstance(dictionary.antonym('happy'),list) 16 | 17 | if __name__=='__main__': 18 | unittest.main() -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/utils.py: -------------------------------------------------------------------------------- 1 | import requests 2 | from bs4 import BeautifulSoup 3 | 4 | def _get_soup_object(url, parser="html.parser"): 5 | return BeautifulSoup(requests.get(url).text, parser) 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/__pycache__/goslate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/__pycache__/goslate.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/AUTHORS -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | bs4 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4-0.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4-0.0.1.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | bs4-0.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | bs4-0.0.1.dist-info/METADATA,sha256=_yej2mPv47MJyUzJ6hJAzri7DlRWJNIvv3hp_kkBbGo,939 3 | bs4-0.0.1.dist-info/RECORD,, 4 | bs4-0.0.1.dist-info/WHEEL,sha256=6lWjmfsNs_bGGL5Yl5gRRr5x9whxDoYnVMS85C0Tfgs,98 5 | bs4-0.0.1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4-0.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.4) 3 | Root-Is-Purelib: true 4 | Tag: cp37-none-any 5 | 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4-0.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/dammit.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/dammit.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/diagnose.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/diagnose.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/element.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/element.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/formatter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/formatter.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/testing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/testing.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/_html5lib.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/_html5lib.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/_htmlparser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/_htmlparser.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/_lxml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/_lxml.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__init__.py: -------------------------------------------------------------------------------- 1 | "The beautifulsoup tests." 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_builder_registry.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_builder_registry.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_docs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_docs.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_html5lib.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_html5lib.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_htmlparser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_htmlparser.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_lxml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_lxml.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_soup.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_soup.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_tree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_tree.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | certifi 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __version__ = "2020.06.20" 4 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | 3 | from certifi import contents, where 4 | 5 | parser = argparse.ArgumentParser() 6 | parser.add_argument("-c", "--contents", action="store_true") 7 | args = parser.parse_args() 8 | 9 | if args.contents: 10 | print(contents()) 11 | else: 12 | print(where()) 13 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/certifi/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/certifi/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/certifi/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.29.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | chardetect = chardet.cli.chardetect:main 3 | 4 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | chardet 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/big5freq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/big5freq.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/big5prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/big5prober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/chardistribution.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/chardistribution.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/charsetgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/charsetgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/charsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/charsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/codingstatemachine.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/codingstatemachine.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/cp949prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/cp949prober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/enums.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/enums.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/escprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/escprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/escsm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/escsm.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/eucjpprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/eucjpprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/euckrfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/euckrfreq.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/euckrprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/euckrprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/euctwfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/euctwfreq.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/euctwprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/euctwprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/gb2312freq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/gb2312freq.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/gb2312prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/gb2312prober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/hebrewprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/hebrewprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/jisfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/jisfreq.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/jpcntx.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/jpcntx.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langgreekmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langgreekmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langhebrewmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langhebrewmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langhungarianmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langhungarianmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langthaimodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langthaimodel.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langturkishmodel.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/langturkishmodel.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/latin1prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/latin1prober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/mbcharsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/mbcharsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/mbcssm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/mbcssm.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/sbcharsetprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/sbcharsetprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/sjisprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/sjisprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/universaldetector.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/universaldetector.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/utf8prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/utf8prober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/cli/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/cli/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/cli/__pycache__/chardetect.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/chardet/cli/__pycache__/chardetect.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | click 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/_bashcomplete.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/_bashcomplete.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/_compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/_compat.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/_termui_impl.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/_termui_impl.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/_textwrap.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/_textwrap.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/_unicodefun.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/_unicodefun.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/_winconsole.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/_winconsole.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/decorators.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/decorators.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/formatting.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/formatting.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/globals.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/globals.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/parser.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/termui.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/termui.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/testing.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/testing.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/types.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/types.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/click/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | ./pip-19.0.3-py3.7.egg 3 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/futures-3.1.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/futures-3.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | futures-3.1.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 2 | futures-3.1.1.dist-info/LICENSE,sha256=ppi9XUQeShavbJkrjoDL-hJ1XXLZEIVPofsR1N6wBZo,2395 3 | futures-3.1.1.dist-info/METADATA,sha256=4x6xpqUIETthRvn7Z-puOLm5FypL8DdBOkO4f-RWE9k,674 4 | futures-3.1.1.dist-info/RECORD,, 5 | futures-3.1.1.dist-info/WHEEL,sha256=t_MpApv386-8PVts2R6wsTifdIn0vbUDTVv61IbqFC8,92 6 | futures-3.1.1.dist-info/top_level.txt,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 7 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/futures-3.1.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.3) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/futures-3.1.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/goslate-1.5.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/goslate-1.5.1.dist-info/RECORD: -------------------------------------------------------------------------------- 1 | __pycache__/goslate.cpython-37.pyc,, 2 | goslate-1.5.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 3 | goslate-1.5.1.dist-info/METADATA,sha256=BSWmhC8AwW64QRGiEP6cIJ6gmYjRjGqAHYEffuj3qho,12665 4 | goslate-1.5.1.dist-info/RECORD,, 5 | goslate-1.5.1.dist-info/WHEEL,sha256=6lWjmfsNs_bGGL5Yl5gRRr5x9whxDoYnVMS85C0Tfgs,98 6 | goslate-1.5.1.dist-info/top_level.txt,sha256=fDd9JR6pz7tq4sUv5Uwi68oNW2j03XQMf4cSdcVo2A8,8 7 | goslate.py,sha256=L-QK8Fqpy4qJ6pLTBuJGT24_YPx-fV2cUdRUQKjckE8,23415 8 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/goslate-1.5.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.4) 3 | Root-Is-Purelib: true 4 | Tag: cp37-none-any 5 | 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/goslate-1.5.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | goslate 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | idna 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/idna/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__pycache__/codec.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/idna/__pycache__/codec.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/idna/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/idna/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__pycache__/idnadata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/idna/__pycache__/idnadata.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__pycache__/intranges.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/idna/__pycache__/intranges.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__pycache__/package_data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/idna/__pycache__/package_data.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__pycache__/uts46data.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/idna/__pycache__/uts46data.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "f=getattr(tokenize, 'open', open)(__file__);" 5 | "code=f.read().replace('\\r\\n', '\\n');" 6 | "f.close();" 7 | "exec(compile(code, __file__, 'exec'))" 8 | ) 9 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.5" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /Dictionary-App/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 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certifi.py 6 | ~~~~~~~~~~ 7 | 8 | This module returns the installation location of cacert.pem. 9 | """ 10 | import os 11 | 12 | 13 | def where(): 14 | f = os.path.dirname(__file__) 15 | 16 | return os.path.join(f, 'cacert.pem') 17 | 18 | 19 | if __name__ == '__main__': 20 | print(where()) 21 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.1' 7 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2017 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.8' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | -------------------------------------------------------------------------------- /Dictionary-App/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 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- 1 | class TomlError(RuntimeError): 2 | def __init__(self, message, line, col, filename): 3 | RuntimeError.__init__(self, message, line, col, filename) 4 | self.message = message 5 | self.line = line 6 | self.col = col 7 | self.filename = filename 8 | 9 | def __str__(self): 10 | return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) 11 | 12 | def __repr__(self): 13 | return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename) 14 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.21.0' 9 | __build__ = 0x022100 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2018 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2019 Kenneth Reitz 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | https://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.24.0) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | requests 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/__version__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/__version__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/_internal_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/_internal_utils.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/adapters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/adapters.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/api.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/api.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/auth.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/auth.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/certs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/certs.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/compat.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/cookies.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/cookies.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/help.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/help.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/hooks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/hooks.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/packages.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/packages.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/sessions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/sessions.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/status_codes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/status_codes.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/structures.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'https://requests.readthedocs.io' 8 | __version__ = '2.24.0' 9 | __build__ = 0x022400 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2020 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/packages.py: -------------------------------------------------------------------------------- 1 | import sys 2 | 3 | # This code exists for backwards compatibility reasons. 4 | # I don't like it either. Just look the other way. :) 5 | 6 | for package in ('urllib3', 'idna', 'chardet'): 7 | locals()[package] = __import__(package) 8 | # This traversal is apparently necessary such that the identities are 9 | # preserved (requests.packages.urllib3.* is urllib3.*) 10 | for mod in list(sys.modules): 11 | if mod == package or mod.startswith(package + '.'): 12 | sys.modules['requests.packages.' + mod] = sys.modules[mod] 13 | 14 | # Kinda cool, though, right? 15 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve-2.0.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve-2.0.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve-2.0.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | soupsieve 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/__meta__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/__meta__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/css_match.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/css_match.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/css_parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/css_parser.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/css_types.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/css_types.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.34.2) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | urllib3 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/_collections.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/_collections.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/_version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/_version.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/connection.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/connection.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/connectionpool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/connectionpool.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/exceptions.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/fields.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/fields.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/filepost.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/filepost.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/poolmanager.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/poolmanager.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/request.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/request.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/response.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/response.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.25.10" 3 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/_appengine_environ.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/appengine.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/appengine.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/securetransport.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/socks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__pycache__/socks.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ("ssl_match_hostname",) 6 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/packages/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/__pycache__/six.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/packages/__pycache__/six.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/packages/backports/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/packages/backports/__pycache__/makefile.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/packages/ssl_match_hostname/__pycache__/_implementation.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/connection.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/connection.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/queue.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/queue.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/request.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/request.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/response.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/response.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/retry.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/retry.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/ssl_.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/ssl_.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/timeout.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/timeout.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/url.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/url.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/wait.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/wait.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/chardetect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Scripts/chardetect.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if defined _OLD_VIRTUAL_PROMPT ( 4 | set "PROMPT=%_OLD_VIRTUAL_PROMPT%" 5 | ) 6 | set _OLD_VIRTUAL_PROMPT= 7 | 8 | if defined _OLD_VIRTUAL_PYTHONHOME ( 9 | set "PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%" 10 | set _OLD_VIRTUAL_PYTHONHOME= 11 | ) 12 | 13 | if defined _OLD_VIRTUAL_PATH ( 14 | set "PATH=%_OLD_VIRTUAL_PATH%" 15 | ) 16 | 17 | set _OLD_VIRTUAL_PATH= 18 | 19 | set VIRTUAL_ENV= 20 | 21 | :END 22 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dictionary-App\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install-3.7' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install-3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dictionary-App\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dictionary-App\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dictionary-App\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Dictionary-App\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3.7' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Dictionary-App/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\Shahryar\AppData\Local\Programs\Python\Python37 2 | include-system-site-packages = false 3 | version = 3.7.4 4 | -------------------------------------------------------------------------------- /FaceRecgonition/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /FaceRecgonition/.idea/.name: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /FaceRecgonition/.idea/FaceRecgonition.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /FaceRecgonition/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /FaceRecgonition/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /FaceRecgonition/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Hangman Game/.idea/Hangman Game.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /Hangman Game/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Hangman Game/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Hangman Game/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Hangman Game/added.txt: -------------------------------------------------------------------------------- 1 | I added extra features -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | ./pip-19.0.3-py3.7.egg 3 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "f=getattr(tokenize, 'open', open)(__file__);" 5 | "code=f.read().replace('\\r\\n', '\\n');" 6 | "f.close();" 7 | "exec(compile(code, __file__, 'exec'))" 8 | ) 9 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.5" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /Hangman Game/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 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certifi.py 6 | ~~~~~~~~~~ 7 | 8 | This module returns the installation location of cacert.pem. 9 | """ 10 | import os 11 | 12 | 13 | def where(): 14 | f = os.path.dirname(__file__) 15 | 16 | return os.path.join(f, 'cacert.pem') 17 | 18 | 19 | if __name__ == '__main__': 20 | print(where()) 21 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.1' 7 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2017 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.8' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | -------------------------------------------------------------------------------- /Hangman Game/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 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- 1 | class TomlError(RuntimeError): 2 | def __init__(self, message, line, col, filename): 3 | RuntimeError.__init__(self, message, line, col, filename) 4 | self.message = message 5 | self.line = line 6 | self.col = col 7 | self.filename = filename 8 | 9 | def __str__(self): 10 | return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) 11 | 12 | def __repr__(self): 13 | return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename) 14 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.21.0' 9 | __build__ = 0x022100 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2018 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if defined _OLD_VIRTUAL_PROMPT ( 4 | set "PROMPT=%_OLD_VIRTUAL_PROMPT%" 5 | ) 6 | set _OLD_VIRTUAL_PROMPT= 7 | 8 | if defined _OLD_VIRTUAL_PYTHONHOME ( 9 | set "PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%" 10 | set _OLD_VIRTUAL_PYTHONHOME= 11 | ) 12 | 13 | if defined _OLD_VIRTUAL_PATH ( 14 | set "PATH=%_OLD_VIRTUAL_PATH%" 15 | ) 16 | 17 | set _OLD_VIRTUAL_PATH= 18 | 19 | set VIRTUAL_ENV= 20 | 21 | :END 22 | -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- 1 | #!"C:\Users\Shahryar\Desktop\Hangman Game\venv\Scripts\python.exe" 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install-3.7' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install-3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- 1 | #!"C:\Users\Shahryar\Desktop\Hangman Game\venv\Scripts\python.exe" 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')() 12 | ) 13 | -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- 1 | #!"C:\Users\Shahryar\Desktop\Hangman Game\venv\Scripts\python.exe" 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip')() 12 | ) 13 | -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- 1 | #!"C:\Users\Shahryar\Desktop\Hangman Game\venv\Scripts\python.exe" 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3')() 12 | ) 13 | -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- 1 | #!"C:\Users\Shahryar\Desktop\Hangman Game\venv\Scripts\python.exe" 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3.7' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Hangman Game/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Hangman Game/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\Shahryar\AppData\Local\Programs\Python\Python37 2 | include-system-site-packages = false 3 | version = 3.7.4 4 | -------------------------------------------------------------------------------- /Language Detector/Readme.md: -------------------------------------------------------------------------------- 1 | # Language Detector 2 | 3 | This is a simple Python project that uses the `langdetect` library to detect the language of a given text. 4 | 5 | ## Setup 6 | 7 | 1. Clone the repository. 8 | 2. Install the dependencies: 9 | 10 | ```bash 11 | pip install -r requirements.txt 12 | 3. Run the main script: 13 | 14 | ```bash 15 | python main.py 16 | -------------------------------------------------------------------------------- /Language Detector/main.py: -------------------------------------------------------------------------------- 1 | # Language Detector 2 | from langdetect import detect 3 | 4 | # Detecting languages from input text 5 | language1 = detect('¿Qué te gusta hacer') 6 | language2 = detect('Nyasae no omuya') 7 | 8 | # Mapping of language codes to human-readable names 9 | language_mapping = { 10 | 'es': 'Spanish', 11 | 'en': 'English', 12 | 'sw': 'Swahili', 13 | 'ek': 'Kisii' 14 | } 15 | 16 | # Print the detected language in a more user-friendly format 17 | print(f'This is the {language_mapping.get(language1, language1)} language shortened by: {language1}') 18 | print(f'This is the {language_mapping.get(language2, language2)} language shortened by: {language2}') 19 | -------------------------------------------------------------------------------- /Language Detector/requirements.txt: -------------------------------------------------------------------------------- 1 | langdetect==1.0.9 2 | -------------------------------------------------------------------------------- /Local-Chat/requirements.txt: -------------------------------------------------------------------------------- 1 | art 2 | tk -------------------------------------------------------------------------------- /Local-Chat/src/Client.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Local-Chat/src/Client.gif -------------------------------------------------------------------------------- /Local-Chat/src/GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Local-Chat/src/GUI.png -------------------------------------------------------------------------------- /Local-Chat/src/Server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Local-Chat/src/Server.gif -------------------------------------------------------------------------------- /Networking-Tools/README.md: -------------------------------------------------------------------------------- 1 | # Networking Tools 2 | A set of simple networking tools created in Python 3 | 4 | ## How To Use 5 | ⚠️ **Please consider using port scanner for educational purposes only. Using it to scan websites or IP addresses without permission can be seen as a crime.** 6 | 7 | Install the requirements using Git: 8 | 9 | `pip install -r requirements.txt` 10 | 11 | Run `tools_main.py` -------------------------------------------------------------------------------- /Networking-Tools/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pyfiglet -------------------------------------------------------------------------------- /Number Guessing Game/readme.md: -------------------------------------------------------------------------------- 1 | ## Number Guessing Game 2 | 3 | This is a basic Number Guessing Game implementation . -------------------------------------------------------------------------------- /Pictures Organizer/images/attractive-g3e98a5913_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Pictures Organizer/images/attractive-g3e98a5913_640.jpg -------------------------------------------------------------------------------- /Pictures Organizer/images/beard-g42aa0992e_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Pictures Organizer/images/beard-g42aa0992e_640.jpg -------------------------------------------------------------------------------- /Pictures Organizer/images/family-g9f80a310a_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Pictures Organizer/images/family-g9f80a310a_640.jpg -------------------------------------------------------------------------------- /Pictures Organizer/images/people-g159624022_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Pictures Organizer/images/people-g159624022_640.jpg -------------------------------------------------------------------------------- /QR Code/readem.md: -------------------------------------------------------------------------------- 1 | ## QR Code generator 2 | 3 | This is a basic QR generator code implementation. -------------------------------------------------------------------------------- /QR Code/requirements.txt: -------------------------------------------------------------------------------- 1 | pyqrcode -------------------------------------------------------------------------------- /Rock Paper Scissors Game/readem.md: -------------------------------------------------------------------------------- 1 | ## Rock Paper Scissor Game 2 | 3 | This is a basic Rock Paper Scissor Game implementation. -------------------------------------------------------------------------------- /SNAKE/readme.md: -------------------------------------------------------------------------------- 1 | ## Snake game 2 | 3 | This is a basic snake game implementation -------------------------------------------------------------------------------- /SchduledMessageWhatsApp/README.md: -------------------------------------------------------------------------------- 1 | run the following command in cmd before running this file! 2 | 3 | ### pip install pywhatkit 4 | -------------------------------------------------------------------------------- /SchduledMessageWhatsApp/main.py: -------------------------------------------------------------------------------- 1 | import pywhatkit 2 | import datetime 3 | 4 | num = input("Enter WhatsApp Number of Sender (without Country Code) : ") 5 | msg = input("Enter Your Message : ") 6 | time = input("Enter Time in (HH:MM) 24-hr format : ") 7 | if len(time) != 5: 8 | print("Invalid. Please make sure HH:MM format is followed, without any extra space (include only 5 characters)") 9 | exit(1) 10 | h = int(time[0]+time[1]) 11 | m = int(time[3]+time[4]) 12 | if (h<0 or h>23): 13 | print("Invalid") 14 | exit(1) 15 | if (m<0 or m>59): 16 | print("Invalid") 17 | exit(1) 18 | 19 | pywhatkit.sendwhatmsg(f"+91{num}", f"{msg}", h, m) 20 | -------------------------------------------------------------------------------- /Student Management System/datab.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Student Management System/datab.db -------------------------------------------------------------------------------- /Student Management System/datab.py: -------------------------------------------------------------------------------- 1 | from sqlite3 import * 2 | 3 | con = None 4 | try: 5 | con = connect("datab.db") 6 | cursor = con.cursor() 7 | sql = "create table student(rno int primary key,name text,marks int)" 8 | cursor.execute(sql) 9 | except Exception as e: 10 | print("Issue",e) 11 | finally: 12 | if con is not None: 13 | con.close() 14 | print("Closed") -------------------------------------------------------------------------------- /Sudoku-Solver/README.md: -------------------------------------------------------------------------------- 1 |

A Sudoku Solver using Python.

2 | 3 | Run the SudokuGUI file directly in your Terminal using 4 | 5 | --> python SudokuGUI.py 6 | or 7 | --> python3 SudokuGUI.py -------------------------------------------------------------------------------- /Sudoku-Solver/__pycache__/sudokutools.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Sudoku-Solver/__pycache__/sudokutools.cpython-310.pyc -------------------------------------------------------------------------------- /Sudoku-Solver/assets/Entering Values.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Sudoku-Solver/assets/Entering Values.gif -------------------------------------------------------------------------------- /Sudoku-Solver/assets/Visualizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Sudoku-Solver/assets/Visualizer.gif -------------------------------------------------------------------------------- /Sudoku-Solver/assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Sudoku-Solver/assets/thumbnail.png -------------------------------------------------------------------------------- /Sudoku-Solver/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame==2.0.1 2 | -------------------------------------------------------------------------------- /Text-to-Speech/Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Text-to-Speech/Demo.png -------------------------------------------------------------------------------- /Text-to-Speech/requirements.txt: -------------------------------------------------------------------------------- 1 | tkinter 2 | pyttsx3 3 | espeak-ng # Only if using the espeak driver 4 | 5 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/.idea/Tic-Tac-Toe.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | ./pip-19.0.3-py3.7.egg 3 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal:main 3 | pip3 = pip._internal:main 4 | pip3.7 = pip._internal:main 5 | 6 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/not-zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- 1 | # Shim to wrap setup.py invocation with setuptools 2 | SETUPTOOLS_SHIM = ( 3 | "import setuptools, tokenize;__file__=%r;" 4 | "f=getattr(tokenize, 'open', open)(__file__);" 5 | "code=f.read().replace('\\r\\n', '\\n');" 6 | "f.close();" 7 | "exec(compile(code, __file__, 'exec'))" 8 | ) 9 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | """CacheControl import Interface. 2 | 3 | Make it easy to import from cachecontrol without long namespaces. 4 | """ 5 | __author__ = "Eric Larson" 6 | __email__ = "eric@ionrock.org" 7 | __version__ = "0.12.5" 8 | 9 | from .wrapper import CacheControl 10 | from .adapter import CacheControlAdapter 11 | from .controller import CacheController 12 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/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 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | certifi.py 6 | ~~~~~~~~~~ 7 | 8 | This module returns the installation location of cacert.pem. 9 | """ 10 | import os 11 | 12 | 13 | def where(): 14 | f = os.path.dirname(__file__) 15 | 16 | return os.path.join(f, 'cacert.pem') 17 | 18 | 19 | if __name__ == '__main__': 20 | print(where()) 21 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- 1 | """ 2 | This module exists only to simplify retrieving the version number of chardet 3 | from within setup.py and from chardet subpackages. 4 | 5 | :author: Dan Blanchard (dan.blanchard@gmail.com) 6 | """ 7 | 8 | __version__ = "3.0.4" 9 | VERSION = __version__.split('.') 10 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | from .initialise import init, deinit, reinit, colorama_text 3 | from .ansi import Fore, Back, Style, Cursor 4 | from .ansitowin32 import AnsiToWin32 5 | 6 | __version__ = '0.4.1' 7 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2017 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.2.8' 10 | 11 | class DistlibException(Exception): 12 | pass 13 | 14 | try: 15 | from logging import NullHandler 16 | except ImportError: # pragma: no cover 17 | class NullHandler(logging.Handler): 18 | def handle(self, record): pass 19 | def emit(self, record): pass 20 | def createLock(self): self.lock = None 21 | 22 | logger = logging.getLogger(__name__) 23 | logger.addHandler(NullHandler()) 24 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/_backport/__init__.py: -------------------------------------------------------------------------------- 1 | """Modules copied from Python 3 standard libraries, for internal use only. 2 | 3 | Individual classes and functions are found in d2._backport.misc. Intended 4 | usage is to always import things missing from 3.1 from that module: the 5 | built-in/stdlib objects will be used if found. 6 | """ 7 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/_trie/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | from .py import Trie as PyTrie 4 | 5 | Trie = PyTrie 6 | 7 | # pylint:disable=wrong-import-position 8 | try: 9 | from .datrie import Trie as DATrie 10 | except ImportError: 11 | pass 12 | else: 13 | Trie = DATrie 14 | # pylint:enable=wrong-import-position 15 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, division, unicode_literals 2 | 3 | 4 | class Filter(object): 5 | def __init__(self, source): 6 | self.source = source 7 | 8 | def __iter__(self): 9 | return iter(self.source) 10 | 11 | def __getattr__(self, name): 12 | return getattr(self.source, name) 13 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | 4 | def ToASCII(label): 5 | return encode(label) 6 | 7 | def ToUnicode(label): 8 | return decode(label) 9 | 10 | def nameprep(s): 11 | raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") 12 | 13 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | from __future__ import absolute_import, division, print_function 5 | 6 | from .__about__ import ( 7 | __author__, 8 | __copyright__, 9 | __email__, 10 | __license__, 11 | __summary__, 12 | __title__, 13 | __uri__, 14 | __version__, 15 | ) 16 | 17 | __all__ = [ 18 | "__title__", 19 | "__summary__", 20 | "__uri__", 21 | "__version__", 22 | "__author__", 23 | "__email__", 24 | "__license__", 25 | "__copyright__", 26 | ] 27 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/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 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- 1 | import os 2 | import errno 3 | import sys 4 | 5 | from pip._vendor import six 6 | 7 | 8 | def _makedirs_31(path, exist_ok=False): 9 | try: 10 | os.makedirs(path) 11 | except OSError as exc: 12 | if not exist_ok or exc.errno != errno.EEXIST: 13 | raise 14 | 15 | 16 | # rely on compatibility behavior until mode considerations 17 | # and exists_ok considerations are disentangled. 18 | # See https://github.com/pypa/setuptools/pull/1083#issuecomment-315168663 19 | needs_makedirs = ( 20 | six.PY2 or 21 | (3, 4) <= sys.version_info < (3, 4, 1) 22 | ) 23 | makedirs = _makedirs_31 if needs_makedirs else os.makedirs 24 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- 1 | class TomlError(RuntimeError): 2 | def __init__(self, message, line, col, filename): 3 | RuntimeError.__init__(self, message, line, col, filename) 4 | self.message = message 5 | self.line = line 6 | self.col = col 7 | self.filename = filename 8 | 9 | def __str__(self): 10 | return '{}({}, {}): {}'.format(self.filename, self.line, self.col, self.message) 11 | 12 | def __repr__(self): 13 | return 'TomlError({!r}, {!r}, {!r}, {!r})'.format(self.message, self.line, self.col, self.filename) 14 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = 'requests' 6 | __description__ = 'Python HTTP for Humans.' 7 | __url__ = 'http://python-requests.org' 8 | __version__ = '2.21.0' 9 | __build__ = 0x022100 10 | __author__ = 'Kenneth Reitz' 11 | __author_email__ = 'me@kennethreitz.org' 12 | __license__ = 'Apache 2.0' 13 | __copyright__ = 'Copyright 2018 Kenneth Reitz' 14 | __cake__ = u'\u2728 \U0001f370 \u2728' 15 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | 4 | """ 5 | requests.certs 6 | ~~~~~~~~~~~~~~ 7 | 8 | This module returns the preferred default CA certificate bundle. There is 9 | only one — the one from the certifi package. 10 | 11 | If you are packaging Requests, e.g., for a Linux distribution or a managed 12 | environment, you can change the definition of where() to return a separately 13 | packaged CA bundle. 14 | """ 15 | from pip._vendor.certifi import where 16 | 17 | if __name__ == '__main__': 18 | print(where()) 19 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ('ssl_match_hostname', ) 6 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | from ..packages import six 3 | from ..packages.six.moves import queue 4 | 5 | if six.PY2: 6 | # Queue is imported for side effects on MS Windows. See issue #229. 7 | import Queue as _unused_module_Queue # noqa: F401 8 | 9 | 10 | class LifoQueue(queue.Queue): 11 | def _init(self, _): 12 | self.queue = collections.deque() 13 | 14 | def _qsize(self, len=len): 15 | return len(self.queue) 16 | 17 | def _put(self, item): 18 | self.queue.append(item) 19 | 20 | def _get(self): 21 | return self.queue.pop() 22 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/setuptools.pth: -------------------------------------------------------------------------------- 1 | ./setuptools-40.8.0-py3.7.egg 2 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if defined _OLD_VIRTUAL_PROMPT ( 4 | set "PROMPT=%_OLD_VIRTUAL_PROMPT%" 5 | ) 6 | set _OLD_VIRTUAL_PROMPT= 7 | 8 | if defined _OLD_VIRTUAL_PYTHONHOME ( 9 | set "PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%" 10 | set _OLD_VIRTUAL_PYTHONHOME= 11 | ) 12 | 13 | if defined _OLD_VIRTUAL_PATH ( 14 | set "PATH=%_OLD_VIRTUAL_PATH%" 15 | ) 16 | 17 | set _OLD_VIRTUAL_PATH= 18 | 19 | set VIRTUAL_ENV= 20 | 21 | :END 22 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Tic-Tac-Toe\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install-3.7' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install-3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Tic-Tac-Toe\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install' 3 | __requires__ = 'setuptools==40.8.0' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')() 12 | ) 13 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Tic-Tac-Toe\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip')() 12 | ) 13 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Tic-Tac-Toe\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3')() 12 | ) 13 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- 1 | #!C:\Users\Shahryar\Desktop\Tic-Tac-Toe\venv\Scripts\python.exe 2 | # EASY-INSTALL-ENTRY-SCRIPT: 'pip==19.0.3','console_scripts','pip3.7' 3 | __requires__ = 'pip==19.0.3' 4 | import re 5 | import sys 6 | from pkg_resources import load_entry_point 7 | 8 | if __name__ == '__main__': 9 | sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0]) 10 | sys.exit( 11 | load_entry_point('pip==19.0.3', 'console_scripts', 'pip3.7')() 12 | ) 13 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Tic-Tac-Toe/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\Shahryar\AppData\Local\Programs\Python\Python37 2 | include-system-site-packages = false 3 | version = 3.7.4 4 | -------------------------------------------------------------------------------- /Towers of Hanoi/Rules.md: -------------------------------------------------------------------------------- 1 | # Python-Projects 🐍 2 | The idea is to shift the numbers in descending order from the left stack to the right while making sure we don't place a bigger number after a smaller one (prompt will be given for invalid move) 3 | 4 | 5 | -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/car_manager.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Turtle Crossing Capstone Game/__pycache__/car_manager.cpython-310.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/car_manager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Turtle Crossing Capstone Game/__pycache__/car_manager.cpython-38.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/player.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Turtle Crossing Capstone Game/__pycache__/player.cpython-310.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/player.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Turtle Crossing Capstone Game/__pycache__/player.cpython-38.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/scoreboard.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Turtle Crossing Capstone Game/__pycache__/scoreboard.cpython-310.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/scoreboard.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wolf620/python-projects/2aa0b80172d53686e646a6afe06b29fdb45bd82b/Turtle Crossing Capstone Game/__pycache__/scoreboard.cpython-38.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/player.py: -------------------------------------------------------------------------------- 1 | from turtle import Turtle 2 | 3 | STARTING_POSITION = (0, -280) 4 | MOVE_DISTANCE = 10 5 | FINISH_LINE_Y = 280 6 | 7 | 8 | class Player(Turtle): 9 | # class to create the turtle 10 | 11 | def __init__(self): 12 | super().__init__() 13 | self.shape("turtle") 14 | self.penup() 15 | self.goto(STARTING_POSITION) 16 | self.setheading(90) 17 | 18 | def move_turtle(self): 19 | # method to move the turtle 20 | 21 | self.forward(MOVE_DISTANCE) 22 | 23 | def reset_turtle(self): 24 | # method to reset the turtle to move it original position when hit the wall 25 | 26 | self.goto(STARTING_POSITION) -------------------------------------------------------------------------------- /Web_Automation/Linkedin_Bot.py: -------------------------------------------------------------------------------- 1 | from selenium import webdriver 2 | from selenium.webdriver.common.keys import Keys 3 | import time 4 | 5 | class Linkedin: 6 | def __init(self,username , password): 7 | self.username = username 8 | self.password = password 9 | self.bot = webdriver.Chrome() 10 | 11 | def login(self): 12 | bot = self.bot 13 | bot.get("https://www.linkedin.com/login") 14 | time.sleep(4) 15 | email = bot.find_element_by_id('username') 16 | email.send_keys(self.username) 17 | password = bot.find_element_by_id('password') 18 | password.send_keys(self.password) 19 | time.sleep(4) 20 | password.send_keys(Keys.RETURN) 21 | 22 | 23 | load = Linkedin('enter_email','enter_password') 24 | load.login() 25 | -------------------------------------------------------------------------------- /Youtube Searching Script/youtubeSearch.py: -------------------------------------------------------------------------------- 1 | import pywhatkit as pwk # You need to install this using pip install pywhatkit 2 | def main(): # main function for taking input and using pywhatkit builtin function 3 | videoName = input("Search: ") 4 | pwk.playonyt(videoName) 5 | 6 | # calling of main function in exception handling block 7 | try: 8 | main() 9 | except: 10 | print("An unexpected error occurred") 11 | finally: 12 | print("Script closed") 13 | -------------------------------------------------------------------------------- /pokemone_battle.py/README: -------------------------------------------------------------------------------- 1 | A simple pokemon battle game with type advantages. 2 | add more pokemon and moves if you want! --------------------------------------------------------------------------------