├── .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/Shahrayar123/Python-Projects/HEAD/.DS_Store -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Python-Projects.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/.idea/Python-Projects.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /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/Shahrayar123/Python-Projects/HEAD/AI_Attendence_Program/Images/elonmusk.jpg -------------------------------------------------------------------------------- /AI_Attendence_Program/Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/AI_Attendence_Program/Main.py -------------------------------------------------------------------------------- /AI_Attendence_Program/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/AI_Attendence_Program/readme.md -------------------------------------------------------------------------------- /AirCanvas/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /AirCanvas/.idea/AirCanvas.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/AirCanvas/.idea/AirCanvas.iml -------------------------------------------------------------------------------- /AirCanvas/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/AirCanvas/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /AirCanvas/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/AirCanvas/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /AirCanvas/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/AirCanvas/.idea/misc.xml -------------------------------------------------------------------------------- /AirCanvas/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/AirCanvas/.idea/modules.xml -------------------------------------------------------------------------------- /AirCanvas/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/AirCanvas/main.py -------------------------------------------------------------------------------- /AirCanvas/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/AirCanvas/readme.md -------------------------------------------------------------------------------- /Banking App/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Banking App/Readme.md -------------------------------------------------------------------------------- /Banking App/banking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Banking App/banking.py -------------------------------------------------------------------------------- /Car Racing Game/background_music.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Car Racing Game/background_music.wav -------------------------------------------------------------------------------- /Car Racing Game/car_nfs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Car Racing Game/car_nfs.png -------------------------------------------------------------------------------- /Car Racing Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Car Racing Game/main.py -------------------------------------------------------------------------------- /Car Racing Game/road_nfs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Car Racing Game/road_nfs.jpg -------------------------------------------------------------------------------- /Conway's Game of Life/game_of_life.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Conway's Game of Life/game_of_life.py -------------------------------------------------------------------------------- /Conway's Game of Life/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Conway's Game of Life/readme.md -------------------------------------------------------------------------------- /Dice-Simulator/.idea/Dice-Simulator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/.idea/Dice-Simulator.iml -------------------------------------------------------------------------------- /Dice-Simulator/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Dice-Simulator/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/.idea/misc.xml -------------------------------------------------------------------------------- /Dice-Simulator/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/.idea/modules.xml -------------------------------------------------------------------------------- /Dice-Simulator/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/.idea/workspace.xml -------------------------------------------------------------------------------- /Dice-Simulator/dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/dice.py -------------------------------------------------------------------------------- /Dice-Simulator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/readme.md -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /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/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /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/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /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/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/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dice-Simulator/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/activate -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Dice-Simulator/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dice-Simulator/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Dictionary-App/.idea/Dictionary-App.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/.idea/Dictionary-App.iml -------------------------------------------------------------------------------- /Dictionary-App/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Dictionary-App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/.idea/misc.xml -------------------------------------------------------------------------------- /Dictionary-App/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/.idea/modules.xml -------------------------------------------------------------------------------- /Dictionary-App/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/.idea/workspace.xml -------------------------------------------------------------------------------- /Dictionary-App/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/dictionary.py -------------------------------------------------------------------------------- /Dictionary-App/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/readme.md -------------------------------------------------------------------------------- /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/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary-2.0.1.dist-info/LICENSE -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary-2.0.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary-2.0.1.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary-2.0.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary-2.0.1.dist-info/RECORD -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/core.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/script.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary/core.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary/script.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/test_pydictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary/test_pydictionary.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/PyDictionary/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/PyDictionary/utils.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/__pycache__/goslate.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/COPYING.txt -------------------------------------------------------------------------------- /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/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/LICENSE -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/beautifulsoup4-4.9.1.dist-info/RECORD -------------------------------------------------------------------------------- /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/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4-0.0.1.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4-0.0.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4-0.0.1.dist-info/RECORD -------------------------------------------------------------------------------- /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/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/__pycache__/testing.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/builder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/builder/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/_lxml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/builder/__pycache__/_lxml.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/builder/_html5lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/builder/_html5lib.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/builder/_htmlparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/builder/_htmlparser.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/builder/_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/builder/_lxml.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/dammit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/dammit.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/diagnose.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/element.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/formatter.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/testing.py -------------------------------------------------------------------------------- /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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_docs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_docs.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_lxml.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/__pycache__/test_tree.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/test_builder_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/test_builder_registry.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/test_docs.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/test_html5lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/test_html5lib.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/test_htmlparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/test_htmlparser.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/test_lxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/test_lxml.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/test_soup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/test_soup.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/bs4/tests/test_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/bs4/tests/test_tree.py -------------------------------------------------------------------------------- /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/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/LICENSE -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/RECORD -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/certifi-2020.6.20.dist-info/WHEEL -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/certifi/__main__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/certifi/__pycache__/core.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/certifi/cacert.pem -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/certifi/core.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /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/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/RECORD -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/WHEEL -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/entry_points.txt -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet-3.0.4.dist-info/metadata.json -------------------------------------------------------------------------------- /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/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/big5prober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/compat.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/gb2312freq.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/jisfreq.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/jpcntx.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/mbcssm.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/mbcssm.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/sjisprober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/sjisprober.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/utf8prober.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/big5freq.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/big5prober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/chardistribution.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/charsetgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/charsetgroupprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/charsetprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/codingstatemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/codingstatemachine.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/compat.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/cp949prober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/enums.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/escprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/escsm.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/eucjpprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/euckrfreq.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/euckrprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/euctwfreq.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/euctwprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/gb2312freq.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/gb2312prober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/hebrewprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/jisfreq.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/jpcntx.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/langbulgarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/langbulgarianmodel.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/langcyrillicmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/langcyrillicmodel.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/langhungarianmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/langhungarianmodel.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/langthaimodel.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/latin1prober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/mbcssm.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/sbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/sbcharsetprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/sbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/sbcsgroupprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/sjisprober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/universaldetector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/universaldetector.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/utf8prober.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/chardet/version.py -------------------------------------------------------------------------------- /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/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/RECORD -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click-7.1.2.dist-info/WHEEL -------------------------------------------------------------------------------- /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/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/_bashcomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/_bashcomplete.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/_compat.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/_termui_impl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/_termui_impl.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/_textwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/_textwrap.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/_unicodefun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/_unicodefun.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/_winconsole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/_winconsole.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/core.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/decorators.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/exceptions.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/formatting.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/globals.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/parser.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/termui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/termui.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/testing.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/types.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/click/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/click/utils.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /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/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/futures-3.1.1.dist-info/LICENSE -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/futures-3.1.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/futures-3.1.1.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/futures-3.1.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/futures-3.1.1.dist-info/RECORD -------------------------------------------------------------------------------- /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/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/goslate-1.5.1.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/goslate-1.5.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/goslate-1.5.1.dist-info/RECORD -------------------------------------------------------------------------------- /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/goslate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/goslate.py -------------------------------------------------------------------------------- /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/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/LICENSE.rst -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/RECORD -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna-2.10.dist-info/WHEEL -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna/__pycache__/uts46data.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna/codec.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna/compat.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna/core.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna/idnadata.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna/intranges.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.10' 2 | 3 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/idna/uts46data.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt -------------------------------------------------------------------------------- /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/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /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/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /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/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /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/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/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/RECORD -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/WHEEL -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests-2.24.0.dist-info/metadata.json -------------------------------------------------------------------------------- /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/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/adapters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/sessions.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__pycache__/structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/__version__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/_internal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/_internal_utils.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/adapters.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/api.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/auth.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/certs.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/compat.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/cookies.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/exceptions.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/help.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/hooks.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/models.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/packages.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/sessions.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/status_codes.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/structures.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/requests/utils.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve-2.0.1.dist-info/LICENSE.md -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve-2.0.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve-2.0.1.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve-2.0.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve-2.0.1.dist-info/RECORD -------------------------------------------------------------------------------- /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/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/__meta__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve/__meta__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/css_match.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/css_types.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/css_match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve/css_match.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/css_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve/css_parser.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/css_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve/css_types.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/soupsieve/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/soupsieve/util.py -------------------------------------------------------------------------------- /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/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/METADATA -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/RECORD -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3-1.25.10.dist-info/WHEEL -------------------------------------------------------------------------------- /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/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/_version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/connection.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/exceptions.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/__pycache__/response.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/_collections.py -------------------------------------------------------------------------------- /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/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/connection.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/connectionpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/connectionpool.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_appengine_environ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_appengine_environ.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/bindings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/bindings.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/low_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/_securetransport/low_level.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/appengine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/appengine.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/ntlmpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/ntlmpool.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/pyopenssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/pyopenssl.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/securetransport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/securetransport.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/exceptions.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/fields.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/filepost.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/backports/makefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/packages/backports/makefile.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/packages/six.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/poolmanager.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/request.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/response.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/__init__.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/queue.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/queue.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/retry.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/ssl_.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/url.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/__pycache__/wait.cpython-37.pyc -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/connection.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/queue.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/request.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/response.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/retry.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/timeout.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/url.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Lib/site-packages/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Lib/site-packages/urllib3/util/wait.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/activate -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/chardetect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/chardetect.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Dictionary-App/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Dictionary-App/venv/pyvenv.cfg -------------------------------------------------------------------------------- /FaceRecgonition/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /FaceRecgonition/.idea/.name: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /FaceRecgonition/.idea/FaceRecgonition.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/FaceRecgonition/.idea/FaceRecgonition.iml -------------------------------------------------------------------------------- /FaceRecgonition/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/FaceRecgonition/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /FaceRecgonition/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/FaceRecgonition/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /FaceRecgonition/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/FaceRecgonition/.idea/misc.xml -------------------------------------------------------------------------------- /FaceRecgonition/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/FaceRecgonition/.idea/modules.xml -------------------------------------------------------------------------------- /FaceRecgonition/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/FaceRecgonition/main.py -------------------------------------------------------------------------------- /FaceRecgonition/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/FaceRecgonition/readme.md -------------------------------------------------------------------------------- /Hangman Game/.idea/Hangman Game.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/.idea/Hangman Game.iml -------------------------------------------------------------------------------- /Hangman Game/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Hangman Game/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/.idea/misc.xml -------------------------------------------------------------------------------- /Hangman Game/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/.idea/modules.xml -------------------------------------------------------------------------------- /Hangman Game/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/.idea/workspace.xml -------------------------------------------------------------------------------- /Hangman Game/added.txt: -------------------------------------------------------------------------------- 1 | I added extra features -------------------------------------------------------------------------------- /Hangman Game/hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/hangman.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt -------------------------------------------------------------------------------- /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/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/build_env.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/locations.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pep425tags.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /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/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /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/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Shahrayar123/Python-Projects/HEAD/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/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /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/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /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/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/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/test.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/utils.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Hangman Game/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/activate -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Hangman Game/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Hangman Game/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Hangman Game/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Language Detector/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Language Detector/Readme.md -------------------------------------------------------------------------------- /Language Detector/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Language Detector/main.py -------------------------------------------------------------------------------- /Language Detector/requirements.txt: -------------------------------------------------------------------------------- 1 | langdetect==1.0.9 2 | -------------------------------------------------------------------------------- /Local-Chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Local-Chat/README.md -------------------------------------------------------------------------------- /Local-Chat/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Local-Chat/main.py -------------------------------------------------------------------------------- /Local-Chat/requirements.txt: -------------------------------------------------------------------------------- 1 | art 2 | tk -------------------------------------------------------------------------------- /Local-Chat/src/Client.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Local-Chat/src/Client.gif -------------------------------------------------------------------------------- /Local-Chat/src/GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Local-Chat/src/GUI.png -------------------------------------------------------------------------------- /Local-Chat/src/Server.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Local-Chat/src/Server.gif -------------------------------------------------------------------------------- /Networking-Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Networking-Tools/README.md -------------------------------------------------------------------------------- /Networking-Tools/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pyfiglet -------------------------------------------------------------------------------- /Networking-Tools/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Networking-Tools/tools.py -------------------------------------------------------------------------------- /Networking-Tools/tools_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Networking-Tools/tools_main.py -------------------------------------------------------------------------------- /Number Guessing Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Number Guessing Game/main.py -------------------------------------------------------------------------------- /Number Guessing Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Number Guessing Game/readme.md -------------------------------------------------------------------------------- /Pictures Organizer/images/attractive-g3e98a5913_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Pictures Organizer/images/attractive-g3e98a5913_640.jpg -------------------------------------------------------------------------------- /Pictures Organizer/images/beard-g42aa0992e_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Pictures Organizer/images/beard-g42aa0992e_640.jpg -------------------------------------------------------------------------------- /Pictures Organizer/images/family-g9f80a310a_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Pictures Organizer/images/family-g9f80a310a_640.jpg -------------------------------------------------------------------------------- /Pictures Organizer/images/people-g159624022_640.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Pictures Organizer/images/people-g159624022_640.jpg -------------------------------------------------------------------------------- /Pictures Organizer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Pictures Organizer/main.py -------------------------------------------------------------------------------- /Pictures Organizer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Pictures Organizer/readme.md -------------------------------------------------------------------------------- /QR Code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/QR Code/main.py -------------------------------------------------------------------------------- /QR Code/readem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/QR Code/readem.md -------------------------------------------------------------------------------- /QR Code/requirements.txt: -------------------------------------------------------------------------------- 1 | pyqrcode -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/README.md -------------------------------------------------------------------------------- /Riddle/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Riddle/readme.md -------------------------------------------------------------------------------- /Riddle/riddle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Riddle/riddle.py -------------------------------------------------------------------------------- /Rock Paper Scissors Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Rock Paper Scissors Game/main.py -------------------------------------------------------------------------------- /Rock Paper Scissors Game/readem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Rock Paper Scissors Game/readem.md -------------------------------------------------------------------------------- /SNAKE/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/SNAKE/readme.md -------------------------------------------------------------------------------- /SNAKE/snake_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/SNAKE/snake_game.py -------------------------------------------------------------------------------- /SchduledMessageWhatsApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/SchduledMessageWhatsApp/README.md -------------------------------------------------------------------------------- /SchduledMessageWhatsApp/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/SchduledMessageWhatsApp/main.py -------------------------------------------------------------------------------- /Screen_Recording_App/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Screen_Recording_App/main.py -------------------------------------------------------------------------------- /Screen_Recording_App/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Screen_Recording_App/readme.md -------------------------------------------------------------------------------- /Student Management System/Student Management System.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Student Management System/Student Management System.py -------------------------------------------------------------------------------- /Student Management System/datab.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Student Management System/datab.db -------------------------------------------------------------------------------- /Student Management System/datab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Student Management System/datab.py -------------------------------------------------------------------------------- /Sudoku-Solver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Sudoku-Solver/LICENSE -------------------------------------------------------------------------------- /Sudoku-Solver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Sudoku-Solver/README.md -------------------------------------------------------------------------------- /Sudoku-Solver/SudokuGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Sudoku-Solver/SudokuGUI.py -------------------------------------------------------------------------------- /Sudoku-Solver/__pycache__/sudokutools.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Sudoku-Solver/__pycache__/sudokutools.cpython-310.pyc -------------------------------------------------------------------------------- /Sudoku-Solver/assets/Entering Values.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Sudoku-Solver/assets/Entering Values.gif -------------------------------------------------------------------------------- /Sudoku-Solver/assets/Visualizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Sudoku-Solver/assets/Visualizer.gif -------------------------------------------------------------------------------- /Sudoku-Solver/assets/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Sudoku-Solver/assets/thumbnail.png -------------------------------------------------------------------------------- /Sudoku-Solver/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame==2.0.1 2 | -------------------------------------------------------------------------------- /Sudoku-Solver/sudokutools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Sudoku-Solver/sudokutools.py -------------------------------------------------------------------------------- /Text-to-Speech/Demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Text-to-Speech/Demo.png -------------------------------------------------------------------------------- /Text-to-Speech/Text-to-speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Text-to-Speech/Text-to-speech.py -------------------------------------------------------------------------------- /Text-to-Speech/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Text-to-Speech/requirements.txt -------------------------------------------------------------------------------- /Tic-Tac-Toe/.idea/Tic-Tac-Toe.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/.idea/Tic-Tac-Toe.iml -------------------------------------------------------------------------------- /Tic-Tac-Toe/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /Tic-Tac-Toe/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/.idea/misc.xml -------------------------------------------------------------------------------- /Tic-Tac-Toe/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/.idea/modules.xml -------------------------------------------------------------------------------- /Tic-Tac-Toe/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/.idea/workspace.xml -------------------------------------------------------------------------------- /Tic-Tac-Toe/TicTacToe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/TicTacToe.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/easy-install.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/easy-install.pth -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/PKG-INFO -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/SOURCES.txt -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/EGG-INFO/entry_points.txt -------------------------------------------------------------------------------- /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/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/__main__.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/__init__.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/build_env.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cache.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/download.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/index.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/locations.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/models/link.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pep425tags.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/resolve.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/utils/ui.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_internal/wheel.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /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/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /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/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/distro.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /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/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /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/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/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/core.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/pytoml/test.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/six.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/pip-19.0.3-py3.7.egg/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Lib/site-packages/setuptools-40.8.0-py3.7.egg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/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/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/Activate.ps1 -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/activate -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/activate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/activate.bat -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/deactivate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/deactivate.bat -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/easy_install-3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/easy_install-3.7-script.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/easy_install-3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/easy_install-3.7.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/easy_install-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/easy_install-script.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/pip-script.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip3-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/pip3-script.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip3.7-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/pip3.7-script.py -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip3.7.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/pip3.7.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Tic-Tac-Toe/venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tic-Tac-Toe/venv/pyvenv.cfg -------------------------------------------------------------------------------- /Tkinter Clock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tkinter Clock/README.md -------------------------------------------------------------------------------- /Tkinter Clock/main.py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Tkinter Clock/main.py.py -------------------------------------------------------------------------------- /Towers of Hanoi/Rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Towers of Hanoi/Rules.md -------------------------------------------------------------------------------- /Towers of Hanoi/Towers of Hanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Towers of Hanoi/Towers of Hanoi.py -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/car_manager.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/__pycache__/car_manager.cpython-310.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/car_manager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/__pycache__/car_manager.cpython-38.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/player.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/__pycache__/player.cpython-310.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/player.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/__pycache__/player.cpython-38.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/scoreboard.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/__pycache__/scoreboard.cpython-310.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/__pycache__/scoreboard.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/__pycache__/scoreboard.cpython-38.pyc -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/car_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/car_manager.py -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/main.py -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/player.py -------------------------------------------------------------------------------- /Turtle Crossing Capstone Game/scoreboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Turtle Crossing Capstone Game/scoreboard.py -------------------------------------------------------------------------------- /Web_Automation/Facebook_Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Web_Automation/Facebook_Bot.py -------------------------------------------------------------------------------- /Web_Automation/Linkedin_Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Web_Automation/Linkedin_Bot.py -------------------------------------------------------------------------------- /Web_Automation/Twitter_Bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Web_Automation/Twitter_Bot.py -------------------------------------------------------------------------------- /Youtube Searching Script/youtubeSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/Youtube Searching Script/youtubeSearch.py -------------------------------------------------------------------------------- /pokemone_battle.py/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/pokemone_battle.py/README -------------------------------------------------------------------------------- /pokemone_battle.py/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shahrayar123/Python-Projects/HEAD/pokemone_battle.py/main.py --------------------------------------------------------------------------------