├── .DS_Store
├── ImgVideo
├── .DS_Store
├── 图片 1.png
├── 图片 2.png
├── 图片3.png
└── 演示视频.mp4
├── README.md
└── ai_detection
├── .DS_Store
├── .idea
├── .gitignore
├── .name
├── ai_detection.iml
├── inspectionProfiles
│ ├── Project_Default.xml
│ └── profiles_settings.xml
├── misc.xml
└── modules.xml
├── AI_Detection.py
├── AI_Detection_dialog.py
├── AI_Detection_dialog_base.ui
├── Makefile
├── README.html
├── README.txt
├── __init__.py
├── __pycache__
├── AI_Detection.cpython-37.pyc
├── AI_Detection_dialog.cpython-37.pyc
├── __init__.cpython-37.pyc
├── predict.cpython-37.pyc
└── resources.cpython-37.pyc
├── code.py
├── compile.bat
├── help
├── Makefile
├── make.bat
└── source
│ ├── conf.py
│ └── index.rst
├── i18n
└── af.ts
├── icon.png
├── metadata.txt
├── model
├── .DS_Store
└── deeplabv3
│ ├── .DS_Store
│ └── model
│ ├── .DS_Store
│ ├── __pycache__
│ ├── aspp.cpython-37.pyc
│ ├── deeplabv3.cpython-37.pyc
│ └── resnet.cpython-37.pyc
│ ├── aspp.py
│ ├── deeplabv3.py
│ └── resnet.py
├── pb_tool.cfg
├── plugin_upload.py
├── predict.py
├── pylintrc
├── resources.py
├── resources.qrc
├── scripts
├── compile-strings.sh
├── run-env-linux.sh
└── update-strings.sh
├── test
├── __init__.py
├── qgis_interface.py
├── tenbytenraster.asc
├── tenbytenraster.asc.aux.xml
├── tenbytenraster.keywords
├── tenbytenraster.lic
├── tenbytenraster.prj
├── tenbytenraster.qml
├── test_AI_Detection_dialog.py
├── test_init.py
├── test_qgis_environment.py
├── test_resources.py
├── test_translations.py
└── utilities.py
└── venv
├── .DS_Store
├── Lib
└── site-packages
│ ├── _distutils_hack
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ └── override.cpython-37.pyc
│ └── override.py
│ ├── distutils-precedence.pth
│ ├── pip-21.1.3.dist-info
│ ├── INSTALLER
│ ├── LICENSE.txt
│ ├── METADATA
│ ├── RECORD
│ ├── WHEEL
│ ├── entry_points.txt
│ └── top_level.txt
│ ├── pip
│ ├── __init__.py
│ ├── __main__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ └── __main__.cpython-37.pyc
│ ├── _internal
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-37.pyc
│ │ │ ├── build_env.cpython-37.pyc
│ │ │ ├── cache.cpython-37.pyc
│ │ │ ├── configuration.cpython-37.pyc
│ │ │ ├── exceptions.cpython-37.pyc
│ │ │ ├── main.cpython-37.pyc
│ │ │ ├── pyproject.cpython-37.pyc
│ │ │ ├── self_outdated_check.cpython-37.pyc
│ │ │ └── wheel_builder.cpython-37.pyc
│ │ ├── build_env.py
│ │ ├── cache.py
│ │ ├── cli
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── autocompletion.cpython-37.pyc
│ │ │ │ ├── base_command.cpython-37.pyc
│ │ │ │ ├── cmdoptions.cpython-37.pyc
│ │ │ │ ├── command_context.cpython-37.pyc
│ │ │ │ ├── main.cpython-37.pyc
│ │ │ │ ├── main_parser.cpython-37.pyc
│ │ │ │ ├── parser.cpython-37.pyc
│ │ │ │ ├── progress_bars.cpython-37.pyc
│ │ │ │ ├── req_command.cpython-37.pyc
│ │ │ │ ├── spinners.cpython-37.pyc
│ │ │ │ └── status_codes.cpython-37.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-37.pyc
│ │ │ │ ├── cache.cpython-37.pyc
│ │ │ │ ├── check.cpython-37.pyc
│ │ │ │ ├── completion.cpython-37.pyc
│ │ │ │ ├── configuration.cpython-37.pyc
│ │ │ │ ├── debug.cpython-37.pyc
│ │ │ │ ├── download.cpython-37.pyc
│ │ │ │ ├── freeze.cpython-37.pyc
│ │ │ │ ├── hash.cpython-37.pyc
│ │ │ │ ├── help.cpython-37.pyc
│ │ │ │ ├── install.cpython-37.pyc
│ │ │ │ ├── list.cpython-37.pyc
│ │ │ │ ├── search.cpython-37.pyc
│ │ │ │ ├── show.cpython-37.pyc
│ │ │ │ ├── uninstall.cpython-37.pyc
│ │ │ │ └── wheel.cpython-37.pyc
│ │ │ ├── cache.py
│ │ │ ├── check.py
│ │ │ ├── completion.py
│ │ │ ├── configuration.py
│ │ │ ├── debug.py
│ │ │ ├── download.py
│ │ │ ├── freeze.py
│ │ │ ├── hash.py
│ │ │ ├── help.py
│ │ │ ├── install.py
│ │ │ ├── list.py
│ │ │ ├── search.py
│ │ │ ├── show.py
│ │ │ ├── uninstall.py
│ │ │ └── wheel.py
│ │ ├── configuration.py
│ │ ├── distributions
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── base.cpython-37.pyc
│ │ │ │ ├── installed.cpython-37.pyc
│ │ │ │ ├── sdist.cpython-37.pyc
│ │ │ │ └── wheel.cpython-37.pyc
│ │ │ ├── base.py
│ │ │ ├── installed.py
│ │ │ ├── sdist.py
│ │ │ └── wheel.py
│ │ ├── exceptions.py
│ │ ├── index
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── collector.cpython-37.pyc
│ │ │ │ ├── package_finder.cpython-37.pyc
│ │ │ │ └── sources.cpython-37.pyc
│ │ │ ├── collector.py
│ │ │ ├── package_finder.py
│ │ │ └── sources.py
│ │ ├── locations
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── _distutils.cpython-37.pyc
│ │ │ │ ├── _sysconfig.cpython-37.pyc
│ │ │ │ └── base.cpython-37.pyc
│ │ │ ├── _distutils.py
│ │ │ ├── _sysconfig.py
│ │ │ └── base.py
│ │ ├── main.py
│ │ ├── metadata
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── base.cpython-37.pyc
│ │ │ │ └── pkg_resources.cpython-37.pyc
│ │ │ ├── base.py
│ │ │ └── pkg_resources.py
│ │ ├── models
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── candidate.cpython-37.pyc
│ │ │ │ ├── direct_url.cpython-37.pyc
│ │ │ │ ├── format_control.cpython-37.pyc
│ │ │ │ ├── index.cpython-37.pyc
│ │ │ │ ├── link.cpython-37.pyc
│ │ │ │ ├── scheme.cpython-37.pyc
│ │ │ │ ├── search_scope.cpython-37.pyc
│ │ │ │ ├── selection_prefs.cpython-37.pyc
│ │ │ │ ├── target_python.cpython-37.pyc
│ │ │ │ └── wheel.cpython-37.pyc
│ │ │ ├── candidate.py
│ │ │ ├── direct_url.py
│ │ │ ├── format_control.py
│ │ │ ├── index.py
│ │ │ ├── link.py
│ │ │ ├── scheme.py
│ │ │ ├── search_scope.py
│ │ │ ├── selection_prefs.py
│ │ │ ├── target_python.py
│ │ │ └── wheel.py
│ │ ├── network
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── auth.cpython-37.pyc
│ │ │ │ ├── cache.cpython-37.pyc
│ │ │ │ ├── download.cpython-37.pyc
│ │ │ │ ├── lazy_wheel.cpython-37.pyc
│ │ │ │ ├── session.cpython-37.pyc
│ │ │ │ ├── utils.cpython-37.pyc
│ │ │ │ └── xmlrpc.cpython-37.pyc
│ │ │ ├── auth.py
│ │ │ ├── cache.py
│ │ │ ├── download.py
│ │ │ ├── lazy_wheel.py
│ │ │ ├── session.py
│ │ │ ├── utils.py
│ │ │ └── xmlrpc.py
│ │ ├── operations
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── check.cpython-37.pyc
│ │ │ │ ├── freeze.cpython-37.pyc
│ │ │ │ └── prepare.cpython-37.pyc
│ │ │ ├── build
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── metadata.cpython-37.pyc
│ │ │ │ │ ├── metadata_legacy.cpython-37.pyc
│ │ │ │ │ ├── wheel.cpython-37.pyc
│ │ │ │ │ └── wheel_legacy.cpython-37.pyc
│ │ │ │ ├── metadata.py
│ │ │ │ ├── metadata_legacy.py
│ │ │ │ ├── wheel.py
│ │ │ │ └── wheel_legacy.py
│ │ │ ├── check.py
│ │ │ ├── freeze.py
│ │ │ ├── install
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── editable_legacy.cpython-37.pyc
│ │ │ │ │ ├── legacy.cpython-37.pyc
│ │ │ │ │ └── wheel.cpython-37.pyc
│ │ │ │ ├── editable_legacy.py
│ │ │ │ ├── legacy.py
│ │ │ │ └── wheel.py
│ │ │ └── prepare.py
│ │ ├── pyproject.py
│ │ ├── req
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── constructors.cpython-37.pyc
│ │ │ │ ├── req_file.cpython-37.pyc
│ │ │ │ ├── req_install.cpython-37.pyc
│ │ │ │ ├── req_set.cpython-37.pyc
│ │ │ │ ├── req_tracker.cpython-37.pyc
│ │ │ │ └── req_uninstall.cpython-37.pyc
│ │ │ ├── constructors.py
│ │ │ ├── req_file.py
│ │ │ ├── req_install.py
│ │ │ ├── req_set.py
│ │ │ ├── req_tracker.py
│ │ │ └── req_uninstall.py
│ │ ├── resolution
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ └── base.cpython-37.pyc
│ │ │ ├── base.py
│ │ │ ├── legacy
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ └── resolver.cpython-37.pyc
│ │ │ │ └── resolver.py
│ │ │ └── resolvelib
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── base.cpython-37.pyc
│ │ │ │ ├── candidates.cpython-37.pyc
│ │ │ │ ├── factory.cpython-37.pyc
│ │ │ │ ├── found_candidates.cpython-37.pyc
│ │ │ │ ├── provider.cpython-37.pyc
│ │ │ │ ├── reporter.cpython-37.pyc
│ │ │ │ ├── requirements.cpython-37.pyc
│ │ │ │ └── resolver.cpython-37.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-37.pyc
│ │ │ │ ├── appdirs.cpython-37.pyc
│ │ │ │ ├── compat.cpython-37.pyc
│ │ │ │ ├── compatibility_tags.cpython-37.pyc
│ │ │ │ ├── datetime.cpython-37.pyc
│ │ │ │ ├── deprecation.cpython-37.pyc
│ │ │ │ ├── direct_url_helpers.cpython-37.pyc
│ │ │ │ ├── distutils_args.cpython-37.pyc
│ │ │ │ ├── encoding.cpython-37.pyc
│ │ │ │ ├── entrypoints.cpython-37.pyc
│ │ │ │ ├── filesystem.cpython-37.pyc
│ │ │ │ ├── filetypes.cpython-37.pyc
│ │ │ │ ├── glibc.cpython-37.pyc
│ │ │ │ ├── hashes.cpython-37.pyc
│ │ │ │ ├── inject_securetransport.cpython-37.pyc
│ │ │ │ ├── logging.cpython-37.pyc
│ │ │ │ ├── misc.cpython-37.pyc
│ │ │ │ ├── models.cpython-37.pyc
│ │ │ │ ├── packaging.cpython-37.pyc
│ │ │ │ ├── parallel.cpython-37.pyc
│ │ │ │ ├── pkg_resources.cpython-37.pyc
│ │ │ │ ├── setuptools_build.cpython-37.pyc
│ │ │ │ ├── subprocess.cpython-37.pyc
│ │ │ │ ├── temp_dir.cpython-37.pyc
│ │ │ │ ├── unpacking.cpython-37.pyc
│ │ │ │ ├── urls.cpython-37.pyc
│ │ │ │ ├── virtualenv.cpython-37.pyc
│ │ │ │ └── wheel.cpython-37.pyc
│ │ │ ├── appdirs.py
│ │ │ ├── compat.py
│ │ │ ├── compatibility_tags.py
│ │ │ ├── datetime.py
│ │ │ ├── deprecation.py
│ │ │ ├── direct_url_helpers.py
│ │ │ ├── distutils_args.py
│ │ │ ├── encoding.py
│ │ │ ├── entrypoints.py
│ │ │ ├── filesystem.py
│ │ │ ├── filetypes.py
│ │ │ ├── glibc.py
│ │ │ ├── hashes.py
│ │ │ ├── inject_securetransport.py
│ │ │ ├── logging.py
│ │ │ ├── misc.py
│ │ │ ├── models.py
│ │ │ ├── packaging.py
│ │ │ ├── parallel.py
│ │ │ ├── pkg_resources.py
│ │ │ ├── setuptools_build.py
│ │ │ ├── subprocess.py
│ │ │ ├── temp_dir.py
│ │ │ ├── unpacking.py
│ │ │ ├── urls.py
│ │ │ ├── virtualenv.py
│ │ │ └── wheel.py
│ │ ├── vcs
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── bazaar.cpython-37.pyc
│ │ │ │ ├── git.cpython-37.pyc
│ │ │ │ ├── mercurial.cpython-37.pyc
│ │ │ │ ├── subversion.cpython-37.pyc
│ │ │ │ └── versioncontrol.cpython-37.pyc
│ │ │ ├── bazaar.py
│ │ │ ├── git.py
│ │ │ ├── mercurial.py
│ │ │ ├── subversion.py
│ │ │ └── versioncontrol.py
│ │ └── wheel_builder.py
│ ├── _vendor
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-37.pyc
│ │ │ ├── appdirs.cpython-37.pyc
│ │ │ ├── distro.cpython-37.pyc
│ │ │ ├── pyparsing.cpython-37.pyc
│ │ │ └── six.cpython-37.pyc
│ │ ├── appdirs.py
│ │ ├── cachecontrol
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── _cmd.cpython-37.pyc
│ │ │ │ ├── adapter.cpython-37.pyc
│ │ │ │ ├── cache.cpython-37.pyc
│ │ │ │ ├── compat.cpython-37.pyc
│ │ │ │ ├── controller.cpython-37.pyc
│ │ │ │ ├── filewrapper.cpython-37.pyc
│ │ │ │ ├── heuristics.cpython-37.pyc
│ │ │ │ ├── serialize.cpython-37.pyc
│ │ │ │ └── wrapper.cpython-37.pyc
│ │ │ ├── _cmd.py
│ │ │ ├── adapter.py
│ │ │ ├── cache.py
│ │ │ ├── caches
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── file_cache.cpython-37.pyc
│ │ │ │ │ └── redis_cache.cpython-37.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-37.pyc
│ │ │ │ ├── __main__.cpython-37.pyc
│ │ │ │ └── core.cpython-37.pyc
│ │ │ ├── cacert.pem
│ │ │ └── core.py
│ │ ├── chardet
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── big5freq.cpython-37.pyc
│ │ │ │ ├── big5prober.cpython-37.pyc
│ │ │ │ ├── chardistribution.cpython-37.pyc
│ │ │ │ ├── charsetgroupprober.cpython-37.pyc
│ │ │ │ ├── charsetprober.cpython-37.pyc
│ │ │ │ ├── codingstatemachine.cpython-37.pyc
│ │ │ │ ├── compat.cpython-37.pyc
│ │ │ │ ├── cp949prober.cpython-37.pyc
│ │ │ │ ├── enums.cpython-37.pyc
│ │ │ │ ├── escprober.cpython-37.pyc
│ │ │ │ ├── escsm.cpython-37.pyc
│ │ │ │ ├── eucjpprober.cpython-37.pyc
│ │ │ │ ├── euckrfreq.cpython-37.pyc
│ │ │ │ ├── euckrprober.cpython-37.pyc
│ │ │ │ ├── euctwfreq.cpython-37.pyc
│ │ │ │ ├── euctwprober.cpython-37.pyc
│ │ │ │ ├── gb2312freq.cpython-37.pyc
│ │ │ │ ├── gb2312prober.cpython-37.pyc
│ │ │ │ ├── hebrewprober.cpython-37.pyc
│ │ │ │ ├── jisfreq.cpython-37.pyc
│ │ │ │ ├── jpcntx.cpython-37.pyc
│ │ │ │ ├── langbulgarianmodel.cpython-37.pyc
│ │ │ │ ├── langgreekmodel.cpython-37.pyc
│ │ │ │ ├── langhebrewmodel.cpython-37.pyc
│ │ │ │ ├── langhungarianmodel.cpython-37.pyc
│ │ │ │ ├── langrussianmodel.cpython-37.pyc
│ │ │ │ ├── langthaimodel.cpython-37.pyc
│ │ │ │ ├── langturkishmodel.cpython-37.pyc
│ │ │ │ ├── latin1prober.cpython-37.pyc
│ │ │ │ ├── mbcharsetprober.cpython-37.pyc
│ │ │ │ ├── mbcsgroupprober.cpython-37.pyc
│ │ │ │ ├── mbcssm.cpython-37.pyc
│ │ │ │ ├── sbcharsetprober.cpython-37.pyc
│ │ │ │ ├── sbcsgroupprober.cpython-37.pyc
│ │ │ │ ├── sjisprober.cpython-37.pyc
│ │ │ │ ├── universaldetector.cpython-37.pyc
│ │ │ │ ├── utf8prober.cpython-37.pyc
│ │ │ │ └── version.cpython-37.pyc
│ │ │ ├── big5freq.py
│ │ │ ├── big5prober.py
│ │ │ ├── chardistribution.py
│ │ │ ├── charsetgroupprober.py
│ │ │ ├── charsetprober.py
│ │ │ ├── cli
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ └── chardetect.cpython-37.pyc
│ │ │ │ └── chardetect.py
│ │ │ ├── codingstatemachine.py
│ │ │ ├── compat.py
│ │ │ ├── cp949prober.py
│ │ │ ├── enums.py
│ │ │ ├── escprober.py
│ │ │ ├── escsm.py
│ │ │ ├── eucjpprober.py
│ │ │ ├── euckrfreq.py
│ │ │ ├── euckrprober.py
│ │ │ ├── euctwfreq.py
│ │ │ ├── euctwprober.py
│ │ │ ├── gb2312freq.py
│ │ │ ├── gb2312prober.py
│ │ │ ├── hebrewprober.py
│ │ │ ├── jisfreq.py
│ │ │ ├── jpcntx.py
│ │ │ ├── langbulgarianmodel.py
│ │ │ ├── langgreekmodel.py
│ │ │ ├── langhebrewmodel.py
│ │ │ ├── langhungarianmodel.py
│ │ │ ├── langrussianmodel.py
│ │ │ ├── langthaimodel.py
│ │ │ ├── langturkishmodel.py
│ │ │ ├── latin1prober.py
│ │ │ ├── mbcharsetprober.py
│ │ │ ├── mbcsgroupprober.py
│ │ │ ├── mbcssm.py
│ │ │ ├── metadata
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ └── languages.cpython-37.pyc
│ │ │ │ └── languages.py
│ │ │ ├── sbcharsetprober.py
│ │ │ ├── sbcsgroupprober.py
│ │ │ ├── sjisprober.py
│ │ │ ├── universaldetector.py
│ │ │ ├── utf8prober.py
│ │ │ └── version.py
│ │ ├── colorama
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── ansi.cpython-37.pyc
│ │ │ │ ├── ansitowin32.cpython-37.pyc
│ │ │ │ ├── initialise.cpython-37.pyc
│ │ │ │ ├── win32.cpython-37.pyc
│ │ │ │ └── winterm.cpython-37.pyc
│ │ │ ├── ansi.py
│ │ │ ├── ansitowin32.py
│ │ │ ├── initialise.py
│ │ │ ├── win32.py
│ │ │ └── winterm.py
│ │ ├── distlib
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── compat.cpython-37.pyc
│ │ │ │ ├── database.cpython-37.pyc
│ │ │ │ ├── index.cpython-37.pyc
│ │ │ │ ├── locators.cpython-37.pyc
│ │ │ │ ├── manifest.cpython-37.pyc
│ │ │ │ ├── markers.cpython-37.pyc
│ │ │ │ ├── metadata.cpython-37.pyc
│ │ │ │ ├── resources.cpython-37.pyc
│ │ │ │ ├── scripts.cpython-37.pyc
│ │ │ │ ├── util.cpython-37.pyc
│ │ │ │ ├── version.cpython-37.pyc
│ │ │ │ └── wheel.cpython-37.pyc
│ │ │ ├── _backport
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── misc.cpython-37.pyc
│ │ │ │ │ ├── shutil.cpython-37.pyc
│ │ │ │ │ ├── sysconfig.cpython-37.pyc
│ │ │ │ │ └── tarfile.cpython-37.pyc
│ │ │ │ ├── misc.py
│ │ │ │ ├── shutil.py
│ │ │ │ ├── sysconfig.cfg
│ │ │ │ ├── sysconfig.py
│ │ │ │ └── tarfile.py
│ │ │ ├── compat.py
│ │ │ ├── database.py
│ │ │ ├── index.py
│ │ │ ├── locators.py
│ │ │ ├── manifest.py
│ │ │ ├── markers.py
│ │ │ ├── metadata.py
│ │ │ ├── resources.py
│ │ │ ├── scripts.py
│ │ │ ├── t32.exe
│ │ │ ├── t64.exe
│ │ │ ├── util.py
│ │ │ ├── version.py
│ │ │ ├── w32.exe
│ │ │ ├── w64.exe
│ │ │ └── wheel.py
│ │ ├── distro.py
│ │ ├── html5lib
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── _ihatexml.cpython-37.pyc
│ │ │ │ ├── _inputstream.cpython-37.pyc
│ │ │ │ ├── _tokenizer.cpython-37.pyc
│ │ │ │ ├── _utils.cpython-37.pyc
│ │ │ │ ├── constants.cpython-37.pyc
│ │ │ │ ├── html5parser.cpython-37.pyc
│ │ │ │ └── serializer.cpython-37.pyc
│ │ │ ├── _ihatexml.py
│ │ │ ├── _inputstream.py
│ │ │ ├── _tokenizer.py
│ │ │ ├── _trie
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── _base.cpython-37.pyc
│ │ │ │ │ └── py.cpython-37.pyc
│ │ │ │ ├── _base.py
│ │ │ │ └── py.py
│ │ │ ├── _utils.py
│ │ │ ├── constants.py
│ │ │ ├── filters
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── alphabeticalattributes.cpython-37.pyc
│ │ │ │ │ ├── base.cpython-37.pyc
│ │ │ │ │ ├── inject_meta_charset.cpython-37.pyc
│ │ │ │ │ ├── lint.cpython-37.pyc
│ │ │ │ │ ├── optionaltags.cpython-37.pyc
│ │ │ │ │ ├── sanitizer.cpython-37.pyc
│ │ │ │ │ └── whitespace.cpython-37.pyc
│ │ │ │ ├── alphabeticalattributes.py
│ │ │ │ ├── base.py
│ │ │ │ ├── inject_meta_charset.py
│ │ │ │ ├── lint.py
│ │ │ │ ├── optionaltags.py
│ │ │ │ ├── sanitizer.py
│ │ │ │ └── whitespace.py
│ │ │ ├── html5parser.py
│ │ │ ├── serializer.py
│ │ │ ├── treeadapters
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── genshi.cpython-37.pyc
│ │ │ │ │ └── sax.cpython-37.pyc
│ │ │ │ ├── genshi.py
│ │ │ │ └── sax.py
│ │ │ ├── treebuilders
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── base.cpython-37.pyc
│ │ │ │ │ ├── dom.cpython-37.pyc
│ │ │ │ │ ├── etree.cpython-37.pyc
│ │ │ │ │ └── etree_lxml.cpython-37.pyc
│ │ │ │ ├── base.py
│ │ │ │ ├── dom.py
│ │ │ │ ├── etree.py
│ │ │ │ └── etree_lxml.py
│ │ │ └── treewalkers
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── base.cpython-37.pyc
│ │ │ │ ├── dom.cpython-37.pyc
│ │ │ │ ├── etree.cpython-37.pyc
│ │ │ │ ├── etree_lxml.cpython-37.pyc
│ │ │ │ └── genshi.cpython-37.pyc
│ │ │ │ ├── base.py
│ │ │ │ ├── dom.py
│ │ │ │ ├── etree.py
│ │ │ │ ├── etree_lxml.py
│ │ │ │ └── genshi.py
│ │ ├── idna
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── codec.cpython-37.pyc
│ │ │ │ ├── compat.cpython-37.pyc
│ │ │ │ ├── core.cpython-37.pyc
│ │ │ │ ├── idnadata.cpython-37.pyc
│ │ │ │ ├── intranges.cpython-37.pyc
│ │ │ │ ├── package_data.cpython-37.pyc
│ │ │ │ └── uts46data.cpython-37.pyc
│ │ │ ├── codec.py
│ │ │ ├── compat.py
│ │ │ ├── core.py
│ │ │ ├── idnadata.py
│ │ │ ├── intranges.py
│ │ │ ├── package_data.py
│ │ │ └── uts46data.py
│ │ ├── msgpack
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── _version.cpython-37.pyc
│ │ │ │ ├── exceptions.cpython-37.pyc
│ │ │ │ ├── ext.cpython-37.pyc
│ │ │ │ └── fallback.cpython-37.pyc
│ │ │ ├── _version.py
│ │ │ ├── exceptions.py
│ │ │ ├── ext.py
│ │ │ └── fallback.py
│ │ ├── packaging
│ │ │ ├── __about__.py
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __about__.cpython-37.pyc
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── _compat.cpython-37.pyc
│ │ │ │ ├── _structures.cpython-37.pyc
│ │ │ │ ├── _typing.cpython-37.pyc
│ │ │ │ ├── markers.cpython-37.pyc
│ │ │ │ ├── requirements.cpython-37.pyc
│ │ │ │ ├── specifiers.cpython-37.pyc
│ │ │ │ ├── tags.cpython-37.pyc
│ │ │ │ ├── utils.cpython-37.pyc
│ │ │ │ └── version.cpython-37.pyc
│ │ │ ├── _compat.py
│ │ │ ├── _structures.py
│ │ │ ├── _typing.py
│ │ │ ├── markers.py
│ │ │ ├── requirements.py
│ │ │ ├── specifiers.py
│ │ │ ├── tags.py
│ │ │ ├── utils.py
│ │ │ └── version.py
│ │ ├── pep517
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── build.cpython-37.pyc
│ │ │ │ ├── check.cpython-37.pyc
│ │ │ │ ├── colorlog.cpython-37.pyc
│ │ │ │ ├── compat.cpython-37.pyc
│ │ │ │ ├── dirtools.cpython-37.pyc
│ │ │ │ ├── envbuild.cpython-37.pyc
│ │ │ │ ├── meta.cpython-37.pyc
│ │ │ │ └── wrappers.cpython-37.pyc
│ │ │ ├── build.py
│ │ │ ├── check.py
│ │ │ ├── colorlog.py
│ │ │ ├── compat.py
│ │ │ ├── dirtools.py
│ │ │ ├── envbuild.py
│ │ │ ├── in_process
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ └── _in_process.cpython-37.pyc
│ │ │ │ └── _in_process.py
│ │ │ ├── meta.py
│ │ │ └── wrappers.py
│ │ ├── pkg_resources
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ └── py31compat.cpython-37.pyc
│ │ │ └── py31compat.py
│ │ ├── progress
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── bar.cpython-37.pyc
│ │ │ │ ├── counter.cpython-37.pyc
│ │ │ │ └── spinner.cpython-37.pyc
│ │ │ ├── bar.py
│ │ │ ├── counter.py
│ │ │ └── spinner.py
│ │ ├── pyparsing.py
│ │ ├── requests
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── __version__.cpython-37.pyc
│ │ │ │ ├── _internal_utils.cpython-37.pyc
│ │ │ │ ├── adapters.cpython-37.pyc
│ │ │ │ ├── api.cpython-37.pyc
│ │ │ │ ├── auth.cpython-37.pyc
│ │ │ │ ├── certs.cpython-37.pyc
│ │ │ │ ├── compat.cpython-37.pyc
│ │ │ │ ├── cookies.cpython-37.pyc
│ │ │ │ ├── exceptions.cpython-37.pyc
│ │ │ │ ├── help.cpython-37.pyc
│ │ │ │ ├── hooks.cpython-37.pyc
│ │ │ │ ├── models.cpython-37.pyc
│ │ │ │ ├── packages.cpython-37.pyc
│ │ │ │ ├── sessions.cpython-37.pyc
│ │ │ │ ├── status_codes.cpython-37.pyc
│ │ │ │ ├── structures.cpython-37.pyc
│ │ │ │ └── utils.cpython-37.pyc
│ │ │ ├── __version__.py
│ │ │ ├── _internal_utils.py
│ │ │ ├── adapters.py
│ │ │ ├── api.py
│ │ │ ├── auth.py
│ │ │ ├── certs.py
│ │ │ ├── compat.py
│ │ │ ├── cookies.py
│ │ │ ├── exceptions.py
│ │ │ ├── help.py
│ │ │ ├── hooks.py
│ │ │ ├── models.py
│ │ │ ├── packages.py
│ │ │ ├── sessions.py
│ │ │ ├── status_codes.py
│ │ │ ├── structures.py
│ │ │ └── utils.py
│ │ ├── resolvelib
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── providers.cpython-37.pyc
│ │ │ │ ├── reporters.cpython-37.pyc
│ │ │ │ ├── resolvers.cpython-37.pyc
│ │ │ │ └── structs.cpython-37.pyc
│ │ │ ├── compat
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ └── collections_abc.cpython-37.pyc
│ │ │ │ └── collections_abc.py
│ │ │ ├── providers.py
│ │ │ ├── reporters.py
│ │ │ ├── resolvers.py
│ │ │ └── structs.py
│ │ ├── six.py
│ │ ├── tenacity
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── _asyncio.cpython-37.pyc
│ │ │ │ ├── _utils.cpython-37.pyc
│ │ │ │ ├── after.cpython-37.pyc
│ │ │ │ ├── before.cpython-37.pyc
│ │ │ │ ├── before_sleep.cpython-37.pyc
│ │ │ │ ├── compat.cpython-37.pyc
│ │ │ │ ├── nap.cpython-37.pyc
│ │ │ │ ├── retry.cpython-37.pyc
│ │ │ │ ├── stop.cpython-37.pyc
│ │ │ │ ├── tornadoweb.cpython-37.pyc
│ │ │ │ └── wait.cpython-37.pyc
│ │ │ ├── _asyncio.py
│ │ │ ├── _utils.py
│ │ │ ├── after.py
│ │ │ ├── before.py
│ │ │ ├── before_sleep.py
│ │ │ ├── compat.py
│ │ │ ├── nap.py
│ │ │ ├── retry.py
│ │ │ ├── stop.py
│ │ │ ├── tornadoweb.py
│ │ │ └── wait.py
│ │ ├── toml
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── decoder.cpython-37.pyc
│ │ │ │ ├── encoder.cpython-37.pyc
│ │ │ │ ├── ordered.cpython-37.pyc
│ │ │ │ └── tz.cpython-37.pyc
│ │ │ ├── decoder.py
│ │ │ ├── encoder.py
│ │ │ ├── ordered.py
│ │ │ └── tz.py
│ │ ├── urllib3
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── _collections.cpython-37.pyc
│ │ │ │ ├── _version.cpython-37.pyc
│ │ │ │ ├── connection.cpython-37.pyc
│ │ │ │ ├── connectionpool.cpython-37.pyc
│ │ │ │ ├── exceptions.cpython-37.pyc
│ │ │ │ ├── fields.cpython-37.pyc
│ │ │ │ ├── filepost.cpython-37.pyc
│ │ │ │ ├── poolmanager.cpython-37.pyc
│ │ │ │ ├── request.cpython-37.pyc
│ │ │ │ └── response.cpython-37.pyc
│ │ │ ├── _collections.py
│ │ │ ├── _version.py
│ │ │ ├── connection.py
│ │ │ ├── connectionpool.py
│ │ │ ├── contrib
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ ├── _appengine_environ.cpython-37.pyc
│ │ │ │ │ ├── appengine.cpython-37.pyc
│ │ │ │ │ ├── ntlmpool.cpython-37.pyc
│ │ │ │ │ ├── pyopenssl.cpython-37.pyc
│ │ │ │ │ ├── securetransport.cpython-37.pyc
│ │ │ │ │ └── socks.cpython-37.pyc
│ │ │ │ ├── _appengine_environ.py
│ │ │ │ ├── _securetransport
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ ├── bindings.cpython-37.pyc
│ │ │ │ │ │ └── low_level.cpython-37.pyc
│ │ │ │ │ ├── bindings.py
│ │ │ │ │ └── low_level.py
│ │ │ │ ├── appengine.py
│ │ │ │ ├── ntlmpool.py
│ │ │ │ ├── pyopenssl.py
│ │ │ │ ├── securetransport.py
│ │ │ │ └── socks.py
│ │ │ ├── exceptions.py
│ │ │ ├── fields.py
│ │ │ ├── filepost.py
│ │ │ ├── packages
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ └── six.cpython-37.pyc
│ │ │ │ ├── backports
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ │ └── makefile.cpython-37.pyc
│ │ │ │ │ └── makefile.py
│ │ │ │ ├── six.py
│ │ │ │ └── ssl_match_hostname
│ │ │ │ │ ├── __init__.py
│ │ │ │ │ ├── __pycache__
│ │ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ │ └── _implementation.cpython-37.pyc
│ │ │ │ │ └── _implementation.py
│ │ │ ├── poolmanager.py
│ │ │ ├── request.py
│ │ │ ├── response.py
│ │ │ └── util
│ │ │ │ ├── __init__.py
│ │ │ │ ├── __pycache__
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── connection.cpython-37.pyc
│ │ │ │ ├── proxy.cpython-37.pyc
│ │ │ │ ├── queue.cpython-37.pyc
│ │ │ │ ├── request.cpython-37.pyc
│ │ │ │ ├── response.cpython-37.pyc
│ │ │ │ ├── retry.cpython-37.pyc
│ │ │ │ ├── ssl_.cpython-37.pyc
│ │ │ │ ├── ssltransport.cpython-37.pyc
│ │ │ │ ├── timeout.cpython-37.pyc
│ │ │ │ ├── url.cpython-37.pyc
│ │ │ │ └── wait.cpython-37.pyc
│ │ │ │ ├── connection.py
│ │ │ │ ├── proxy.py
│ │ │ │ ├── queue.py
│ │ │ │ ├── request.py
│ │ │ │ ├── response.py
│ │ │ │ ├── retry.py
│ │ │ │ ├── ssl_.py
│ │ │ │ ├── ssltransport.py
│ │ │ │ ├── timeout.py
│ │ │ │ ├── url.py
│ │ │ │ └── wait.py
│ │ ├── vendor.txt
│ │ └── webencodings
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ ├── __init__.cpython-37.pyc
│ │ │ ├── labels.cpython-37.pyc
│ │ │ ├── mklabels.cpython-37.pyc
│ │ │ ├── tests.cpython-37.pyc
│ │ │ └── x_user_defined.cpython-37.pyc
│ │ │ ├── labels.py
│ │ │ ├── mklabels.py
│ │ │ ├── tests.py
│ │ │ └── x_user_defined.py
│ └── py.typed
│ ├── pkg_resources
│ ├── __init__.py
│ ├── __pycache__
│ │ └── __init__.cpython-37.pyc
│ ├── _vendor
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-37.pyc
│ │ │ ├── appdirs.cpython-37.pyc
│ │ │ └── pyparsing.cpython-37.pyc
│ │ ├── appdirs.py
│ │ ├── packaging
│ │ │ ├── __about__.py
│ │ │ ├── __init__.py
│ │ │ ├── __pycache__
│ │ │ │ ├── __about__.cpython-37.pyc
│ │ │ │ ├── __init__.cpython-37.pyc
│ │ │ │ ├── _compat.cpython-37.pyc
│ │ │ │ ├── _structures.cpython-37.pyc
│ │ │ │ ├── _typing.cpython-37.pyc
│ │ │ │ ├── markers.cpython-37.pyc
│ │ │ │ ├── requirements.cpython-37.pyc
│ │ │ │ ├── specifiers.cpython-37.pyc
│ │ │ │ ├── tags.cpython-37.pyc
│ │ │ │ ├── utils.cpython-37.pyc
│ │ │ │ └── version.cpython-37.pyc
│ │ │ ├── _compat.py
│ │ │ ├── _structures.py
│ │ │ ├── _typing.py
│ │ │ ├── markers.py
│ │ │ ├── requirements.py
│ │ │ ├── specifiers.py
│ │ │ ├── tags.py
│ │ │ ├── utils.py
│ │ │ └── version.py
│ │ └── pyparsing.py
│ ├── extern
│ │ ├── __init__.py
│ │ └── __pycache__
│ │ │ └── __init__.cpython-37.pyc
│ └── tests
│ │ └── data
│ │ └── my-test-package-source
│ │ ├── __pycache__
│ │ └── setup.cpython-37.pyc
│ │ └── setup.py
│ ├── setuptools-57.1.0.dist-info
│ ├── INSTALLER
│ ├── LICENSE
│ ├── METADATA
│ ├── RECORD
│ ├── WHEEL
│ ├── entry_points.txt
│ └── top_level.txt
│ └── setuptools
│ ├── __init__.py
│ ├── __pycache__
│ ├── __init__.cpython-37.pyc
│ ├── _deprecation_warning.cpython-37.pyc
│ ├── _imp.cpython-37.pyc
│ ├── archive_util.cpython-37.pyc
│ ├── build_meta.cpython-37.pyc
│ ├── config.cpython-37.pyc
│ ├── dep_util.cpython-37.pyc
│ ├── depends.cpython-37.pyc
│ ├── dist.cpython-37.pyc
│ ├── errors.cpython-37.pyc
│ ├── extension.cpython-37.pyc
│ ├── glob.cpython-37.pyc
│ ├── installer.cpython-37.pyc
│ ├── launch.cpython-37.pyc
│ ├── lib2to3_ex.cpython-37.pyc
│ ├── monkey.cpython-37.pyc
│ ├── msvc.cpython-37.pyc
│ ├── namespaces.cpython-37.pyc
│ ├── package_index.cpython-37.pyc
│ ├── py34compat.cpython-37.pyc
│ ├── sandbox.cpython-37.pyc
│ ├── unicode_utils.cpython-37.pyc
│ ├── version.cpython-37.pyc
│ ├── wheel.cpython-37.pyc
│ └── windows_support.cpython-37.pyc
│ ├── _deprecation_warning.py
│ ├── _distutils
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ ├── _msvccompiler.cpython-37.pyc
│ │ ├── archive_util.cpython-37.pyc
│ │ ├── bcppcompiler.cpython-37.pyc
│ │ ├── ccompiler.cpython-37.pyc
│ │ ├── cmd.cpython-37.pyc
│ │ ├── config.cpython-37.pyc
│ │ ├── core.cpython-37.pyc
│ │ ├── cygwinccompiler.cpython-37.pyc
│ │ ├── debug.cpython-37.pyc
│ │ ├── dep_util.cpython-37.pyc
│ │ ├── dir_util.cpython-37.pyc
│ │ ├── dist.cpython-37.pyc
│ │ ├── errors.cpython-37.pyc
│ │ ├── extension.cpython-37.pyc
│ │ ├── fancy_getopt.cpython-37.pyc
│ │ ├── file_util.cpython-37.pyc
│ │ ├── filelist.cpython-37.pyc
│ │ ├── log.cpython-37.pyc
│ │ ├── msvc9compiler.cpython-37.pyc
│ │ ├── msvccompiler.cpython-37.pyc
│ │ ├── py35compat.cpython-37.pyc
│ │ ├── py38compat.cpython-37.pyc
│ │ ├── spawn.cpython-37.pyc
│ │ ├── sysconfig.cpython-37.pyc
│ │ ├── text_file.cpython-37.pyc
│ │ ├── unixccompiler.cpython-37.pyc
│ │ ├── util.cpython-37.pyc
│ │ ├── version.cpython-37.pyc
│ │ └── versionpredicate.cpython-37.pyc
│ ├── _msvccompiler.py
│ ├── archive_util.py
│ ├── bcppcompiler.py
│ ├── ccompiler.py
│ ├── cmd.py
│ ├── command
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-37.pyc
│ │ │ ├── bdist.cpython-37.pyc
│ │ │ ├── bdist_dumb.cpython-37.pyc
│ │ │ ├── bdist_msi.cpython-37.pyc
│ │ │ ├── bdist_rpm.cpython-37.pyc
│ │ │ ├── bdist_wininst.cpython-37.pyc
│ │ │ ├── build.cpython-37.pyc
│ │ │ ├── build_clib.cpython-37.pyc
│ │ │ ├── build_ext.cpython-37.pyc
│ │ │ ├── build_py.cpython-37.pyc
│ │ │ ├── build_scripts.cpython-37.pyc
│ │ │ ├── check.cpython-37.pyc
│ │ │ ├── clean.cpython-37.pyc
│ │ │ ├── config.cpython-37.pyc
│ │ │ ├── install.cpython-37.pyc
│ │ │ ├── install_data.cpython-37.pyc
│ │ │ ├── install_egg_info.cpython-37.pyc
│ │ │ ├── install_headers.cpython-37.pyc
│ │ │ ├── install_lib.cpython-37.pyc
│ │ │ ├── install_scripts.cpython-37.pyc
│ │ │ ├── py37compat.cpython-37.pyc
│ │ │ ├── register.cpython-37.pyc
│ │ │ ├── sdist.cpython-37.pyc
│ │ │ └── upload.cpython-37.pyc
│ │ ├── bdist.py
│ │ ├── bdist_dumb.py
│ │ ├── bdist_msi.py
│ │ ├── bdist_rpm.py
│ │ ├── bdist_wininst.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
│ ├── py35compat.py
│ ├── py38compat.py
│ ├── spawn.py
│ ├── sysconfig.py
│ ├── text_file.py
│ ├── unixccompiler.py
│ ├── util.py
│ ├── version.py
│ └── versionpredicate.py
│ ├── _imp.py
│ ├── _vendor
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ ├── ordered_set.cpython-37.pyc
│ │ └── pyparsing.cpython-37.pyc
│ ├── more_itertools
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __init__.cpython-37.pyc
│ │ │ ├── more.cpython-37.pyc
│ │ │ └── recipes.cpython-37.pyc
│ │ ├── more.py
│ │ └── recipes.py
│ ├── ordered_set.py
│ ├── packaging
│ │ ├── __about__.py
│ │ ├── __init__.py
│ │ ├── __pycache__
│ │ │ ├── __about__.cpython-37.pyc
│ │ │ ├── __init__.cpython-37.pyc
│ │ │ ├── _compat.cpython-37.pyc
│ │ │ ├── _structures.cpython-37.pyc
│ │ │ ├── _typing.cpython-37.pyc
│ │ │ ├── markers.cpython-37.pyc
│ │ │ ├── requirements.cpython-37.pyc
│ │ │ ├── specifiers.cpython-37.pyc
│ │ │ ├── tags.cpython-37.pyc
│ │ │ ├── utils.cpython-37.pyc
│ │ │ └── version.cpython-37.pyc
│ │ ├── _compat.py
│ │ ├── _structures.py
│ │ ├── _typing.py
│ │ ├── markers.py
│ │ ├── requirements.py
│ │ ├── specifiers.py
│ │ ├── tags.py
│ │ ├── utils.py
│ │ └── version.py
│ └── pyparsing.py
│ ├── archive_util.py
│ ├── build_meta.py
│ ├── cli-32.exe
│ ├── cli-64.exe
│ ├── cli.exe
│ ├── command
│ ├── __init__.py
│ ├── __pycache__
│ │ ├── __init__.cpython-37.pyc
│ │ ├── alias.cpython-37.pyc
│ │ ├── bdist_egg.cpython-37.pyc
│ │ ├── bdist_rpm.cpython-37.pyc
│ │ ├── build_clib.cpython-37.pyc
│ │ ├── build_ext.cpython-37.pyc
│ │ ├── build_py.cpython-37.pyc
│ │ ├── develop.cpython-37.pyc
│ │ ├── dist_info.cpython-37.pyc
│ │ ├── easy_install.cpython-37.pyc
│ │ ├── egg_info.cpython-37.pyc
│ │ ├── install.cpython-37.pyc
│ │ ├── install_egg_info.cpython-37.pyc
│ │ ├── install_lib.cpython-37.pyc
│ │ ├── install_scripts.cpython-37.pyc
│ │ ├── py36compat.cpython-37.pyc
│ │ ├── register.cpython-37.pyc
│ │ ├── rotate.cpython-37.pyc
│ │ ├── saveopts.cpython-37.pyc
│ │ ├── sdist.cpython-37.pyc
│ │ ├── setopt.cpython-37.pyc
│ │ ├── test.cpython-37.pyc
│ │ ├── upload.cpython-37.pyc
│ │ └── upload_docs.cpython-37.pyc
│ ├── alias.py
│ ├── bdist_egg.py
│ ├── bdist_rpm.py
│ ├── build_clib.py
│ ├── build_ext.py
│ ├── build_py.py
│ ├── develop.py
│ ├── dist_info.py
│ ├── easy_install.py
│ ├── egg_info.py
│ ├── install.py
│ ├── install_egg_info.py
│ ├── install_lib.py
│ ├── install_scripts.py
│ ├── launcher manifest.xml
│ ├── py36compat.py
│ ├── register.py
│ ├── rotate.py
│ ├── saveopts.py
│ ├── sdist.py
│ ├── setopt.py
│ ├── test.py
│ ├── upload.py
│ └── upload_docs.py
│ ├── config.py
│ ├── dep_util.py
│ ├── depends.py
│ ├── dist.py
│ ├── errors.py
│ ├── extension.py
│ ├── extern
│ ├── __init__.py
│ └── __pycache__
│ │ └── __init__.cpython-37.pyc
│ ├── glob.py
│ ├── gui-32.exe
│ ├── gui-64.exe
│ ├── gui.exe
│ ├── installer.py
│ ├── launch.py
│ ├── lib2to3_ex.py
│ ├── monkey.py
│ ├── msvc.py
│ ├── namespaces.py
│ ├── package_index.py
│ ├── py34compat.py
│ ├── sandbox.py
│ ├── script (dev).tmpl
│ ├── script.tmpl
│ ├── unicode_utils.py
│ ├── version.py
│ ├── wheel.py
│ └── windows_support.py
├── Scripts
├── Activate.ps1
├── _asyncio.pyd
├── _bz2.pyd
├── _contextvars.pyd
├── _ctypes.pyd
├── _decimal.pyd
├── _distutils_findvs.pyd
├── _elementtree.pyd
├── _hashlib.pyd
├── _lzma.pyd
├── _msi.pyd
├── _multiprocessing.pyd
├── _overlapped.pyd
├── _queue.pyd
├── _socket.pyd
├── _sqlite3.pyd
├── _ssl.pyd
├── activate
├── activate.bat
├── deactivate.bat
├── pip.exe
├── pip3.7.exe
├── pip3.exe
├── pyexpat.pyd
├── python.exe
├── python3.dll
├── python37.dll
├── pythoncom37.dll
├── pythonw.exe
├── pywintypes37.dll
├── select.pyd
├── unicodedata.pyd
└── winsound.pyd
└── pyvenv.cfg
/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/.DS_Store
--------------------------------------------------------------------------------
/ImgVideo/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ImgVideo/.DS_Store
--------------------------------------------------------------------------------
/ImgVideo/图片 1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ImgVideo/图片 1.png
--------------------------------------------------------------------------------
/ImgVideo/图片 2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ImgVideo/图片 2.png
--------------------------------------------------------------------------------
/ImgVideo/图片3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ImgVideo/图片3.png
--------------------------------------------------------------------------------
/ImgVideo/演示视频.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ImgVideo/演示视频.mp4
--------------------------------------------------------------------------------
/ai_detection/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/.DS_Store
--------------------------------------------------------------------------------
/ai_detection/.idea/.gitignore:
--------------------------------------------------------------------------------
1 | # Default ignored files
2 | /shelf/
3 | /workspace.xml
4 |
--------------------------------------------------------------------------------
/ai_detection/.idea/.name:
--------------------------------------------------------------------------------
1 | AI_Detection.py
--------------------------------------------------------------------------------
/ai_detection/.idea/inspectionProfiles/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ai_detection/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/ai_detection/__pycache__/AI_Detection.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/__pycache__/AI_Detection.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/__pycache__/AI_Detection_dialog.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/__pycache__/AI_Detection_dialog.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/__pycache__/predict.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/__pycache__/predict.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/__pycache__/resources.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/__pycache__/resources.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/compile.bat:
--------------------------------------------------------------------------------
1 | @echo off
2 | call "C:\Program Files\QGIS 3.16\bin\o4w_env.bat"
3 | call "C:\Program Files\QGIS 3.16\bin\qt5_env.bat"
4 | call "C:\Program Files\QGIS 3.16\bin\py3_env.bat"
5 |
6 |
7 | @echo on
8 | pyrcc5 -o resources.py resources.qrc
--------------------------------------------------------------------------------
/ai_detection/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/icon.png
--------------------------------------------------------------------------------
/ai_detection/model/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/model/.DS_Store
--------------------------------------------------------------------------------
/ai_detection/model/deeplabv3/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/model/deeplabv3/.DS_Store
--------------------------------------------------------------------------------
/ai_detection/model/deeplabv3/model/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/model/deeplabv3/model/.DS_Store
--------------------------------------------------------------------------------
/ai_detection/model/deeplabv3/model/__pycache__/aspp.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/model/deeplabv3/model/__pycache__/aspp.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/model/deeplabv3/model/__pycache__/deeplabv3.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/model/deeplabv3/model/__pycache__/deeplabv3.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/model/deeplabv3/model/__pycache__/resnet.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/model/deeplabv3/model/__pycache__/resnet.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/resources.qrc:
--------------------------------------------------------------------------------
1 |
2 |
3 | icon.png
4 |
5 |
6 |
--------------------------------------------------------------------------------
/ai_detection/test/__init__.py:
--------------------------------------------------------------------------------
1 | # import qgis libs so that ve set the correct sip api version
2 | import qgis # pylint: disable=W0611 # NOQA
--------------------------------------------------------------------------------
/ai_detection/test/tenbytenraster.keywords:
--------------------------------------------------------------------------------
1 | title: Tenbytenraster
2 |
--------------------------------------------------------------------------------
/ai_detection/test/tenbytenraster.prj:
--------------------------------------------------------------------------------
1 | GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]]
--------------------------------------------------------------------------------
/ai_detection/venv/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/.DS_Store
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/_distutils_hack/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/_distutils_hack/__pycache__/override.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/_distutils_hack/override.py:
--------------------------------------------------------------------------------
1 | __import__('_distutils_hack').do_override()
2 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/distutils-precedence.pth:
--------------------------------------------------------------------------------
1 | import os; var = 'SETUPTOOLS_USE_DISTUTILS'; enabled = os.environ.get(var, 'stdlib') == 'local'; enabled and __import__('_distutils_hack').add_shim();
2 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip-21.1.3.dist-info/INSTALLER:
--------------------------------------------------------------------------------
1 | pip
2 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip-21.1.3.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: bdist_wheel (0.36.2)
3 | Root-Is-Purelib: true
4 | Tag: py3-none-any
5 |
6 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip-21.1.3.dist-info/entry_points.txt:
--------------------------------------------------------------------------------
1 | [console_scripts]
2 | pip = pip._internal.cli.main:main
3 | pip3 = pip._internal.cli.main:main
4 | pip3.8 = pip._internal.cli.main:main
5 |
6 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip-21.1.3.dist-info/top_level.txt:
--------------------------------------------------------------------------------
1 | pip
2 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/__pycache__/__main__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/main.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/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 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/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 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/index/__init__.py:
--------------------------------------------------------------------------------
1 | """Index interaction code
2 | """
3 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__init__.py:
--------------------------------------------------------------------------------
1 | """A package that contains models that represent entities.
2 | """
3 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/network/__init__.py:
--------------------------------------------------------------------------------
1 | """Contains purely network-related utilities.
2 | """
3 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/operations/build/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/operations/install/__init__.py:
--------------------------------------------------------------------------------
1 | """For modules related to installing packages.
2 | """
3 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/models.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/parallel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/pkg_resources.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/appdirs.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/distro.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/pyparsing.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/__pycache__/six.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py:
--------------------------------------------------------------------------------
1 | from .file_cache import FileCache # noqa
2 | from .redis_cache import RedisCache # noqa
3 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/certifi/__init__.py:
--------------------------------------------------------------------------------
1 | from .core import contents, where
2 |
3 | __version__ = "2020.12.05"
4 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/misc.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/shutil.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/_backport/__pycache__/tarfile.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/t32.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/t64.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/w32.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/distlib/w64.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__init__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import, division, unicode_literals
2 |
3 | from .py import Trie
4 |
5 | __all__ = ["Trie"]
6 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__init__.py:
--------------------------------------------------------------------------------
1 | from .package_data import __version__
2 | from .core import *
3 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/idna/package_data.py:
--------------------------------------------------------------------------------
1 | __version__ = '3.1'
2 |
3 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/msgpack/_version.py:
--------------------------------------------------------------------------------
1 | version = (1, 0, 2)
2 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_typing.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/_typing.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__init__.py:
--------------------------------------------------------------------------------
1 | """Wrappers to build Python packages using PEP 517 hooks
2 | """
3 |
4 | __version__ = '0.10.0'
5 |
6 | from .wrappers import * # noqa: F401, F403
7 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py
--------------------------------------------------------------------------------
/ai_detection/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 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/decoder.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/decoder.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/encoder.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/encoder.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/ordered.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/ordered.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/tz.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/toml/__pycache__/tz.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/_version.py:
--------------------------------------------------------------------------------
1 | # This file is protected via CODEOWNERS
2 | __version__ = "1.26.4"
3 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py:
--------------------------------------------------------------------------------
1 | from __future__ import absolute_import
2 |
3 | from . import ssl_match_hostname
4 |
5 | __all__ = ("ssl_match_hostname",)
6 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pkg_resources/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py:
--------------------------------------------------------------------------------
1 | import setuptools
2 | setuptools.setup(
3 | name="my-test-package",
4 | version="1.0",
5 | zip_safe=True,
6 | )
7 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools-57.1.0.dist-info/INSTALLER:
--------------------------------------------------------------------------------
1 | pip
2 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools-57.1.0.dist-info/WHEEL:
--------------------------------------------------------------------------------
1 | Wheel-Version: 1.0
2 | Generator: bdist_wheel (0.36.2)
3 | Root-Is-Purelib: true
4 | Tag: py3-none-any
5 |
6 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools-57.1.0.dist-info/top_level.txt:
--------------------------------------------------------------------------------
1 | _distutils_hack
2 | pkg_resources
3 | setuptools
4 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/_imp.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/archive_util.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/build_meta.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/config.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/config.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/dep_util.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/depends.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/dist.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/errors.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/extension.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/glob.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/installer.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/launch.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/lib2to3_ex.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/monkey.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/msvc.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/namespaces.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/package_index.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/py34compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/sandbox.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/unicode_utils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/wheel.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/__pycache__/windows_support.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_deprecation_warning.py:
--------------------------------------------------------------------------------
1 | class SetuptoolsDeprecationWarning(Warning):
2 | """
3 | Base class for warning deprecations in ``setuptools``
4 |
5 | This class is not derived from ``DeprecationWarning``, and as such is
6 | visible by default.
7 | """
8 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/config.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/core.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/debug.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/dist.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/errors.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/extension.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/log.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/util.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/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 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_distutils/py38compat.py:
--------------------------------------------------------------------------------
1 | def aix_platform(osname, version, release):
2 | try:
3 | import _aix_support
4 | return _aix_support.aix_platform()
5 | except ImportError:
6 | pass
7 | return "%s-%s.%s" % (osname, version, release)
8 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/__init__.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/__init__.py
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/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 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_typing.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/_typing.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/cli-32.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/cli-32.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/cli-64.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/cli-64.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/cli.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/cli.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__init__.py:
--------------------------------------------------------------------------------
1 | from distutils.command.bdist import bdist
2 | import sys
3 |
4 | if 'egg' not in bdist.format_commands:
5 | bdist.format_command['egg'] = ('bdist_egg', "Python .egg file")
6 | bdist.format_commands.append('egg')
7 |
8 | del bdist, sys
9 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/alias.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/build_clib.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/build_ext.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/build_py.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/develop.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/dist_info.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/easy_install.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/egg_info.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/install.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/install_lib.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/install_scripts.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/py36compat.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/register.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/rotate.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/saveopts.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/sdist.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/setopt.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/test.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/upload.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/command/__pycache__/upload_docs.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-37.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/extern/__pycache__/__init__.cpython-37.pyc
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/gui-32.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/gui-32.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/gui-64.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/gui-64.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/gui.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Lib/site-packages/setuptools/gui.exe
--------------------------------------------------------------------------------
/ai_detection/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 |
--------------------------------------------------------------------------------
/ai_detection/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 |
--------------------------------------------------------------------------------
/ai_detection/venv/Lib/site-packages/setuptools/version.py:
--------------------------------------------------------------------------------
1 | import pkg_resources
2 |
3 | try:
4 | __version__ = pkg_resources.get_distribution('setuptools').version
5 | except Exception:
6 | __version__ = 'unknown'
7 |
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_asyncio.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_asyncio.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_bz2.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_bz2.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_contextvars.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_contextvars.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_ctypes.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_ctypes.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_decimal.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_decimal.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_distutils_findvs.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_distutils_findvs.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_elementtree.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_elementtree.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_hashlib.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_hashlib.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_lzma.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_lzma.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_msi.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_msi.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_multiprocessing.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_multiprocessing.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_overlapped.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_overlapped.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_queue.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_queue.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_socket.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_socket.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_sqlite3.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_sqlite3.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/_ssl.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/_ssl.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/pip.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/pip.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/pip3.7.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/pip3.7.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/pip3.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/pip3.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/pyexpat.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/pyexpat.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/python.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/python.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/python3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/python3.dll
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/python37.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/python37.dll
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/pythoncom37.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/pythoncom37.dll
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/pythonw.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/pythonw.exe
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/pywintypes37.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/pywintypes37.dll
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/select.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/select.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/unicodedata.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/unicodedata.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/Scripts/winsound.pyd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bigboysuper6/Remote-sensing-image-segmentation/d8dd12ba280f01fd8d08d26949225c0a3ade7b00/ai_detection/venv/Scripts/winsound.pyd
--------------------------------------------------------------------------------
/ai_detection/venv/pyvenv.cfg:
--------------------------------------------------------------------------------
1 | home = C:\Program Files\QGIS 3.16\apps\Python37
2 | include-system-site-packages = true
3 | version = 3.7.0
4 |
--------------------------------------------------------------------------------