├── .gitignore ├── Age Calculator ├── AGE.py ├── age.ico └── output_age.JPG ├── Amazone Price Tracker ├── .idea │ ├── .gitignore │ ├── Amazone Price Tracker.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml └── main.py ├── COLOR_GAME_TKINTER_GUI ├── .idea │ ├── .gitignore │ ├── COLOR_GAME_TKINTER_GUI.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── Color_game_tkinter_gui.py ├── Color_game_tkinter_gui_OUTPUT.jpg ├── game-console.ico └── main.py ├── Calculator_in_python ├── .idea │ ├── .gitignore │ ├── Calculator_in_python.iml │ ├── dictionaries │ │ └── Avii_Rathore.xml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── 11.ico ├── Calculator_tkinter.py ├── Calculator_tkinter_output.jpg └── venv │ ├── Lib │ └── site-packages │ │ ├── __pycache__ │ │ └── easy_install.cpython-38.pyc │ │ ├── easy_install.py │ │ ├── pip-20.0.2.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── entry_points.txt │ │ └── top_level.txt │ │ ├── pip │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── __main__.cpython-38.pyc │ │ ├── _internal │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── build_env.cpython-38.pyc │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── legacy_resolve.cpython-38.pyc │ │ │ │ ├── locations.cpython-38.pyc │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ ├── pep425tags.cpython-38.pyc │ │ │ │ ├── pyproject.cpython-38.pyc │ │ │ │ ├── self_outdated_check.cpython-38.pyc │ │ │ │ └── wheel_builder.cpython-38.pyc │ │ │ ├── build_env.py │ │ │ ├── cache.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── autocompletion.cpython-38.pyc │ │ │ │ │ ├── base_command.cpython-38.pyc │ │ │ │ │ ├── cmdoptions.cpython-38.pyc │ │ │ │ │ ├── command_context.cpython-38.pyc │ │ │ │ │ ├── main.cpython-38.pyc │ │ │ │ │ ├── main_parser.cpython-38.pyc │ │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ │ └── status_codes.cpython-38.pyc │ │ │ │ ├── autocompletion.py │ │ │ │ ├── base_command.py │ │ │ │ ├── cmdoptions.py │ │ │ │ ├── command_context.py │ │ │ │ ├── main.py │ │ │ │ ├── main_parser.py │ │ │ │ ├── parser.py │ │ │ │ ├── req_command.py │ │ │ │ └── status_codes.py │ │ │ ├── commands │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── completion.cpython-38.pyc │ │ │ │ │ ├── configuration.cpython-38.pyc │ │ │ │ │ ├── debug.cpython-38.pyc │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ ├── hash.cpython-38.pyc │ │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ │ ├── install.cpython-38.pyc │ │ │ │ │ ├── list.cpython-38.pyc │ │ │ │ │ ├── search.cpython-38.pyc │ │ │ │ │ ├── show.cpython-38.pyc │ │ │ │ │ ├── uninstall.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── check.py │ │ │ │ ├── completion.py │ │ │ │ ├── configuration.py │ │ │ │ ├── debug.py │ │ │ │ ├── download.py │ │ │ │ ├── freeze.py │ │ │ │ ├── hash.py │ │ │ │ ├── help.py │ │ │ │ ├── install.py │ │ │ │ ├── list.py │ │ │ │ ├── search.py │ │ │ │ ├── show.py │ │ │ │ ├── uninstall.py │ │ │ │ └── wheel.py │ │ │ ├── configuration.py │ │ │ ├── distributions │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── installed.cpython-38.pyc │ │ │ │ │ ├── sdist.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── installed.py │ │ │ │ ├── sdist.py │ │ │ │ └── wheel.py │ │ │ ├── exceptions.py │ │ │ ├── index │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── collector.cpython-38.pyc │ │ │ │ │ └── package_finder.cpython-38.pyc │ │ │ │ ├── collector.py │ │ │ │ └── package_finder.py │ │ │ ├── legacy_resolve.py │ │ │ ├── locations.py │ │ │ ├── main.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ │ ├── link.cpython-38.pyc │ │ │ │ │ ├── scheme.cpython-38.pyc │ │ │ │ │ ├── search_scope.cpython-38.pyc │ │ │ │ │ ├── selection_prefs.cpython-38.pyc │ │ │ │ │ ├── target_python.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── candidate.py │ │ │ │ ├── format_control.py │ │ │ │ ├── index.py │ │ │ │ ├── link.py │ │ │ │ ├── scheme.py │ │ │ │ ├── search_scope.py │ │ │ │ ├── selection_prefs.py │ │ │ │ ├── target_python.py │ │ │ │ └── wheel.py │ │ │ ├── network │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ │ ├── download.cpython-38.pyc │ │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ │ ├── auth.py │ │ │ │ ├── cache.py │ │ │ │ ├── download.py │ │ │ │ ├── session.py │ │ │ │ ├── utils.py │ │ │ │ └── xmlrpc.py │ │ │ ├── operations │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ │ ├── freeze.cpython-38.pyc │ │ │ │ │ └── prepare.cpython-38.pyc │ │ │ │ ├── build │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ │ ├── metadata.py │ │ │ │ │ ├── metadata_legacy.py │ │ │ │ │ ├── wheel.py │ │ │ │ │ └── wheel_legacy.py │ │ │ │ ├── check.py │ │ │ │ ├── freeze.py │ │ │ │ ├── install │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ │ ├── legacy.cpython-38.pyc │ │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ │ ├── editable_legacy.py │ │ │ │ │ ├── legacy.py │ │ │ │ │ └── wheel.py │ │ │ │ └── prepare.py │ │ │ ├── pep425tags.py │ │ │ ├── pyproject.py │ │ │ ├── req │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── constructors.cpython-38.pyc │ │ │ │ │ ├── req_file.cpython-38.pyc │ │ │ │ │ ├── req_install.cpython-38.pyc │ │ │ │ │ ├── req_set.cpython-38.pyc │ │ │ │ │ ├── req_tracker.cpython-38.pyc │ │ │ │ │ └── req_uninstall.cpython-38.pyc │ │ │ │ ├── constructors.py │ │ │ │ ├── req_file.py │ │ │ │ ├── req_install.py │ │ │ │ ├── req_set.py │ │ │ │ ├── req_tracker.py │ │ │ │ └── req_uninstall.py │ │ │ ├── self_outdated_check.py │ │ │ ├── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ │ ├── distutils_args.cpython-38.pyc │ │ │ │ │ ├── encoding.cpython-38.pyc │ │ │ │ │ ├── entrypoints.cpython-38.pyc │ │ │ │ │ ├── filesystem.cpython-38.pyc │ │ │ │ │ ├── filetypes.cpython-38.pyc │ │ │ │ │ ├── glibc.cpython-38.pyc │ │ │ │ │ ├── hashes.cpython-38.pyc │ │ │ │ │ ├── inject_securetransport.cpython-38.pyc │ │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ │ ├── marker_files.cpython-38.pyc │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ │ ├── pkg_resources.cpython-38.pyc │ │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ │ ├── typing.cpython-38.pyc │ │ │ │ │ ├── ui.cpython-38.pyc │ │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── appdirs.py │ │ │ │ ├── compat.py │ │ │ │ ├── deprecation.py │ │ │ │ ├── distutils_args.py │ │ │ │ ├── encoding.py │ │ │ │ ├── entrypoints.py │ │ │ │ ├── filesystem.py │ │ │ │ ├── filetypes.py │ │ │ │ ├── glibc.py │ │ │ │ ├── hashes.py │ │ │ │ ├── inject_securetransport.py │ │ │ │ ├── logging.py │ │ │ │ ├── marker_files.py │ │ │ │ ├── misc.py │ │ │ │ ├── models.py │ │ │ │ ├── packaging.py │ │ │ │ ├── pkg_resources.py │ │ │ │ ├── setuptools_build.py │ │ │ │ ├── subprocess.py │ │ │ │ ├── temp_dir.py │ │ │ │ ├── typing.py │ │ │ │ ├── ui.py │ │ │ │ ├── unpacking.py │ │ │ │ ├── urls.py │ │ │ │ ├── virtualenv.py │ │ │ │ └── wheel.py │ │ │ ├── vcs │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── bazaar.cpython-38.pyc │ │ │ │ │ ├── git.cpython-38.pyc │ │ │ │ │ ├── mercurial.cpython-38.pyc │ │ │ │ │ ├── subversion.cpython-38.pyc │ │ │ │ │ └── versioncontrol.cpython-38.pyc │ │ │ │ ├── bazaar.py │ │ │ │ ├── git.py │ │ │ │ ├── mercurial.py │ │ │ │ ├── subversion.py │ │ │ │ └── versioncontrol.py │ │ │ └── wheel_builder.py │ │ └── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── appdirs.cpython-38.pyc │ │ │ ├── contextlib2.cpython-38.pyc │ │ │ ├── distro.cpython-38.pyc │ │ │ ├── ipaddress.cpython-38.pyc │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ ├── retrying.cpython-38.pyc │ │ │ └── six.cpython-38.pyc │ │ │ ├── appdirs.py │ │ │ ├── cachecontrol │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _cmd.cpython-38.pyc │ │ │ │ ├── adapter.cpython-38.pyc │ │ │ │ ├── cache.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── controller.cpython-38.pyc │ │ │ │ ├── filewrapper.cpython-38.pyc │ │ │ │ ├── heuristics.cpython-38.pyc │ │ │ │ ├── serialize.cpython-38.pyc │ │ │ │ └── wrapper.cpython-38.pyc │ │ │ ├── _cmd.py │ │ │ ├── adapter.py │ │ │ ├── cache.py │ │ │ ├── caches │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── file_cache.cpython-38.pyc │ │ │ │ │ └── redis_cache.cpython-38.pyc │ │ │ │ ├── file_cache.py │ │ │ │ └── redis_cache.py │ │ │ ├── compat.py │ │ │ ├── controller.py │ │ │ ├── filewrapper.py │ │ │ ├── heuristics.py │ │ │ ├── serialize.py │ │ │ └── wrapper.py │ │ │ ├── certifi │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ └── core.cpython-38.pyc │ │ │ ├── cacert.pem │ │ │ └── core.py │ │ │ ├── chardet │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── big5freq.cpython-38.pyc │ │ │ │ ├── big5prober.cpython-38.pyc │ │ │ │ ├── chardistribution.cpython-38.pyc │ │ │ │ ├── charsetgroupprober.cpython-38.pyc │ │ │ │ ├── charsetprober.cpython-38.pyc │ │ │ │ ├── codingstatemachine.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── cp949prober.cpython-38.pyc │ │ │ │ ├── enums.cpython-38.pyc │ │ │ │ ├── escprober.cpython-38.pyc │ │ │ │ ├── escsm.cpython-38.pyc │ │ │ │ ├── eucjpprober.cpython-38.pyc │ │ │ │ ├── euckrfreq.cpython-38.pyc │ │ │ │ ├── euckrprober.cpython-38.pyc │ │ │ │ ├── euctwfreq.cpython-38.pyc │ │ │ │ ├── euctwprober.cpython-38.pyc │ │ │ │ ├── gb2312freq.cpython-38.pyc │ │ │ │ ├── gb2312prober.cpython-38.pyc │ │ │ │ ├── hebrewprober.cpython-38.pyc │ │ │ │ ├── jisfreq.cpython-38.pyc │ │ │ │ ├── jpcntx.cpython-38.pyc │ │ │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ │ │ ├── langcyrillicmodel.cpython-38.pyc │ │ │ │ ├── langgreekmodel.cpython-38.pyc │ │ │ │ ├── langhebrewmodel.cpython-38.pyc │ │ │ │ ├── langhungarianmodel.cpython-38.pyc │ │ │ │ ├── langthaimodel.cpython-38.pyc │ │ │ │ ├── langturkishmodel.cpython-38.pyc │ │ │ │ ├── latin1prober.cpython-38.pyc │ │ │ │ ├── mbcharsetprober.cpython-38.pyc │ │ │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ │ │ ├── mbcssm.cpython-38.pyc │ │ │ │ ├── sbcharsetprober.cpython-38.pyc │ │ │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ │ │ ├── sjisprober.cpython-38.pyc │ │ │ │ ├── universaldetector.cpython-38.pyc │ │ │ │ ├── utf8prober.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── big5freq.py │ │ │ ├── big5prober.py │ │ │ ├── chardistribution.py │ │ │ ├── charsetgroupprober.py │ │ │ ├── charsetprober.py │ │ │ ├── cli │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── chardetect.cpython-38.pyc │ │ │ │ └── chardetect.py │ │ │ ├── codingstatemachine.py │ │ │ ├── compat.py │ │ │ ├── cp949prober.py │ │ │ ├── enums.py │ │ │ ├── escprober.py │ │ │ ├── escsm.py │ │ │ ├── eucjpprober.py │ │ │ ├── euckrfreq.py │ │ │ ├── euckrprober.py │ │ │ ├── euctwfreq.py │ │ │ ├── euctwprober.py │ │ │ ├── gb2312freq.py │ │ │ ├── gb2312prober.py │ │ │ ├── hebrewprober.py │ │ │ ├── jisfreq.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langcyrillicmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf8prober.py │ │ │ └── version.py │ │ │ ├── colorama │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── ansi.cpython-38.pyc │ │ │ │ ├── ansitowin32.cpython-38.pyc │ │ │ │ ├── initialise.cpython-38.pyc │ │ │ │ ├── win32.cpython-38.pyc │ │ │ │ └── winterm.cpython-38.pyc │ │ │ ├── ansi.py │ │ │ ├── ansitowin32.py │ │ │ ├── initialise.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ │ ├── contextlib2.py │ │ │ ├── distlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── database.cpython-38.pyc │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ ├── locators.cpython-38.pyc │ │ │ │ ├── manifest.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ ├── resources.cpython-38.pyc │ │ │ │ ├── scripts.cpython-38.pyc │ │ │ │ ├── util.cpython-38.pyc │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── _backport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ │ ├── shutil.cpython-38.pyc │ │ │ │ │ ├── sysconfig.cpython-38.pyc │ │ │ │ │ └── tarfile.cpython-38.pyc │ │ │ │ ├── misc.py │ │ │ │ ├── shutil.py │ │ │ │ ├── sysconfig.cfg │ │ │ │ ├── sysconfig.py │ │ │ │ └── tarfile.py │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ │ ├── distro.py │ │ │ ├── html5lib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _ihatexml.cpython-38.pyc │ │ │ │ ├── _inputstream.cpython-38.pyc │ │ │ │ ├── _tokenizer.cpython-38.pyc │ │ │ │ ├── _utils.cpython-38.pyc │ │ │ │ ├── constants.cpython-38.pyc │ │ │ │ ├── html5parser.cpython-38.pyc │ │ │ │ └── serializer.cpython-38.pyc │ │ │ ├── _ihatexml.py │ │ │ ├── _inputstream.py │ │ │ ├── _tokenizer.py │ │ │ ├── _trie │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _base.cpython-38.pyc │ │ │ │ │ ├── datrie.cpython-38.pyc │ │ │ │ │ └── py.cpython-38.pyc │ │ │ │ ├── _base.py │ │ │ │ ├── datrie.py │ │ │ │ └── py.py │ │ │ ├── _utils.py │ │ │ ├── constants.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── alphabeticalattributes.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── inject_meta_charset.cpython-38.pyc │ │ │ │ │ ├── lint.cpython-38.pyc │ │ │ │ │ ├── optionaltags.cpython-38.pyc │ │ │ │ │ ├── sanitizer.cpython-38.pyc │ │ │ │ │ └── whitespace.cpython-38.pyc │ │ │ │ ├── alphabeticalattributes.py │ │ │ │ ├── base.py │ │ │ │ ├── inject_meta_charset.py │ │ │ │ ├── lint.py │ │ │ │ ├── optionaltags.py │ │ │ │ ├── sanitizer.py │ │ │ │ └── whitespace.py │ │ │ ├── html5parser.py │ │ │ ├── serializer.py │ │ │ ├── treeadapters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── genshi.cpython-38.pyc │ │ │ │ │ └── sax.cpython-38.pyc │ │ │ │ ├── genshi.py │ │ │ │ └── sax.py │ │ │ ├── treebuilders │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ │ └── etree_lxml.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ └── etree_lxml.py │ │ │ └── treewalkers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── dom.cpython-38.pyc │ │ │ │ ├── etree.cpython-38.pyc │ │ │ │ ├── etree_lxml.cpython-38.pyc │ │ │ │ └── genshi.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── dom.py │ │ │ │ ├── etree.py │ │ │ │ ├── etree_lxml.py │ │ │ │ └── genshi.py │ │ │ ├── idna │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── codec.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ ├── idnadata.cpython-38.pyc │ │ │ │ ├── intranges.cpython-38.pyc │ │ │ │ ├── package_data.cpython-38.pyc │ │ │ │ └── uts46data.cpython-38.pyc │ │ │ ├── codec.py │ │ │ ├── compat.py │ │ │ ├── core.py │ │ │ ├── idnadata.py │ │ │ ├── intranges.py │ │ │ ├── package_data.py │ │ │ └── uts46data.py │ │ │ ├── ipaddress.py │ │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _version.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ └── fallback.cpython-38.pyc │ │ │ ├── _version.py │ │ │ ├── exceptions.py │ │ │ └── fallback.py │ │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ ├── _typing.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── _typing.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ │ ├── pep517 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _in_process.cpython-38.pyc │ │ │ │ ├── build.cpython-38.pyc │ │ │ │ ├── check.cpython-38.pyc │ │ │ │ ├── colorlog.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── dirtools.cpython-38.pyc │ │ │ │ ├── envbuild.cpython-38.pyc │ │ │ │ ├── meta.cpython-38.pyc │ │ │ │ └── wrappers.cpython-38.pyc │ │ │ ├── _in_process.py │ │ │ ├── build.py │ │ │ ├── check.py │ │ │ ├── colorlog.py │ │ │ ├── compat.py │ │ │ ├── dirtools.py │ │ │ ├── envbuild.py │ │ │ ├── meta.py │ │ │ └── wrappers.py │ │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── py31compat.cpython-38.pyc │ │ │ └── py31compat.py │ │ │ ├── progress │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── bar.cpython-38.pyc │ │ │ │ ├── counter.cpython-38.pyc │ │ │ │ └── spinner.cpython-38.pyc │ │ │ ├── bar.py │ │ │ ├── counter.py │ │ │ └── spinner.py │ │ │ ├── pyparsing.py │ │ │ ├── pytoml │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ ├── parser.cpython-38.pyc │ │ │ │ ├── test.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── writer.cpython-38.pyc │ │ │ ├── core.py │ │ │ ├── parser.py │ │ │ ├── test.py │ │ │ ├── utils.py │ │ │ └── writer.py │ │ │ ├── requests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __version__.cpython-38.pyc │ │ │ │ ├── _internal_utils.cpython-38.pyc │ │ │ │ ├── adapters.cpython-38.pyc │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ ├── auth.cpython-38.pyc │ │ │ │ ├── certs.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── cookies.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── help.cpython-38.pyc │ │ │ │ ├── hooks.cpython-38.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── packages.cpython-38.pyc │ │ │ │ ├── sessions.cpython-38.pyc │ │ │ │ ├── status_codes.cpython-38.pyc │ │ │ │ ├── structures.cpython-38.pyc │ │ │ │ └── utils.cpython-38.pyc │ │ │ ├── __version__.py │ │ │ ├── _internal_utils.py │ │ │ ├── adapters.py │ │ │ ├── api.py │ │ │ ├── auth.py │ │ │ ├── certs.py │ │ │ ├── compat.py │ │ │ ├── cookies.py │ │ │ ├── exceptions.py │ │ │ ├── help.py │ │ │ ├── hooks.py │ │ │ ├── models.py │ │ │ ├── packages.py │ │ │ ├── sessions.py │ │ │ ├── status_codes.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ │ ├── retrying.py │ │ │ ├── six.py │ │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _collections.cpython-38.pyc │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ ├── connectionpool.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── fields.cpython-38.pyc │ │ │ │ ├── filepost.cpython-38.pyc │ │ │ │ ├── poolmanager.cpython-38.pyc │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ └── response.cpython-38.pyc │ │ │ ├── _collections.py │ │ │ ├── connection.py │ │ │ ├── connectionpool.py │ │ │ ├── contrib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _appengine_environ.cpython-38.pyc │ │ │ │ │ ├── appengine.cpython-38.pyc │ │ │ │ │ ├── ntlmpool.cpython-38.pyc │ │ │ │ │ ├── pyopenssl.cpython-38.pyc │ │ │ │ │ ├── securetransport.cpython-38.pyc │ │ │ │ │ └── socks.cpython-38.pyc │ │ │ │ ├── _appengine_environ.py │ │ │ │ ├── _securetransport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ ├── bindings.cpython-38.pyc │ │ │ │ │ │ └── low_level.cpython-38.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-38.pyc │ │ │ │ │ └── six.cpython-38.pyc │ │ │ │ ├── backports │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ │ └── makefile.cpython-38.pyc │ │ │ │ │ └── makefile.py │ │ │ │ ├── six.py │ │ │ │ └── ssl_match_hostname │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── _implementation.cpython-38.pyc │ │ │ │ │ └── _implementation.py │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ ├── queue.cpython-38.pyc │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ ├── response.cpython-38.pyc │ │ │ │ ├── retry.cpython-38.pyc │ │ │ │ ├── ssl_.cpython-38.pyc │ │ │ │ ├── timeout.cpython-38.pyc │ │ │ │ ├── url.cpython-38.pyc │ │ │ │ └── wait.cpython-38.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ │ └── webencodings │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── labels.cpython-38.pyc │ │ │ ├── mklabels.cpython-38.pyc │ │ │ ├── tests.cpython-38.pyc │ │ │ └── x_user_defined.cpython-38.pyc │ │ │ ├── labels.py │ │ │ ├── mklabels.py │ │ │ ├── tests.py │ │ │ └── x_user_defined.py │ │ ├── pkg_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ └── py31compat.cpython-38.pyc │ │ ├── _vendor │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ │ └── six.cpython-38.pyc │ │ │ ├── appdirs.py │ │ │ ├── packaging │ │ │ │ ├── __about__.py │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── version.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _structures.py │ │ │ │ ├── markers.py │ │ │ │ ├── requirements.py │ │ │ │ ├── specifiers.py │ │ │ │ ├── utils.py │ │ │ │ └── version.py │ │ │ ├── pyparsing.py │ │ │ └── six.py │ │ ├── extern │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ └── py31compat.py │ │ ├── setuptools-44.1.0.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ ├── dependency_links.txt │ │ ├── entry_points.txt │ │ ├── top_level.txt │ │ └── zip-safe │ │ └── setuptools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _deprecation_warning.cpython-38.pyc │ │ ├── _imp.cpython-38.pyc │ │ ├── archive_util.cpython-38.pyc │ │ ├── build_meta.cpython-38.pyc │ │ ├── config.cpython-38.pyc │ │ ├── dep_util.cpython-38.pyc │ │ ├── depends.cpython-38.pyc │ │ ├── dist.cpython-38.pyc │ │ ├── errors.cpython-38.pyc │ │ ├── extension.cpython-38.pyc │ │ ├── glob.cpython-38.pyc │ │ ├── installer.cpython-38.pyc │ │ ├── launch.cpython-38.pyc │ │ ├── lib2to3_ex.cpython-38.pyc │ │ ├── monkey.cpython-38.pyc │ │ ├── msvc.cpython-38.pyc │ │ ├── namespaces.cpython-38.pyc │ │ ├── package_index.cpython-38.pyc │ │ ├── py27compat.cpython-38.pyc │ │ ├── py31compat.cpython-38.pyc │ │ ├── py33compat.cpython-38.pyc │ │ ├── py34compat.cpython-38.pyc │ │ ├── sandbox.cpython-38.pyc │ │ ├── site-patch.cpython-38.pyc │ │ ├── ssl_support.cpython-38.pyc │ │ ├── unicode_utils.cpython-38.pyc │ │ ├── version.cpython-38.pyc │ │ ├── wheel.cpython-38.pyc │ │ └── windows_support.cpython-38.pyc │ │ ├── _deprecation_warning.py │ │ ├── _imp.py │ │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── ordered_set.cpython-38.pyc │ │ │ ├── pyparsing.cpython-38.pyc │ │ │ └── six.cpython-38.pyc │ │ ├── ordered_set.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ ├── markers.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ ├── specifiers.cpython-38.pyc │ │ │ │ ├── tags.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── version.cpython-38.pyc │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pyparsing.py │ │ └── six.py │ │ ├── archive_util.py │ │ ├── build_meta.py │ │ ├── cli-32.exe │ │ ├── cli-64.exe │ │ ├── cli.exe │ │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── alias.cpython-38.pyc │ │ │ ├── bdist_egg.cpython-38.pyc │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ ├── bdist_wininst.cpython-38.pyc │ │ │ ├── build_clib.cpython-38.pyc │ │ │ ├── build_ext.cpython-38.pyc │ │ │ ├── build_py.cpython-38.pyc │ │ │ ├── develop.cpython-38.pyc │ │ │ ├── dist_info.cpython-38.pyc │ │ │ ├── easy_install.cpython-38.pyc │ │ │ ├── egg_info.cpython-38.pyc │ │ │ ├── install.cpython-38.pyc │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ ├── install_lib.cpython-38.pyc │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ ├── py36compat.cpython-38.pyc │ │ │ ├── register.cpython-38.pyc │ │ │ ├── rotate.cpython-38.pyc │ │ │ ├── saveopts.cpython-38.pyc │ │ │ ├── sdist.cpython-38.pyc │ │ │ ├── setopt.cpython-38.pyc │ │ │ ├── test.cpython-38.pyc │ │ │ ├── upload.cpython-38.pyc │ │ │ └── upload_docs.cpython-38.pyc │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wininst.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.py │ │ ├── dist_info.py │ │ ├── easy_install.py │ │ ├── egg_info.py │ │ ├── install.py │ │ ├── install_egg_info.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── launcher manifest.xml │ │ ├── py36compat.py │ │ ├── register.py │ │ ├── rotate.py │ │ ├── saveopts.py │ │ ├── sdist.py │ │ ├── setopt.py │ │ ├── test.py │ │ ├── upload.py │ │ └── upload_docs.py │ │ ├── config.py │ │ ├── dep_util.py │ │ ├── depends.py │ │ ├── dist.py │ │ ├── errors.py │ │ ├── extension.py │ │ ├── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ │ ├── glob.py │ │ ├── gui-32.exe │ │ ├── gui-64.exe │ │ ├── gui.exe │ │ ├── installer.py │ │ ├── launch.py │ │ ├── lib2to3_ex.py │ │ ├── monkey.py │ │ ├── msvc.py │ │ ├── namespaces.py │ │ ├── package_index.py │ │ ├── py27compat.py │ │ ├── py31compat.py │ │ ├── py33compat.py │ │ ├── py34compat.py │ │ ├── sandbox.py │ │ ├── script (dev).tmpl │ │ ├── script.tmpl │ │ ├── site-patch.py │ │ ├── ssl_support.py │ │ ├── unicode_utils.py │ │ ├── version.py │ │ ├── wheel.py │ │ └── windows_support.py │ ├── Scripts │ ├── Activate.ps1 │ ├── activate │ ├── activate.bat │ ├── deactivate.bat │ ├── easy_install-3.8.exe │ ├── easy_install.exe │ ├── pip.exe │ ├── pip3.8.exe │ ├── pip3.exe │ ├── python.exe │ └── pythonw.exe │ └── pyvenv.cfg ├── Counter watch ├── .idea │ ├── .gitignore │ ├── Counter watch.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── StopWatch.py ├── counter_watch_output.jpg └── stopwatch.ico ├── Currency convert ├── .idea │ ├── .gitignore │ ├── Currency convert.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── currency-converter-project.py └── currency-converter-project_output.jpg ├── Data Base Tkinter ├── .idea │ ├── .gitignore │ ├── Data Base Tknter.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── Database_record_app.py ├── Database_record_app_output.jpg ├── Update.py ├── __pycache__ │ └── Update.cpython-38.pyc ├── address_book.db └── edit.ico ├── Email_Sender ├── main.py └── output.jpg ├── Guess the Gibberish ├── .idea │ ├── .gitignore │ ├── Guess the Gibberish.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── Gibberish_back.png ├── game-console.ico ├── main.py └── output.jpg ├── Image Resizer ├── ImageResize.py ├── crop.png └── img.jpeg ├── ImageToPencilSketch ├── .idea │ ├── .gitignore │ ├── ImageToPencilSketch.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── ImageToPencilSketch.py ├── Iron_man.jpg └── output.jpg ├── Internet Speed ├── .idea │ ├── .gitignore │ ├── .name │ ├── Internet Speed.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── Internet Speed1.jpg ├── Internet_Speed.py └── speed.ico ├── Keyboard jump ├── char.jpg ├── comic.ttf ├── jump.py ├── key_output.jpg ├── keyback.jpg ├── teacher-background.jpg ├── wood-.png └── words.txt ├── Language Translate ├── .idea │ ├── .gitignore │ ├── .name │ ├── Language Translate.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── main.py ├── output.JPG ├── translate.ico └── translate.png ├── Login and Registration app ├── .idea │ ├── .gitignore │ ├── Login and Registration app.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── LoginRegister.py └── userdata.db ├── MP4 to Mp3 ├── .idea │ ├── .gitignore │ ├── .name │ ├── MP4 to Mp3.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── MP4toMP3.png ├── Mp4toMp3.py ├── audio-converting.ico └── output.jpg ├── Music Player ├── MusicController.py ├── badboy.mp3 ├── music.png ├── o_fortuna.mp3 ├── output.jpg ├── pause.png ├── play-button-arrowhead.png └── stop.png ├── Notepad in Python ├── .idea │ ├── .gitignore │ ├── .name │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── noptepad.iml ├── Notepad.ico ├── Output.jpg └── notepad.py ├── PDF to TEXT ├── .idea │ ├── .gitignore │ ├── .name │ ├── PDF to TEXT.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── Hello.pdf ├── PDF_to_Text_output.jpg └── PDF_to_text_2.py ├── Password Generator ├── OUTPUT.jpg ├── password.ico └── passwordgenerator.py ├── QR code Gen ├── .idea │ ├── .gitignore │ ├── QR code Gen.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── QR_code_gen.py ├── myqr.png ├── myqr.svg └── myyoutube.svg ├── Readme.md ├── Rock_Paper_Scissors ├── Rock_Paper_scissors.py └── Rock_Paper_scissors_output.jpg ├── Scientific Calculator In Python ├── OUTPUT.jpg ├── SCIENTIFIC CALCULATOR.py └── calculator.ico ├── Screen Recording ├── .idea │ ├── .gitignore │ ├── .name │ ├── Screen Recording.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── 2021-08-18 20-03-04.mp4 ├── Recording.avi └── main.py ├── System and Hardware Info ├── .idea │ ├── .gitignore │ ├── .name │ ├── System and Hardware Info.iml │ ├── inspectionProfiles │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── Output.png └── main.py ├── Tic Tac Toe with AI and Friend ├── .idea │ ├── .gitignore │ ├── Tic Tac Toe with cpu.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── AI_tic_tac_toe.py ├── __pycache__ │ ├── AI_tic_tac_toe.cpython-38.pyc │ └── tictactoe_with_player.cpython-38.pyc ├── output.PNG ├── tic-tac-toe-icon.ico ├── tic-tac-toe.png └── tictactoe_with_player.py ├── Tic Tac toe ├── O.png ├── X.png ├── tic tac opening.png ├── tic tac opening_putput.jpg └── tictactoe.py ├── To_do_Gui_app ├── Image │ ├── img0.png │ ├── img1.png │ ├── img2.png │ ├── img3.png │ ├── img_delete.png │ └── img_textBox0.png ├── To_DO.db └── main.py ├── URL_Shortener ├── .idea │ ├── .gitignore │ ├── URL_Shortener.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── URL_shortener.py ├── output.PNG └── url.png ├── Weather Updates ├── .idea │ ├── .gitignore │ ├── .name │ ├── Weather Updates.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── cloud.gif ├── cloudy.ico ├── main.py └── output.JPG ├── Website Downloader └── main.py ├── Windows_Notification ├── output.PNG ├── python_py.ico └── window_notification.py ├── Z_Insta_banner └── insta.PNG ├── dice ├── Dice game │ ├── Dice game.py │ ├── dice.ico │ ├── die1.PNG │ ├── die2.PNG │ ├── die3.PNG │ ├── die4.PNG │ ├── die5.PNG │ └── die6.PNG └── Dice game_output.jpg ├── github portfolio └── arvind.jpg ├── image viwer ├── .idea │ ├── .gitignore │ ├── .name │ ├── image viwer.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ └── modules.xml ├── image_viewer.py ├── img │ ├── 1.1.jpg │ ├── 1.2.jpg │ ├── 1.3.jpg │ ├── 1.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ └── 7.jpg ├── output.png └── photo.ico ├── python-encode-decode-project ├── encode-decode.py ├── encode-decode_output.jpg ├── shield.ico └── shield.png ├── snake game ├── snake-game │ └── snake-game.py └── snake-game_output.jpg ├── text to speech ├── Text-to-Speech.py ├── python.mp3 └── text_to_speech_output.jpg └── youtube-downloader-project ├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── youtube-downloader-project.iml ├── youtube_download.py └── youtube_download_output.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | env 2 | .idea 3 | *\.idea -------------------------------------------------------------------------------- /Age Calculator/age.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Age Calculator/age.ico -------------------------------------------------------------------------------- /Age Calculator/output_age.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Age Calculator/output_age.JPG -------------------------------------------------------------------------------- /Amazone Price Tracker/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Amazone Price Tracker/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Amazone Price Tracker/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /COLOR_GAME_TKINTER_GUI/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /COLOR_GAME_TKINTER_GUI/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /COLOR_GAME_TKINTER_GUI/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /COLOR_GAME_TKINTER_GUI/Color_game_tkinter_gui_OUTPUT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/COLOR_GAME_TKINTER_GUI/Color_game_tkinter_gui_OUTPUT.jpg -------------------------------------------------------------------------------- /COLOR_GAME_TKINTER_GUI/game-console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/COLOR_GAME_TKINTER_GUI/game-console.ico -------------------------------------------------------------------------------- /Calculator_in_python/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Calculator_in_python/.idea/dictionaries/Avii_Rathore.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | arvind 5 | 6 | 7 | -------------------------------------------------------------------------------- /Calculator_in_python/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Calculator_in_python/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Calculator_in_python/11.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/11.ico -------------------------------------------------------------------------------- /Calculator_in_python/Calculator_tkinter_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/Calculator_tkinter_output.jpg -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/__pycache__/easy_install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/__pycache__/easy_install.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/easy_install.py: -------------------------------------------------------------------------------- 1 | """Run the EasyInstall command""" 2 | 3 | if __name__ == '__main__': 4 | from setuptools.command.easy_install import main 5 | main() 6 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip-20.0.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip-20.0.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip-20.0.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | pip3.8 = pip._internal.cli.main:main 5 | 6 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip-20.0.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/legacy_resolve.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/legacy_resolve.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/locations.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/pep425tags.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | SUCCESS = 0 4 | ERROR = 1 5 | UNKNOWN_ERROR = 2 6 | VIRTUALENV_NOT_FOUND = 3 7 | PREVIOUS_BUILD_DIR_ERROR = 4 8 | NO_MATCHES_FOUND = 23 9 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/marker_files.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/marker_files.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/typing.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/ui.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/contextlib2.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/contextlib2.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/ipaddress.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/retrying.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | from .file_cache import FileCache # noqa 2 | from .redis_cache import RedisCache # noqa 3 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2019.11.28" 4 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | from pip._vendor.certifi import where 2 | print(where()) 3 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/datrie.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import * 3 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 6, 2) 2 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_typing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_typing.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.7.0' 5 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/_in_process.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import TomlError 2 | from .parser import load, loads 3 | from .test import translate_to_test 4 | from .writer import dump, dumps -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/parser.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/test.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/pytoml/__pycache__/writer.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import 2 | 3 | from . import ssl_match_hostname 4 | 5 | __all__ = ("ssl_match_hostname",) 6 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pkg_resources/__pycache__/py31compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools-44.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools-44.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools-44.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools-44.1.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/py27compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/py31compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/py33compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/site-patch.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/ssl_support.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__init__.py -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_wininst.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-DEV-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').require(%(spec)r) 4 | __file__ = %(dev_path)r 5 | with open(__file__) as f: 6 | exec(compile(f.read(), __file__, 'exec')) 7 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- 1 | # EASY-INSTALL-SCRIPT: %(spec)r,%(script_name)r 2 | __requires__ = %(spec)r 3 | __import__('pkg_resources').run_script(%(spec)r, %(script_name)r) 4 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | import pkg_resources 2 | 3 | try: 4 | __version__ = pkg_resources.get_distribution('setuptools').version 5 | except Exception: 6 | __version__ = 'unknown' 7 | -------------------------------------------------------------------------------- /Calculator_in_python/venv/Scripts/easy_install-3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Scripts/easy_install-3.8.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Scripts/easy_install.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Scripts/easy_install.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Scripts/pip3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Scripts/pip3.8.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Scripts/python.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Calculator_in_python/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /Calculator_in_python/venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\Avii Rathore\AppData\Local\Programs\Python\Python38-32 2 | include-system-site-packages = true 3 | version = 3.8.1 4 | -------------------------------------------------------------------------------- /Counter watch/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Counter watch/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Counter watch/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Counter watch/counter_watch_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Counter watch/counter_watch_output.jpg -------------------------------------------------------------------------------- /Counter watch/stopwatch.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Counter watch/stopwatch.ico -------------------------------------------------------------------------------- /Currency convert/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Currency convert/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Currency convert/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Currency convert/currency-converter-project_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Currency convert/currency-converter-project_output.jpg -------------------------------------------------------------------------------- /Data Base Tkinter/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Data Base Tkinter/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Data Base Tkinter/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Data Base Tkinter/Database_record_app_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Data Base Tkinter/Database_record_app_output.jpg -------------------------------------------------------------------------------- /Data Base Tkinter/Update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Data Base Tkinter/Update.py -------------------------------------------------------------------------------- /Data Base Tkinter/__pycache__/Update.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Data Base Tkinter/__pycache__/Update.cpython-38.pyc -------------------------------------------------------------------------------- /Data Base Tkinter/address_book.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Data Base Tkinter/address_book.db -------------------------------------------------------------------------------- /Data Base Tkinter/edit.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Data Base Tkinter/edit.ico -------------------------------------------------------------------------------- /Email_Sender/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Email_Sender/output.jpg -------------------------------------------------------------------------------- /Guess the Gibberish/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Guess the Gibberish/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Guess the Gibberish/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Guess the Gibberish/Gibberish_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Guess the Gibberish/Gibberish_back.png -------------------------------------------------------------------------------- /Guess the Gibberish/game-console.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Guess the Gibberish/game-console.ico -------------------------------------------------------------------------------- /Guess the Gibberish/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Guess the Gibberish/output.jpg -------------------------------------------------------------------------------- /Image Resizer/crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Image Resizer/crop.png -------------------------------------------------------------------------------- /Image Resizer/img.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Image Resizer/img.jpeg -------------------------------------------------------------------------------- /ImageToPencilSketch/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /ImageToPencilSketch/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /ImageToPencilSketch/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /ImageToPencilSketch/Iron_man.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/ImageToPencilSketch/Iron_man.jpg -------------------------------------------------------------------------------- /ImageToPencilSketch/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/ImageToPencilSketch/output.jpg -------------------------------------------------------------------------------- /Internet Speed/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Internet Speed/.idea/.name: -------------------------------------------------------------------------------- 1 | Internet_Speed.py -------------------------------------------------------------------------------- /Internet Speed/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Internet Speed/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Internet Speed/Internet Speed1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Internet Speed/Internet Speed1.jpg -------------------------------------------------------------------------------- /Internet Speed/speed.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Internet Speed/speed.ico -------------------------------------------------------------------------------- /Keyboard jump/char.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Keyboard jump/char.jpg -------------------------------------------------------------------------------- /Keyboard jump/comic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Keyboard jump/comic.ttf -------------------------------------------------------------------------------- /Keyboard jump/key_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Keyboard jump/key_output.jpg -------------------------------------------------------------------------------- /Keyboard jump/keyback.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Keyboard jump/keyback.jpg -------------------------------------------------------------------------------- /Keyboard jump/teacher-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Keyboard jump/teacher-background.jpg -------------------------------------------------------------------------------- /Keyboard jump/wood-.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Keyboard jump/wood-.png -------------------------------------------------------------------------------- /Language Translate/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Language Translate/.idea/.name: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /Language Translate/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Language Translate/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Language Translate/output.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Language Translate/output.JPG -------------------------------------------------------------------------------- /Language Translate/translate.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Language Translate/translate.ico -------------------------------------------------------------------------------- /Language Translate/translate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Language Translate/translate.png -------------------------------------------------------------------------------- /Login and Registration app/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Login and Registration app/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Login and Registration app/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Login and Registration app/userdata.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Login and Registration app/userdata.db -------------------------------------------------------------------------------- /MP4 to Mp3/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /MP4 to Mp3/.idea/.name: -------------------------------------------------------------------------------- 1 | Mp3toMp4.py -------------------------------------------------------------------------------- /MP4 to Mp3/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /MP4 to Mp3/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /MP4 to Mp3/MP4toMP3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/MP4 to Mp3/MP4toMP3.png -------------------------------------------------------------------------------- /MP4 to Mp3/audio-converting.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/MP4 to Mp3/audio-converting.ico -------------------------------------------------------------------------------- /MP4 to Mp3/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/MP4 to Mp3/output.jpg -------------------------------------------------------------------------------- /Music Player/badboy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Music Player/badboy.mp3 -------------------------------------------------------------------------------- /Music Player/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Music Player/music.png -------------------------------------------------------------------------------- /Music Player/o_fortuna.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Music Player/o_fortuna.mp3 -------------------------------------------------------------------------------- /Music Player/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Music Player/output.jpg -------------------------------------------------------------------------------- /Music Player/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Music Player/pause.png -------------------------------------------------------------------------------- /Music Player/play-button-arrowhead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Music Player/play-button-arrowhead.png -------------------------------------------------------------------------------- /Music Player/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Music Player/stop.png -------------------------------------------------------------------------------- /Notepad in Python/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Notepad in Python/.idea/.name: -------------------------------------------------------------------------------- 1 | notepad.py -------------------------------------------------------------------------------- /Notepad in Python/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Notepad in Python/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Notepad in Python/Notepad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Notepad in Python/Notepad.ico -------------------------------------------------------------------------------- /Notepad in Python/Output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Notepad in Python/Output.jpg -------------------------------------------------------------------------------- /PDF to TEXT/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /PDF to TEXT/.idea/.name: -------------------------------------------------------------------------------- 1 | PDF_to_Text.py -------------------------------------------------------------------------------- /PDF to TEXT/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /PDF to TEXT/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /PDF to TEXT/Hello.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/PDF to TEXT/Hello.pdf -------------------------------------------------------------------------------- /PDF to TEXT/PDF_to_Text_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/PDF to TEXT/PDF_to_Text_output.jpg -------------------------------------------------------------------------------- /Password Generator/OUTPUT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Password Generator/OUTPUT.jpg -------------------------------------------------------------------------------- /Password Generator/password.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Password Generator/password.ico -------------------------------------------------------------------------------- /QR code Gen/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /QR code Gen/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /QR code Gen/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /QR code Gen/myqr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/QR code Gen/myqr.png -------------------------------------------------------------------------------- /Rock_Paper_Scissors/Rock_Paper_scissors_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Rock_Paper_Scissors/Rock_Paper_scissors_output.jpg -------------------------------------------------------------------------------- /Scientific Calculator In Python/OUTPUT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Scientific Calculator In Python/OUTPUT.jpg -------------------------------------------------------------------------------- /Scientific Calculator In Python/calculator.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Scientific Calculator In Python/calculator.ico -------------------------------------------------------------------------------- /Screen Recording/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Screen Recording/.idea/.name: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /Screen Recording/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Screen Recording/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Screen Recording/2021-08-18 20-03-04.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Screen Recording/2021-08-18 20-03-04.mp4 -------------------------------------------------------------------------------- /Screen Recording/Recording.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Screen Recording/Recording.avi -------------------------------------------------------------------------------- /System and Hardware Info/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /System and Hardware Info/.idea/.name: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /System and Hardware Info/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /System and Hardware Info/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /System and Hardware Info/Output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/System and Hardware Info/Output.png -------------------------------------------------------------------------------- /Tic Tac Toe with AI and Friend/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Tic Tac Toe with AI and Friend/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Tic Tac Toe with AI and Friend/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Tic Tac Toe with AI and Friend/__pycache__/AI_tic_tac_toe.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Tic Tac Toe with AI and Friend/__pycache__/AI_tic_tac_toe.cpython-38.pyc -------------------------------------------------------------------------------- /Tic Tac Toe with AI and Friend/__pycache__/tictactoe_with_player.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Tic Tac Toe with AI and Friend/__pycache__/tictactoe_with_player.cpython-38.pyc -------------------------------------------------------------------------------- /Tic Tac Toe with AI and Friend/output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Tic Tac Toe with AI and Friend/output.PNG -------------------------------------------------------------------------------- /Tic Tac Toe with AI and Friend/tic-tac-toe-icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Tic Tac Toe with AI and Friend/tic-tac-toe-icon.ico -------------------------------------------------------------------------------- /Tic Tac Toe with AI and Friend/tic-tac-toe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Tic Tac Toe with AI and Friend/tic-tac-toe.png -------------------------------------------------------------------------------- /Tic Tac toe/O.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Tic Tac toe/O.png -------------------------------------------------------------------------------- /Tic Tac toe/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Tic Tac toe/X.png -------------------------------------------------------------------------------- /Tic Tac toe/tic tac opening.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Tic Tac toe/tic tac opening.png -------------------------------------------------------------------------------- /Tic Tac toe/tic tac opening_putput.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Tic Tac toe/tic tac opening_putput.jpg -------------------------------------------------------------------------------- /To_do_Gui_app/Image/img0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/To_do_Gui_app/Image/img0.png -------------------------------------------------------------------------------- /To_do_Gui_app/Image/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/To_do_Gui_app/Image/img1.png -------------------------------------------------------------------------------- /To_do_Gui_app/Image/img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/To_do_Gui_app/Image/img2.png -------------------------------------------------------------------------------- /To_do_Gui_app/Image/img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/To_do_Gui_app/Image/img3.png -------------------------------------------------------------------------------- /To_do_Gui_app/Image/img_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/To_do_Gui_app/Image/img_delete.png -------------------------------------------------------------------------------- /To_do_Gui_app/Image/img_textBox0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/To_do_Gui_app/Image/img_textBox0.png -------------------------------------------------------------------------------- /To_do_Gui_app/To_DO.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/To_do_Gui_app/To_DO.db -------------------------------------------------------------------------------- /URL_Shortener/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /URL_Shortener/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /URL_Shortener/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /URL_Shortener/output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/URL_Shortener/output.PNG -------------------------------------------------------------------------------- /URL_Shortener/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/URL_Shortener/url.png -------------------------------------------------------------------------------- /Weather Updates/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /Weather Updates/.idea/.name: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /Weather Updates/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /Weather Updates/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /Weather Updates/cloud.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Weather Updates/cloud.gif -------------------------------------------------------------------------------- /Weather Updates/cloudy.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Weather Updates/cloudy.ico -------------------------------------------------------------------------------- /Weather Updates/output.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Weather Updates/output.JPG -------------------------------------------------------------------------------- /Windows_Notification/output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Windows_Notification/output.PNG -------------------------------------------------------------------------------- /Windows_Notification/python_py.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Windows_Notification/python_py.ico -------------------------------------------------------------------------------- /Z_Insta_banner/insta.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/Z_Insta_banner/insta.PNG -------------------------------------------------------------------------------- /dice/Dice game/dice.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/dice/Dice game/dice.ico -------------------------------------------------------------------------------- /dice/Dice game/die1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/dice/Dice game/die1.PNG -------------------------------------------------------------------------------- /dice/Dice game/die2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/dice/Dice game/die2.PNG -------------------------------------------------------------------------------- /dice/Dice game/die3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/dice/Dice game/die3.PNG -------------------------------------------------------------------------------- /dice/Dice game/die4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/dice/Dice game/die4.PNG -------------------------------------------------------------------------------- /dice/Dice game/die5.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/dice/Dice game/die5.PNG -------------------------------------------------------------------------------- /dice/Dice game/die6.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/dice/Dice game/die6.PNG -------------------------------------------------------------------------------- /dice/Dice game_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/dice/Dice game_output.jpg -------------------------------------------------------------------------------- /github portfolio/arvind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/github portfolio/arvind.jpg -------------------------------------------------------------------------------- /image viwer/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /image viwer/.idea/.name: -------------------------------------------------------------------------------- 1 | image_viewer.py -------------------------------------------------------------------------------- /image viwer/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /image viwer/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /image viwer/img/1.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/1.1.jpg -------------------------------------------------------------------------------- /image viwer/img/1.2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/1.2.jpg -------------------------------------------------------------------------------- /image viwer/img/1.3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/1.3.jpg -------------------------------------------------------------------------------- /image viwer/img/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/1.jpg -------------------------------------------------------------------------------- /image viwer/img/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/2.jpg -------------------------------------------------------------------------------- /image viwer/img/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/3.jpg -------------------------------------------------------------------------------- /image viwer/img/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/4.jpg -------------------------------------------------------------------------------- /image viwer/img/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/5.jpg -------------------------------------------------------------------------------- /image viwer/img/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/6.jpg -------------------------------------------------------------------------------- /image viwer/img/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/img/7.jpg -------------------------------------------------------------------------------- /image viwer/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/output.png -------------------------------------------------------------------------------- /image viwer/photo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/image viwer/photo.ico -------------------------------------------------------------------------------- /python-encode-decode-project/encode-decode_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/python-encode-decode-project/encode-decode_output.jpg -------------------------------------------------------------------------------- /python-encode-decode-project/shield.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/python-encode-decode-project/shield.ico -------------------------------------------------------------------------------- /python-encode-decode-project/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/python-encode-decode-project/shield.png -------------------------------------------------------------------------------- /snake game/snake-game_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/snake game/snake-game_output.jpg -------------------------------------------------------------------------------- /text to speech/python.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/text to speech/python.mp3 -------------------------------------------------------------------------------- /text to speech/text_to_speech_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/text to speech/text_to_speech_output.jpg -------------------------------------------------------------------------------- /youtube-downloader-project/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /youtube-downloader-project/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /youtube-downloader-project/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /youtube-downloader-project/youtube_download_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArvindSingh1099/Python-Tkinter-Gui-Project/a3763f0c7db5f74f5639ccfb8ce172f94f0b18da/youtube-downloader-project/youtube_download_output.jpg --------------------------------------------------------------------------------