├── .idea ├── .gitignore ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── labelimg-master.iml ├── misc.xml └── modules.xml ├── .travis.yml ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── __init__.py ├── __pycache__ └── labelImg.cpython-38.pyc ├── data └── predefined_classes.txt ├── demo ├── cocotovoc.png ├── createyaml.png ├── demo.jpg ├── demo3.jpg ├── demo4.jpg ├── demo4.png ├── demo5.png ├── starttrain.png └── v8-annotations.png ├── issue_template.md ├── labelImg.py ├── libs ├── SonWindow.py ├── __init__.py ├── __pycache__ │ ├── SonWindow.cpython-38.pyc │ ├── __init__.cpython-38.pyc │ ├── alertText.cpython-38.pyc │ ├── c2v.cpython-38.pyc │ ├── canvas.cpython-38.pyc │ ├── coco2voc.cpython-38.pyc │ ├── colorDialog.cpython-38.pyc │ ├── combobox.cpython-38.pyc │ ├── constants.cpython-38.pyc │ ├── create_ml_io.cpython-38.pyc │ ├── hashableQListWidgetItem.cpython-38.pyc │ ├── labelDialog.cpython-38.pyc │ ├── labelFile.cpython-38.pyc │ ├── pascal_voc_io.cpython-38.pyc │ ├── resources.cpython-38.pyc │ ├── settings.cpython-38.pyc │ ├── shape.cpython-38.pyc │ ├── stringBundle.cpython-38.pyc │ ├── toolBar.cpython-38.pyc │ ├── ustr.cpython-38.pyc │ ├── utils.cpython-38.pyc │ ├── v8train.cpython-38.pyc │ ├── yolo_io.cpython-38.pyc │ ├── yolov8_detect.cpython-38.pyc │ ├── yolov8_train.cpython-38.pyc │ └── zoomWidget.cpython-38.pyc ├── alertText.py ├── c2v.py ├── canvas.py ├── coco2voc.py ├── colorDialog.py ├── combobox.py ├── constants.py ├── create_ml_io.py ├── hashableQListWidgetItem.py ├── labelDialog.py ├── labelFile.py ├── pascal_voc_io.py ├── resources.py ├── settings.py ├── shape.py ├── stringBundle.py ├── toolBar.py ├── ustr.py ├── utils.py ├── v8train.py ├── xml2txt.py ├── yolo_io.py ├── yolov8_detect.py ├── yolov8_train.py └── zoomWidget.py ├── readme ├── README.jp.rst └── README.zh.rst ├── requirements └── requirements-linux-python3.txt ├── resources.py ├── resources.qrc ├── resources ├── icons │ ├── app.icns │ ├── app.png │ ├── app.svg │ ├── cancel.png │ ├── close.png │ ├── color.png │ ├── color_line.png │ ├── copy.png │ ├── delete.png │ ├── done.png │ ├── done.svg │ ├── edit.png │ ├── expert1.png │ ├── expert2.png │ ├── eye.png │ ├── feBlend-icon.png │ ├── file.png │ ├── fit-width.png │ ├── fit-window.png │ ├── fit.png │ ├── format_createml.png │ ├── format_voc.png │ ├── format_yolo.png │ ├── help.png │ ├── labels.png │ ├── labels.svg │ ├── new.png │ ├── next.png │ ├── objects.png │ ├── open.png │ ├── open.svg │ ├── prev.png │ ├── quit.png │ ├── resetall.png │ ├── save-as.png │ ├── save-as.svg │ ├── save.png │ ├── save.svg │ ├── undo-cross.png │ ├── undo.png │ ├── verify.png │ ├── zoom-in.png │ ├── zoom-out.png │ └── zoom.png └── strings │ ├── strings-ja-JP.properties │ ├── strings-zh-CN.properties │ ├── strings-zh-TW.properties │ └── strings.properties ├── setup.cfg ├── setup.py ├── tests ├── .gitignore ├── test.512.512.bmp ├── test_io.py ├── test_qt.py ├── test_settings.py ├── test_stringBundle.py ├── test_utils.py └── 臉書.jpg ├── tools ├── README.md └── label_to_csv.py └── venv ├── Lib └── site-packages │ ├── _distutils_hack │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ └── override.cpython-38.pyc │ └── override.py │ ├── distutils-precedence.pth │ ├── pip-23.1.2.dist-info │ ├── AUTHORS.txt │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pip-runner__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── __main__.cpython-38.pyc │ │ └── __pip-runner__.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 │ │ │ ├── main.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 │ │ │ │ ├── progress_bars.cpython-38.pyc │ │ │ │ ├── req_command.cpython-38.pyc │ │ │ │ ├── spinners.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 │ │ │ ├── progress_bars.py │ │ │ ├── req_command.py │ │ │ ├── spinners.py │ │ │ └── status_codes.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── cache.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 │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ ├── inspect.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 │ │ │ ├── cache.py │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── debug.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── index.py │ │ │ ├── inspect.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 │ │ │ │ └── sources.cpython-38.pyc │ │ │ ├── collector.py │ │ │ ├── package_finder.py │ │ │ └── sources.py │ │ ├── locations │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _distutils.cpython-38.pyc │ │ │ │ ├── _sysconfig.cpython-38.pyc │ │ │ │ └── base.cpython-38.pyc │ │ │ ├── _distutils.py │ │ │ ├── _sysconfig.py │ │ │ └── base.py │ │ ├── main.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _json.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ └── pkg_resources.cpython-38.pyc │ │ │ ├── _json.py │ │ │ ├── base.py │ │ │ ├── importlib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ │ ├── _dists.cpython-38.pyc │ │ │ │ │ └── _envs.cpython-38.pyc │ │ │ │ ├── _compat.py │ │ │ │ ├── _dists.py │ │ │ │ └── _envs.py │ │ │ └── pkg_resources.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── candidate.cpython-38.pyc │ │ │ │ ├── direct_url.cpython-38.pyc │ │ │ │ ├── format_control.cpython-38.pyc │ │ │ │ ├── index.cpython-38.pyc │ │ │ │ ├── installation_report.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 │ │ │ ├── direct_url.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ ├── installation_report.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 │ │ │ │ ├── lazy_wheel.cpython-38.pyc │ │ │ │ ├── session.cpython-38.pyc │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ └── xmlrpc.cpython-38.pyc │ │ │ ├── auth.py │ │ │ ├── cache.py │ │ │ ├── download.py │ │ │ ├── lazy_wheel.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 │ │ │ │ │ ├── build_tracker.cpython-38.pyc │ │ │ │ │ ├── metadata.cpython-38.pyc │ │ │ │ │ ├── metadata_editable.cpython-38.pyc │ │ │ │ │ ├── metadata_legacy.cpython-38.pyc │ │ │ │ │ ├── wheel.cpython-38.pyc │ │ │ │ │ ├── wheel_editable.cpython-38.pyc │ │ │ │ │ └── wheel_legacy.cpython-38.pyc │ │ │ │ ├── build_tracker.py │ │ │ │ ├── metadata.py │ │ │ │ ├── metadata_editable.py │ │ │ │ ├── metadata_legacy.py │ │ │ │ ├── wheel.py │ │ │ │ ├── wheel_editable.py │ │ │ │ └── wheel_legacy.py │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ ├── install │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── editable_legacy.cpython-38.pyc │ │ │ │ │ └── wheel.cpython-38.pyc │ │ │ │ ├── editable_legacy.py │ │ │ │ └── wheel.py │ │ │ └── prepare.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_uninstall.cpython-38.pyc │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ └── req_uninstall.py │ │ ├── resolution │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── base.cpython-38.pyc │ │ │ ├── base.py │ │ │ ├── legacy │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ └── resolver.py │ │ │ └── resolvelib │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── base.cpython-38.pyc │ │ │ │ ├── candidates.cpython-38.pyc │ │ │ │ ├── factory.cpython-38.pyc │ │ │ │ ├── found_candidates.cpython-38.pyc │ │ │ │ ├── provider.cpython-38.pyc │ │ │ │ ├── reporter.cpython-38.pyc │ │ │ │ ├── requirements.cpython-38.pyc │ │ │ │ └── resolver.cpython-38.pyc │ │ │ │ ├── base.py │ │ │ │ ├── candidates.py │ │ │ │ ├── factory.py │ │ │ │ ├── found_candidates.py │ │ │ │ ├── provider.py │ │ │ │ ├── reporter.py │ │ │ │ ├── requirements.py │ │ │ │ └── resolver.py │ │ ├── self_outdated_check.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _jaraco_text.cpython-38.pyc │ │ │ │ ├── _log.cpython-38.pyc │ │ │ │ ├── appdirs.cpython-38.pyc │ │ │ │ ├── compat.cpython-38.pyc │ │ │ │ ├── compatibility_tags.cpython-38.pyc │ │ │ │ ├── datetime.cpython-38.pyc │ │ │ │ ├── deprecation.cpython-38.pyc │ │ │ │ ├── direct_url_helpers.cpython-38.pyc │ │ │ │ ├── egg_link.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 │ │ │ │ ├── misc.cpython-38.pyc │ │ │ │ ├── models.cpython-38.pyc │ │ │ │ ├── packaging.cpython-38.pyc │ │ │ │ ├── setuptools_build.cpython-38.pyc │ │ │ │ ├── subprocess.cpython-38.pyc │ │ │ │ ├── temp_dir.cpython-38.pyc │ │ │ │ ├── unpacking.cpython-38.pyc │ │ │ │ ├── urls.cpython-38.pyc │ │ │ │ ├── virtualenv.cpython-38.pyc │ │ │ │ └── wheel.cpython-38.pyc │ │ │ ├── _jaraco_text.py │ │ │ ├── _log.py │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── compatibility_tags.py │ │ │ ├── datetime.py │ │ │ ├── deprecation.py │ │ │ ├── direct_url_helpers.py │ │ │ ├── egg_link.py │ │ │ ├── encoding.py │ │ │ ├── entrypoints.py │ │ │ ├── filesystem.py │ │ │ ├── filetypes.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── inject_securetransport.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── models.py │ │ │ ├── packaging.py │ │ │ ├── setuptools_build.py │ │ │ ├── subprocess.py │ │ │ ├── temp_dir.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 │ │ │ ├── six.cpython-38.pyc │ │ │ └── typing_extensions.cpython-38.pyc │ │ ├── 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 │ │ │ │ ├── codingstatemachinedict.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 │ │ │ │ ├── johabfreq.cpython-38.pyc │ │ │ │ ├── johabprober.cpython-38.pyc │ │ │ │ ├── jpcntx.cpython-38.pyc │ │ │ │ ├── langbulgarianmodel.cpython-38.pyc │ │ │ │ ├── langgreekmodel.cpython-38.pyc │ │ │ │ ├── langhebrewmodel.cpython-38.pyc │ │ │ │ ├── langhungarianmodel.cpython-38.pyc │ │ │ │ ├── langrussianmodel.cpython-38.pyc │ │ │ │ ├── langthaimodel.cpython-38.pyc │ │ │ │ ├── langturkishmodel.cpython-38.pyc │ │ │ │ ├── latin1prober.cpython-38.pyc │ │ │ │ ├── macromanprober.cpython-38.pyc │ │ │ │ ├── mbcharsetprober.cpython-38.pyc │ │ │ │ ├── mbcsgroupprober.cpython-38.pyc │ │ │ │ ├── mbcssm.cpython-38.pyc │ │ │ │ ├── resultdict.cpython-38.pyc │ │ │ │ ├── sbcharsetprober.cpython-38.pyc │ │ │ │ ├── sbcsgroupprober.cpython-38.pyc │ │ │ │ ├── sjisprober.cpython-38.pyc │ │ │ │ ├── universaldetector.cpython-38.pyc │ │ │ │ ├── utf1632prober.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 │ │ │ ├── codingstatemachinedict.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 │ │ │ ├── johabfreq.py │ │ │ ├── johabprober.py │ │ │ ├── jpcntx.py │ │ │ ├── langbulgarianmodel.py │ │ │ ├── langgreekmodel.py │ │ │ ├── langhebrewmodel.py │ │ │ ├── langhungarianmodel.py │ │ │ ├── langrussianmodel.py │ │ │ ├── langthaimodel.py │ │ │ ├── langturkishmodel.py │ │ │ ├── latin1prober.py │ │ │ ├── macromanprober.py │ │ │ ├── mbcharsetprober.py │ │ │ ├── mbcsgroupprober.py │ │ │ ├── mbcssm.py │ │ │ ├── metadata │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── languages.cpython-38.pyc │ │ │ │ └── languages.py │ │ │ ├── resultdict.py │ │ │ ├── sbcharsetprober.py │ │ │ ├── sbcsgroupprober.py │ │ │ ├── sjisprober.py │ │ │ ├── universaldetector.py │ │ │ ├── utf1632prober.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 │ │ │ ├── tests │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── ansi_test.cpython-38.pyc │ │ │ │ │ ├── ansitowin32_test.cpython-38.pyc │ │ │ │ │ ├── initialise_test.cpython-38.pyc │ │ │ │ │ ├── isatty_test.cpython-38.pyc │ │ │ │ │ ├── utils.cpython-38.pyc │ │ │ │ │ └── winterm_test.cpython-38.pyc │ │ │ │ ├── ansi_test.py │ │ │ │ ├── ansitowin32_test.py │ │ │ │ ├── initialise_test.py │ │ │ │ ├── isatty_test.py │ │ │ │ ├── utils.py │ │ │ │ └── winterm_test.py │ │ │ ├── win32.py │ │ │ └── winterm.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 │ │ │ ├── compat.py │ │ │ ├── database.py │ │ │ ├── index.py │ │ │ ├── locators.py │ │ │ ├── manifest.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── resources.py │ │ │ ├── scripts.py │ │ │ ├── t32.exe │ │ │ ├── t64-arm.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64-arm.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ ├── distro │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ └── distro.cpython-38.pyc │ │ │ └── distro.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 │ │ ├── msgpack │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── ext.cpython-38.pyc │ │ │ │ └── fallback.cpython-38.pyc │ │ │ ├── exceptions.py │ │ │ ├── ext.py │ │ │ └── fallback.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __about__.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _manylinux.cpython-38.pyc │ │ │ │ ├── _musllinux.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 │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pkg_resources │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── platformdirs │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ ├── android.cpython-38.pyc │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ ├── macos.cpython-38.pyc │ │ │ │ ├── unix.cpython-38.pyc │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ └── windows.cpython-38.pyc │ │ │ ├── android.py │ │ │ ├── api.py │ │ │ ├── macos.py │ │ │ ├── unix.py │ │ │ ├── version.py │ │ │ └── windows.py │ │ ├── pygments │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ ├── cmdline.cpython-38.pyc │ │ │ │ ├── console.cpython-38.pyc │ │ │ │ ├── filter.cpython-38.pyc │ │ │ │ ├── formatter.cpython-38.pyc │ │ │ │ ├── lexer.cpython-38.pyc │ │ │ │ ├── modeline.cpython-38.pyc │ │ │ │ ├── plugin.cpython-38.pyc │ │ │ │ ├── regexopt.cpython-38.pyc │ │ │ │ ├── scanner.cpython-38.pyc │ │ │ │ ├── sphinxext.cpython-38.pyc │ │ │ │ ├── style.cpython-38.pyc │ │ │ │ ├── token.cpython-38.pyc │ │ │ │ ├── unistring.cpython-38.pyc │ │ │ │ └── util.cpython-38.pyc │ │ │ ├── cmdline.py │ │ │ ├── console.py │ │ │ ├── filter.py │ │ │ ├── filters │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── formatter.py │ │ │ ├── formatters │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _mapping.cpython-38.pyc │ │ │ │ │ ├── bbcode.cpython-38.pyc │ │ │ │ │ ├── groff.cpython-38.pyc │ │ │ │ │ ├── html.cpython-38.pyc │ │ │ │ │ ├── img.cpython-38.pyc │ │ │ │ │ ├── irc.cpython-38.pyc │ │ │ │ │ ├── latex.cpython-38.pyc │ │ │ │ │ ├── other.cpython-38.pyc │ │ │ │ │ ├── pangomarkup.cpython-38.pyc │ │ │ │ │ ├── rtf.cpython-38.pyc │ │ │ │ │ ├── svg.cpython-38.pyc │ │ │ │ │ ├── terminal.cpython-38.pyc │ │ │ │ │ └── terminal256.cpython-38.pyc │ │ │ │ ├── _mapping.py │ │ │ │ ├── bbcode.py │ │ │ │ ├── groff.py │ │ │ │ ├── html.py │ │ │ │ ├── img.py │ │ │ │ ├── irc.py │ │ │ │ ├── latex.py │ │ │ │ ├── other.py │ │ │ │ ├── pangomarkup.py │ │ │ │ ├── rtf.py │ │ │ │ ├── svg.py │ │ │ │ ├── terminal.py │ │ │ │ └── terminal256.py │ │ │ ├── lexer.py │ │ │ ├── lexers │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── _mapping.cpython-38.pyc │ │ │ │ │ └── python.cpython-38.pyc │ │ │ │ ├── _mapping.py │ │ │ │ └── python.py │ │ │ ├── modeline.py │ │ │ ├── plugin.py │ │ │ ├── regexopt.py │ │ │ ├── scanner.py │ │ │ ├── sphinxext.py │ │ │ ├── style.py │ │ │ ├── styles │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── token.py │ │ │ ├── unistring.py │ │ │ └── util.py │ │ ├── pyparsing │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── actions.cpython-38.pyc │ │ │ │ ├── common.cpython-38.pyc │ │ │ │ ├── core.cpython-38.pyc │ │ │ │ ├── exceptions.cpython-38.pyc │ │ │ │ ├── helpers.cpython-38.pyc │ │ │ │ ├── results.cpython-38.pyc │ │ │ │ ├── testing.cpython-38.pyc │ │ │ │ ├── unicode.cpython-38.pyc │ │ │ │ └── util.cpython-38.pyc │ │ │ ├── actions.py │ │ │ ├── common.py │ │ │ ├── core.py │ │ │ ├── diagram │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ │ └── __init__.cpython-38.pyc │ │ │ ├── exceptions.py │ │ │ ├── helpers.py │ │ │ ├── results.py │ │ │ ├── testing.py │ │ │ ├── unicode.py │ │ │ └── util.py │ │ ├── pyproject_hooks │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ └── _impl.cpython-38.pyc │ │ │ ├── _compat.py │ │ │ ├── _impl.py │ │ │ └── _in_process │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ └── _in_process.cpython-38.pyc │ │ │ │ └── _in_process.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 │ │ ├── resolvelib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── providers.cpython-38.pyc │ │ │ │ ├── reporters.cpython-38.pyc │ │ │ │ ├── resolvers.cpython-38.pyc │ │ │ │ └── structs.cpython-38.pyc │ │ │ ├── compat │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── collections_abc.cpython-38.pyc │ │ │ │ └── collections_abc.py │ │ │ ├── providers.py │ │ │ ├── reporters.py │ │ │ ├── resolvers.py │ │ │ └── structs.py │ │ ├── rich │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ ├── _cell_widths.cpython-38.pyc │ │ │ │ ├── _emoji_codes.cpython-38.pyc │ │ │ │ ├── _emoji_replace.cpython-38.pyc │ │ │ │ ├── _export_format.cpython-38.pyc │ │ │ │ ├── _extension.cpython-38.pyc │ │ │ │ ├── _fileno.cpython-38.pyc │ │ │ │ ├── _inspect.cpython-38.pyc │ │ │ │ ├── _log_render.cpython-38.pyc │ │ │ │ ├── _loop.cpython-38.pyc │ │ │ │ ├── _null_file.cpython-38.pyc │ │ │ │ ├── _palettes.cpython-38.pyc │ │ │ │ ├── _pick.cpython-38.pyc │ │ │ │ ├── _ratio.cpython-38.pyc │ │ │ │ ├── _spinners.cpython-38.pyc │ │ │ │ ├── _stack.cpython-38.pyc │ │ │ │ ├── _timer.cpython-38.pyc │ │ │ │ ├── _win32_console.cpython-38.pyc │ │ │ │ ├── _windows.cpython-38.pyc │ │ │ │ ├── _windows_renderer.cpython-38.pyc │ │ │ │ ├── _wrap.cpython-38.pyc │ │ │ │ ├── abc.cpython-38.pyc │ │ │ │ ├── align.cpython-38.pyc │ │ │ │ ├── ansi.cpython-38.pyc │ │ │ │ ├── bar.cpython-38.pyc │ │ │ │ ├── box.cpython-38.pyc │ │ │ │ ├── cells.cpython-38.pyc │ │ │ │ ├── color.cpython-38.pyc │ │ │ │ ├── color_triplet.cpython-38.pyc │ │ │ │ ├── columns.cpython-38.pyc │ │ │ │ ├── console.cpython-38.pyc │ │ │ │ ├── constrain.cpython-38.pyc │ │ │ │ ├── containers.cpython-38.pyc │ │ │ │ ├── control.cpython-38.pyc │ │ │ │ ├── default_styles.cpython-38.pyc │ │ │ │ ├── diagnose.cpython-38.pyc │ │ │ │ ├── emoji.cpython-38.pyc │ │ │ │ ├── errors.cpython-38.pyc │ │ │ │ ├── file_proxy.cpython-38.pyc │ │ │ │ ├── filesize.cpython-38.pyc │ │ │ │ ├── highlighter.cpython-38.pyc │ │ │ │ ├── json.cpython-38.pyc │ │ │ │ ├── jupyter.cpython-38.pyc │ │ │ │ ├── layout.cpython-38.pyc │ │ │ │ ├── live.cpython-38.pyc │ │ │ │ ├── live_render.cpython-38.pyc │ │ │ │ ├── logging.cpython-38.pyc │ │ │ │ ├── markup.cpython-38.pyc │ │ │ │ ├── measure.cpython-38.pyc │ │ │ │ ├── padding.cpython-38.pyc │ │ │ │ ├── pager.cpython-38.pyc │ │ │ │ ├── palette.cpython-38.pyc │ │ │ │ ├── panel.cpython-38.pyc │ │ │ │ ├── pretty.cpython-38.pyc │ │ │ │ ├── progress.cpython-38.pyc │ │ │ │ ├── progress_bar.cpython-38.pyc │ │ │ │ ├── prompt.cpython-38.pyc │ │ │ │ ├── protocol.cpython-38.pyc │ │ │ │ ├── region.cpython-38.pyc │ │ │ │ ├── repr.cpython-38.pyc │ │ │ │ ├── rule.cpython-38.pyc │ │ │ │ ├── scope.cpython-38.pyc │ │ │ │ ├── screen.cpython-38.pyc │ │ │ │ ├── segment.cpython-38.pyc │ │ │ │ ├── spinner.cpython-38.pyc │ │ │ │ ├── status.cpython-38.pyc │ │ │ │ ├── style.cpython-38.pyc │ │ │ │ ├── styled.cpython-38.pyc │ │ │ │ ├── syntax.cpython-38.pyc │ │ │ │ ├── table.cpython-38.pyc │ │ │ │ ├── terminal_theme.cpython-38.pyc │ │ │ │ ├── text.cpython-38.pyc │ │ │ │ ├── theme.cpython-38.pyc │ │ │ │ ├── themes.cpython-38.pyc │ │ │ │ ├── traceback.cpython-38.pyc │ │ │ │ └── tree.cpython-38.pyc │ │ │ ├── _cell_widths.py │ │ │ ├── _emoji_codes.py │ │ │ ├── _emoji_replace.py │ │ │ ├── _export_format.py │ │ │ ├── _extension.py │ │ │ ├── _fileno.py │ │ │ ├── _inspect.py │ │ │ ├── _log_render.py │ │ │ ├── _loop.py │ │ │ ├── _null_file.py │ │ │ ├── _palettes.py │ │ │ ├── _pick.py │ │ │ ├── _ratio.py │ │ │ ├── _spinners.py │ │ │ ├── _stack.py │ │ │ ├── _timer.py │ │ │ ├── _win32_console.py │ │ │ ├── _windows.py │ │ │ ├── _windows_renderer.py │ │ │ ├── _wrap.py │ │ │ ├── abc.py │ │ │ ├── align.py │ │ │ ├── ansi.py │ │ │ ├── bar.py │ │ │ ├── box.py │ │ │ ├── cells.py │ │ │ ├── color.py │ │ │ ├── color_triplet.py │ │ │ ├── columns.py │ │ │ ├── console.py │ │ │ ├── constrain.py │ │ │ ├── containers.py │ │ │ ├── control.py │ │ │ ├── default_styles.py │ │ │ ├── diagnose.py │ │ │ ├── emoji.py │ │ │ ├── errors.py │ │ │ ├── file_proxy.py │ │ │ ├── filesize.py │ │ │ ├── highlighter.py │ │ │ ├── json.py │ │ │ ├── jupyter.py │ │ │ ├── layout.py │ │ │ ├── live.py │ │ │ ├── live_render.py │ │ │ ├── logging.py │ │ │ ├── markup.py │ │ │ ├── measure.py │ │ │ ├── padding.py │ │ │ ├── pager.py │ │ │ ├── palette.py │ │ │ ├── panel.py │ │ │ ├── pretty.py │ │ │ ├── progress.py │ │ │ ├── progress_bar.py │ │ │ ├── prompt.py │ │ │ ├── protocol.py │ │ │ ├── region.py │ │ │ ├── repr.py │ │ │ ├── rule.py │ │ │ ├── scope.py │ │ │ ├── screen.py │ │ │ ├── segment.py │ │ │ ├── spinner.py │ │ │ ├── status.py │ │ │ ├── style.py │ │ │ ├── styled.py │ │ │ ├── syntax.py │ │ │ ├── table.py │ │ │ ├── terminal_theme.py │ │ │ ├── text.py │ │ │ ├── theme.py │ │ │ ├── themes.py │ │ │ ├── traceback.py │ │ │ └── tree.py │ │ ├── six.py │ │ ├── tenacity │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _asyncio.cpython-38.pyc │ │ │ │ ├── _utils.cpython-38.pyc │ │ │ │ ├── after.cpython-38.pyc │ │ │ │ ├── before.cpython-38.pyc │ │ │ │ ├── before_sleep.cpython-38.pyc │ │ │ │ ├── nap.cpython-38.pyc │ │ │ │ ├── retry.cpython-38.pyc │ │ │ │ ├── stop.cpython-38.pyc │ │ │ │ ├── tornadoweb.cpython-38.pyc │ │ │ │ └── wait.cpython-38.pyc │ │ │ ├── _asyncio.py │ │ │ ├── _utils.py │ │ │ ├── after.py │ │ │ ├── before.py │ │ │ ├── before_sleep.py │ │ │ ├── nap.py │ │ │ ├── retry.py │ │ │ ├── stop.py │ │ │ ├── tornadoweb.py │ │ │ └── wait.py │ │ ├── tomli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _parser.cpython-38.pyc │ │ │ │ ├── _re.cpython-38.pyc │ │ │ │ └── _types.cpython-38.pyc │ │ │ ├── _parser.py │ │ │ ├── _re.py │ │ │ └── _types.py │ │ ├── typing_extensions.py │ │ ├── urllib3 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _collections.cpython-38.pyc │ │ │ │ ├── _version.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 │ │ │ ├── _version.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 │ │ │ ├── poolmanager.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ └── util │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── connection.cpython-38.pyc │ │ │ │ ├── proxy.cpython-38.pyc │ │ │ │ ├── queue.cpython-38.pyc │ │ │ │ ├── request.cpython-38.pyc │ │ │ │ ├── response.cpython-38.pyc │ │ │ │ ├── retry.cpython-38.pyc │ │ │ │ ├── ssl_.cpython-38.pyc │ │ │ │ ├── ssl_match_hostname.cpython-38.pyc │ │ │ │ ├── ssltransport.cpython-38.pyc │ │ │ │ ├── timeout.cpython-38.pyc │ │ │ │ ├── url.cpython-38.pyc │ │ │ │ └── wait.cpython-38.pyc │ │ │ │ ├── connection.py │ │ │ │ ├── proxy.py │ │ │ │ ├── queue.py │ │ │ │ ├── request.py │ │ │ │ ├── response.py │ │ │ │ ├── retry.py │ │ │ │ ├── ssl_.py │ │ │ │ ├── ssl_match_hostname.py │ │ │ │ ├── ssltransport.py │ │ │ │ ├── timeout.py │ │ │ │ ├── url.py │ │ │ │ └── wait.py │ │ ├── vendor.txt │ │ └── 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 │ └── py.typed │ ├── pkg_resources │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── _vendor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── typing_extensions.cpython-38.pyc │ │ │ └── zipp.cpython-38.pyc │ │ ├── importlib_resources │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _adapters.cpython-38.pyc │ │ │ │ ├── _common.cpython-38.pyc │ │ │ │ ├── _compat.cpython-38.pyc │ │ │ │ ├── _itertools.cpython-38.pyc │ │ │ │ ├── _legacy.cpython-38.pyc │ │ │ │ ├── abc.cpython-38.pyc │ │ │ │ ├── readers.cpython-38.pyc │ │ │ │ └── simple.cpython-38.pyc │ │ │ ├── _adapters.py │ │ │ ├── _common.py │ │ │ ├── _compat.py │ │ │ ├── _itertools.py │ │ │ ├── _legacy.py │ │ │ ├── abc.py │ │ │ ├── readers.py │ │ │ └── simple.py │ │ ├── jaraco │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── context.cpython-38.pyc │ │ │ │ └── functools.cpython-38.pyc │ │ │ ├── context.py │ │ │ ├── functools.py │ │ │ └── text │ │ │ │ ├── __init__.py │ │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-38.pyc │ │ ├── more_itertools │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── more.cpython-38.pyc │ │ │ │ └── recipes.cpython-38.pyc │ │ │ ├── more.py │ │ │ └── recipes.py │ │ ├── packaging │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── _elffile.cpython-38.pyc │ │ │ │ ├── _manylinux.cpython-38.pyc │ │ │ │ ├── _musllinux.cpython-38.pyc │ │ │ │ ├── _parser.cpython-38.pyc │ │ │ │ ├── _structures.cpython-38.pyc │ │ │ │ ├── _tokenizer.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 │ │ │ ├── _elffile.py │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _parser.py │ │ │ ├── _structures.py │ │ │ ├── _tokenizer.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── tags.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── platformdirs │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── __main__.cpython-38.pyc │ │ │ │ ├── android.cpython-38.pyc │ │ │ │ ├── api.cpython-38.pyc │ │ │ │ ├── macos.cpython-38.pyc │ │ │ │ ├── unix.cpython-38.pyc │ │ │ │ ├── version.cpython-38.pyc │ │ │ │ └── windows.cpython-38.pyc │ │ │ ├── android.py │ │ │ ├── api.py │ │ │ ├── macos.py │ │ │ ├── unix.py │ │ │ ├── version.py │ │ │ └── windows.py │ │ ├── typing_extensions.py │ │ └── zipp.py │ └── extern │ │ ├── __init__.py │ │ └── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── setuptools-67.8.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ └── setuptools │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── _entry_points.cpython-38.pyc │ ├── _imp.cpython-38.pyc │ ├── _importlib.cpython-38.pyc │ ├── _itertools.cpython-38.pyc │ ├── _normalization.cpython-38.pyc │ ├── _path.cpython-38.pyc │ ├── _reqs.cpython-38.pyc │ ├── archive_util.cpython-38.pyc │ ├── build_meta.cpython-38.pyc │ ├── dep_util.cpython-38.pyc │ ├── depends.cpython-38.pyc │ ├── discovery.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 │ ├── logging.cpython-38.pyc │ ├── monkey.cpython-38.pyc │ ├── msvc.cpython-38.pyc │ ├── namespaces.cpython-38.pyc │ ├── package_index.cpython-38.pyc │ ├── py312compat.cpython-38.pyc │ ├── py34compat.cpython-38.pyc │ ├── sandbox.cpython-38.pyc │ ├── unicode_utils.cpython-38.pyc │ ├── version.cpython-38.pyc │ ├── warnings.cpython-38.pyc │ ├── wheel.cpython-38.pyc │ └── windows_support.cpython-38.pyc │ ├── _distutils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _collections.cpython-38.pyc │ │ ├── _functools.cpython-38.pyc │ │ ├── _log.cpython-38.pyc │ │ ├── _macos_compat.cpython-38.pyc │ │ ├── _msvccompiler.cpython-38.pyc │ │ ├── archive_util.cpython-38.pyc │ │ ├── bcppcompiler.cpython-38.pyc │ │ ├── ccompiler.cpython-38.pyc │ │ ├── cmd.cpython-38.pyc │ │ ├── config.cpython-38.pyc │ │ ├── core.cpython-38.pyc │ │ ├── cygwinccompiler.cpython-38.pyc │ │ ├── debug.cpython-38.pyc │ │ ├── dep_util.cpython-38.pyc │ │ ├── dir_util.cpython-38.pyc │ │ ├── dist.cpython-38.pyc │ │ ├── errors.cpython-38.pyc │ │ ├── extension.cpython-38.pyc │ │ ├── fancy_getopt.cpython-38.pyc │ │ ├── file_util.cpython-38.pyc │ │ ├── filelist.cpython-38.pyc │ │ ├── log.cpython-38.pyc │ │ ├── msvc9compiler.cpython-38.pyc │ │ ├── msvccompiler.cpython-38.pyc │ │ ├── py38compat.cpython-38.pyc │ │ ├── py39compat.cpython-38.pyc │ │ ├── spawn.cpython-38.pyc │ │ ├── sysconfig.cpython-38.pyc │ │ ├── text_file.cpython-38.pyc │ │ ├── unixccompiler.cpython-38.pyc │ │ ├── util.cpython-38.pyc │ │ ├── version.cpython-38.pyc │ │ └── versionpredicate.cpython-38.pyc │ ├── _collections.py │ ├── _functools.py │ ├── _log.py │ ├── _macos_compat.py │ ├── _msvccompiler.py │ ├── archive_util.py │ ├── bcppcompiler.py │ ├── ccompiler.py │ ├── cmd.py │ ├── command │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _framework_compat.cpython-38.pyc │ │ │ ├── bdist.cpython-38.pyc │ │ │ ├── bdist_dumb.cpython-38.pyc │ │ │ ├── bdist_rpm.cpython-38.pyc │ │ │ ├── build.cpython-38.pyc │ │ │ ├── build_clib.cpython-38.pyc │ │ │ ├── build_ext.cpython-38.pyc │ │ │ ├── build_py.cpython-38.pyc │ │ │ ├── build_scripts.cpython-38.pyc │ │ │ ├── check.cpython-38.pyc │ │ │ ├── clean.cpython-38.pyc │ │ │ ├── config.cpython-38.pyc │ │ │ ├── install.cpython-38.pyc │ │ │ ├── install_data.cpython-38.pyc │ │ │ ├── install_egg_info.cpython-38.pyc │ │ │ ├── install_headers.cpython-38.pyc │ │ │ ├── install_lib.cpython-38.pyc │ │ │ ├── install_scripts.cpython-38.pyc │ │ │ ├── py37compat.cpython-38.pyc │ │ │ ├── register.cpython-38.pyc │ │ │ ├── sdist.cpython-38.pyc │ │ │ └── upload.cpython-38.pyc │ │ ├── _framework_compat.py │ │ ├── bdist.py │ │ ├── bdist_dumb.py │ │ ├── bdist_rpm.py │ │ ├── build.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── build_scripts.py │ │ ├── check.py │ │ ├── clean.py │ │ ├── config.py │ │ ├── install.py │ │ ├── install_data.py │ │ ├── install_egg_info.py │ │ ├── install_headers.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── py37compat.py │ │ ├── register.py │ │ ├── sdist.py │ │ └── upload.py │ ├── config.py │ ├── core.py │ ├── cygwinccompiler.py │ ├── debug.py │ ├── dep_util.py │ ├── dir_util.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── fancy_getopt.py │ ├── file_util.py │ ├── filelist.py │ ├── log.py │ ├── msvc9compiler.py │ ├── msvccompiler.py │ ├── py38compat.py │ ├── py39compat.py │ ├── spawn.py │ ├── sysconfig.py │ ├── text_file.py │ ├── unixccompiler.py │ ├── util.py │ ├── version.py │ └── versionpredicate.py │ ├── _entry_points.py │ ├── _imp.py │ ├── _importlib.py │ ├── _itertools.py │ ├── _normalization.py │ ├── _path.py │ ├── _reqs.py │ ├── _vendor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── ordered_set.cpython-38.pyc │ │ ├── typing_extensions.cpython-38.pyc │ │ └── zipp.cpython-38.pyc │ ├── importlib_metadata │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _adapters.cpython-38.pyc │ │ │ ├── _collections.cpython-38.pyc │ │ │ ├── _compat.cpython-38.pyc │ │ │ ├── _functools.cpython-38.pyc │ │ │ ├── _itertools.cpython-38.pyc │ │ │ ├── _meta.cpython-38.pyc │ │ │ ├── _py39compat.cpython-38.pyc │ │ │ └── _text.cpython-38.pyc │ │ ├── _adapters.py │ │ ├── _collections.py │ │ ├── _compat.py │ │ ├── _functools.py │ │ ├── _itertools.py │ │ ├── _meta.py │ │ ├── _py39compat.py │ │ └── _text.py │ ├── importlib_resources │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _adapters.cpython-38.pyc │ │ │ ├── _common.cpython-38.pyc │ │ │ ├── _compat.cpython-38.pyc │ │ │ ├── _itertools.cpython-38.pyc │ │ │ ├── _legacy.cpython-38.pyc │ │ │ ├── abc.cpython-38.pyc │ │ │ ├── readers.cpython-38.pyc │ │ │ └── simple.cpython-38.pyc │ │ ├── _adapters.py │ │ ├── _common.py │ │ ├── _compat.py │ │ ├── _itertools.py │ │ ├── _legacy.py │ │ ├── abc.py │ │ ├── readers.py │ │ └── simple.py │ ├── jaraco │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── context.cpython-38.pyc │ │ │ └── functools.cpython-38.pyc │ │ ├── context.py │ │ ├── functools.py │ │ └── text │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ └── __init__.cpython-38.pyc │ ├── more_itertools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── more.cpython-38.pyc │ │ │ └── recipes.cpython-38.pyc │ │ ├── more.py │ │ └── recipes.py │ ├── ordered_set.py │ ├── packaging │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _elffile.cpython-38.pyc │ │ │ ├── _manylinux.cpython-38.pyc │ │ │ ├── _musllinux.cpython-38.pyc │ │ │ ├── _parser.cpython-38.pyc │ │ │ ├── _structures.cpython-38.pyc │ │ │ ├── _tokenizer.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 │ │ ├── _elffile.py │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _parser.py │ │ ├── _structures.py │ │ ├── _tokenizer.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ ├── tomli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── _parser.cpython-38.pyc │ │ │ ├── _re.cpython-38.pyc │ │ │ └── _types.cpython-38.pyc │ │ ├── _parser.py │ │ ├── _re.py │ │ └── _types.py │ ├── typing_extensions.py │ └── zipp.py │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli-arm64.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 │ │ ├── build.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 │ │ ├── editable_wheel.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 │ ├── build.py │ ├── build_clib.py │ ├── build_ext.py │ ├── build_py.py │ ├── develop.py │ ├── dist_info.py │ ├── easy_install.py │ ├── editable_wheel.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 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── _apply_pyprojecttoml.cpython-38.pyc │ │ ├── expand.cpython-38.pyc │ │ ├── pyprojecttoml.cpython-38.pyc │ │ └── setupcfg.cpython-38.pyc │ ├── _apply_pyprojecttoml.py │ ├── _validate_pyproject │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── error_reporting.cpython-38.pyc │ │ │ ├── extra_validations.cpython-38.pyc │ │ │ ├── fastjsonschema_exceptions.cpython-38.pyc │ │ │ ├── fastjsonschema_validations.cpython-38.pyc │ │ │ └── formats.cpython-38.pyc │ │ ├── error_reporting.py │ │ ├── extra_validations.py │ │ ├── fastjsonschema_exceptions.py │ │ ├── fastjsonschema_validations.py │ │ └── formats.py │ ├── expand.py │ ├── pyprojecttoml.py │ └── setupcfg.py │ ├── dep_util.py │ ├── depends.py │ ├── discovery.py │ ├── dist.py │ ├── errors.py │ ├── extension.py │ ├── extern │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-38.pyc │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui-arm64.exe │ ├── gui.exe │ ├── installer.py │ ├── launch.py │ ├── logging.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── py312compat.py │ ├── py34compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── unicode_utils.py │ ├── version.py │ ├── warnings.py │ ├── wheel.py │ └── windows_support.py ├── Scripts ├── Activate.ps1 ├── activate ├── activate.bat ├── deactivate.bat ├── pip.exe ├── pip3.10.exe ├── pip3.8.exe ├── pip3.exe ├── python.exe └── pythonw.exe └── pyvenv.cfg /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- 1 | TzuTa Lin 2 | [LabelMe](http://labelme2.csail.mit.edu/Release3.0/index.php) 3 | Ryan Flynn 4 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/__init__.py -------------------------------------------------------------------------------- /__pycache__/labelImg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/__pycache__/labelImg.cpython-38.pyc -------------------------------------------------------------------------------- /data/predefined_classes.txt: -------------------------------------------------------------------------------- 1 | dog 2 | person 3 | cat 4 | tv 5 | car 6 | meatballs 7 | marinara sauce 8 | tomato soup 9 | chicken noodle soup 10 | french onion soup 11 | chicken breast 12 | ribs 13 | pulled pork 14 | hamburger 15 | cavity -------------------------------------------------------------------------------- /demo/cocotovoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/demo/cocotovoc.png -------------------------------------------------------------------------------- /demo/createyaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/demo/createyaml.png -------------------------------------------------------------------------------- /demo/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/demo/demo.jpg -------------------------------------------------------------------------------- /demo/demo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/demo/demo3.jpg -------------------------------------------------------------------------------- /demo/demo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/demo/demo4.jpg -------------------------------------------------------------------------------- /demo/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/demo/demo4.png -------------------------------------------------------------------------------- /demo/demo5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/demo/demo5.png -------------------------------------------------------------------------------- /demo/starttrain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/demo/starttrain.png -------------------------------------------------------------------------------- /demo/v8-annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/demo/v8-annotations.png -------------------------------------------------------------------------------- /issue_template.md: -------------------------------------------------------------------------------- 1 | 5 | 6 | - **OS:** 7 | - **PyQt version:** 8 | -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | __version_info__ = ('1', '8', '6') 2 | __version__ = '.'.join(__version_info__) 3 | -------------------------------------------------------------------------------- /libs/__pycache__/SonWindow.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/SonWindow.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/alertText.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/alertText.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/c2v.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/c2v.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/canvas.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/canvas.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/coco2voc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/coco2voc.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/colorDialog.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/colorDialog.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/combobox.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/combobox.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/constants.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/constants.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/create_ml_io.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/create_ml_io.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/hashableQListWidgetItem.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/hashableQListWidgetItem.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/labelDialog.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/labelDialog.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/labelFile.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/labelFile.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/pascal_voc_io.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/pascal_voc_io.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/resources.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/resources.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/shape.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/shape.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/stringBundle.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/stringBundle.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/toolBar.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/toolBar.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/ustr.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/ustr.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/v8train.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/v8train.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/yolo_io.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/yolo_io.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/yolov8_detect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/yolov8_detect.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/yolov8_train.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/yolov8_train.cpython-38.pyc -------------------------------------------------------------------------------- /libs/__pycache__/zoomWidget.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/libs/__pycache__/zoomWidget.cpython-38.pyc -------------------------------------------------------------------------------- /requirements/requirements-linux-python3.txt: -------------------------------------------------------------------------------- 1 | pyqt5==5.14.1 2 | lxml==4.6.3 3 | -------------------------------------------------------------------------------- /resources/icons/app.icns: -------------------------------------------------------------------------------- 1 | icns -------------------------------------------------------------------------------- /resources/icons/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/app.png -------------------------------------------------------------------------------- /resources/icons/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/cancel.png -------------------------------------------------------------------------------- /resources/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/close.png -------------------------------------------------------------------------------- /resources/icons/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/color.png -------------------------------------------------------------------------------- /resources/icons/color_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/color_line.png -------------------------------------------------------------------------------- /resources/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/copy.png -------------------------------------------------------------------------------- /resources/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/delete.png -------------------------------------------------------------------------------- /resources/icons/done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/done.png -------------------------------------------------------------------------------- /resources/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/edit.png -------------------------------------------------------------------------------- /resources/icons/expert1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/expert1.png -------------------------------------------------------------------------------- /resources/icons/expert2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/expert2.png -------------------------------------------------------------------------------- /resources/icons/eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/eye.png -------------------------------------------------------------------------------- /resources/icons/feBlend-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/feBlend-icon.png -------------------------------------------------------------------------------- /resources/icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/file.png -------------------------------------------------------------------------------- /resources/icons/fit-width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/fit-width.png -------------------------------------------------------------------------------- /resources/icons/fit-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/fit-window.png -------------------------------------------------------------------------------- /resources/icons/fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/fit.png -------------------------------------------------------------------------------- /resources/icons/format_createml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/format_createml.png -------------------------------------------------------------------------------- /resources/icons/format_voc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/format_voc.png -------------------------------------------------------------------------------- /resources/icons/format_yolo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/format_yolo.png -------------------------------------------------------------------------------- /resources/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/help.png -------------------------------------------------------------------------------- /resources/icons/labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/labels.png -------------------------------------------------------------------------------- /resources/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/new.png -------------------------------------------------------------------------------- /resources/icons/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/next.png -------------------------------------------------------------------------------- /resources/icons/objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/objects.png -------------------------------------------------------------------------------- /resources/icons/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/open.png -------------------------------------------------------------------------------- /resources/icons/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/prev.png -------------------------------------------------------------------------------- /resources/icons/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/quit.png -------------------------------------------------------------------------------- /resources/icons/resetall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/resetall.png -------------------------------------------------------------------------------- /resources/icons/save-as.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/save-as.png -------------------------------------------------------------------------------- /resources/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/save.png -------------------------------------------------------------------------------- /resources/icons/undo-cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/undo-cross.png -------------------------------------------------------------------------------- /resources/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/undo.png -------------------------------------------------------------------------------- /resources/icons/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/verify.png -------------------------------------------------------------------------------- /resources/icons/zoom-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/zoom-in.png -------------------------------------------------------------------------------- /resources/icons/zoom-out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/zoom-out.png -------------------------------------------------------------------------------- /resources/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/resources/icons/zoom.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bumpversion] 2 | commit = True 3 | tag = True 4 | 5 | [bumpversion:file:setup.py] 6 | 7 | [bdist_wheel] 8 | universal = 1 9 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | test.xml 2 | -------------------------------------------------------------------------------- /tests/test.512.512.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/tests/test.512.512.bmp -------------------------------------------------------------------------------- /tests/臉書.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/tests/臉書.jpg -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/_distutils_hack/override.py: -------------------------------------------------------------------------------- 1 | __import__('_distutils_hack').do_override() 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/distutils-precedence.pth: -------------------------------------------------------------------------------- 1 | import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'local') == 'local'; enabled and __import__('_distutils_hack').add_shim(); 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-23.1.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-23.1.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.37.1) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-23.1.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.10 = pip._internal.cli.main:main 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip-23.1.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-38.pyc -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | SUCCESS = 0 2 | ERROR = 1 3 | UNKNOWN_ERROR = 2 4 | VIRTUALENV_NOT_FOUND = 3 5 | PREVIOUS_BUILD_DIR_ERROR = 4 6 | NO_MATCHES_FOUND = 23 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py: -------------------------------------------------------------------------------- 1 | from ._dists import Distribution 2 | from ._envs import Environment 3 | 4 | __all__ = ["Distribution", "Environment"] 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/resolution/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __all__ = ["contents", "where"] 4 | __version__ = "2022.12.07" 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/colorama/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__main__.py: -------------------------------------------------------------------------------- 1 | from .distro import main 2 | 3 | if __name__ == "__main__": 4 | main() 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.4' 2 | 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/platformdirs/version.py: -------------------------------------------------------------------------------- 1 | # file generated by setuptools_scm 2 | # don't change, don't track in version control 3 | __version__ = version = '3.2.0' 4 | __version_tuple__ = version_tuple = (3, 2, 0) 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py: -------------------------------------------------------------------------------- 1 | __all__ = ("tomllib",) 2 | 3 | import sys 4 | 5 | if sys.version_info >= (3, 11): 6 | import tomllib 7 | else: 8 | from pip._vendor import tomli as tomllib 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py: -------------------------------------------------------------------------------- 1 | __all__ = ["Mapping", "Sequence"] 2 | 3 | try: 4 | from collections.abc import Mapping, Sequence 5 | except ImportError: 6 | from collections import Mapping, Sequence 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- 1 | from typing import NamedTuple 2 | 3 | 4 | class Region(NamedTuple): 5 | """Defines a rectangular region of the screen.""" 6 | 7 | x: int 8 | y: int 9 | width: int 10 | height: int 11 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- 1 | from .default_styles import DEFAULT_STYLES 2 | from .theme import Theme 3 | 4 | 5 | DEFAULT = Theme(DEFAULT_STYLES) 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.15" 3 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/zipp.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py: -------------------------------------------------------------------------------- 1 | """More routines for operating on iterables, beyond itertools""" 2 | 3 | from .more import * # noqa 4 | from .recipes import * # noqa 5 | 6 | __version__ = '9.0.0' 7 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/version.py: -------------------------------------------------------------------------------- 1 | # file generated by setuptools_scm 2 | # don't change, don't track in version control 3 | __version__ = version = '2.6.2' 4 | __version_tuple__ = version_tuple = (2, 6, 2) 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-67.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-67.8.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.40.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools-67.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | _distutils_hack 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/_entry_points.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/_importlib.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/_itertools.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_normalization.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/_normalization.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_path.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/_path.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/_reqs.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/discovery.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/discovery.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/logging.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/logging.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/py312compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/py312compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/warnings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/warnings.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/_log.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_log.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/_log.py: -------------------------------------------------------------------------------- 1 | import logging 2 | 3 | 4 | log = logging.getLogger() 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/debug.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | # If DISTUTILS_DEBUG is anything other than the empty string, we run in 4 | # debug mode. 5 | DEBUG = os.environ.get('DISTUTILS_DEBUG') 6 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_distutils/py38compat.py: -------------------------------------------------------------------------------- 1 | def aix_platform(osname, version, release): 2 | try: 3 | import _aix_support 4 | 5 | return _aix_support.aix_platform() 6 | except ImportError: 7 | pass 8 | return "{}-{}.{}".format(osname, version, release) 9 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_vendor/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_vendor/__pycache__/zipp.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py: -------------------------------------------------------------------------------- 1 | from .more import * # noqa 2 | from .recipes import * # noqa 3 | 4 | __version__ = '8.8.0' 5 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/cli-arm64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/build.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/config/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/config/__pycache__/expand.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/config/__pycache__/setupcfg.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui-arm64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/gui-arm64.exe -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Lib/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /venv/Lib/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- 1 | from ._importlib import metadata 2 | 3 | try: 4 | __version__ = metadata.version('setuptools') or '0.dev0+unknown' 5 | except Exception: 6 | __version__ = '0.dev0+unknown' 7 | -------------------------------------------------------------------------------- /venv/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Scripts/pip.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.10.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Scripts/pip3.10.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.8.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Scripts/pip3.8.exe -------------------------------------------------------------------------------- /venv/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Scripts/pip3.exe -------------------------------------------------------------------------------- /venv/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Scripts/python.exe -------------------------------------------------------------------------------- /venv/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peterpan1998/YOLOv8-based-Intelligent-Object-Detection-and-Annotation-System/ce8a01f99922821122c4ead2410f4dec09a4e656/venv/Scripts/pythonw.exe -------------------------------------------------------------------------------- /venv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Users\di7a6\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0 2 | include-system-site-packages = false 3 | version = 3.8.10 4 | --------------------------------------------------------------------------------