├── .idea ├── .gitignore ├── crudproject.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── crudapp ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-312.pyc │ ├── admin.cpython-312.pyc │ ├── apps.cpython-312.pyc │ ├── forms.cpython-312.pyc │ ├── models.cpython-312.pyc │ ├── urls.cpython-312.pyc │ └── views.cpython-312.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_remove_user_mobile_user_mobile_number.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-312.pyc │ │ ├── 0002_remove_user_mobile_user_mobile_number.cpython-312.pyc │ │ └── __init__.cpython-312.pyc ├── models.py ├── templates │ ├── add.html │ ├── deleate.html │ ├── edit.html │ ├── listingpage.html │ └── views.html ├── tests.py ├── urls.py └── views.py ├── crudproject ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-312.pyc │ ├── settings.cpython-312.pyc │ ├── urls.cpython-312.pyc │ └── wsgi.cpython-312.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── db.sqlite3 ├── manage.py ├── media └── uploads │ ├── VG_LOG2.png │ ├── VG_LOG2_0oyjbic.png │ ├── log.png │ └── long2.png └── myenv ├── bin ├── Activate.ps1 ├── activate ├── activate.csh ├── activate.fish ├── pip ├── pip3 ├── pip3.12 ├── python ├── python3 └── python3.12 ├── lib └── python3.12 │ └── site-packages │ ├── PIL │ ├── BdfFontFile.py │ ├── BlpImagePlugin.py │ ├── BmpImagePlugin.py │ ├── BufrStubImagePlugin.py │ ├── ContainerIO.py │ ├── CurImagePlugin.py │ ├── DcxImagePlugin.py │ ├── DdsImagePlugin.py │ ├── EpsImagePlugin.py │ ├── ExifTags.py │ ├── FitsImagePlugin.py │ ├── FliImagePlugin.py │ ├── FontFile.py │ ├── FpxImagePlugin.py │ ├── FtexImagePlugin.py │ ├── GbrImagePlugin.py │ ├── GdImageFile.py │ ├── GifImagePlugin.py │ ├── GimpGradientFile.py │ ├── GimpPaletteFile.py │ ├── GribStubImagePlugin.py │ ├── Hdf5StubImagePlugin.py │ ├── IcnsImagePlugin.py │ ├── IcoImagePlugin.py │ ├── ImImagePlugin.py │ ├── Image.py │ ├── ImageChops.py │ ├── ImageCms.py │ ├── ImageColor.py │ ├── ImageDraw.py │ ├── ImageDraw2.py │ ├── ImageEnhance.py │ ├── ImageFile.py │ ├── ImageFilter.py │ ├── ImageFont.py │ ├── ImageGrab.py │ ├── ImageMath.py │ ├── ImageMode.py │ ├── ImageMorph.py │ ├── ImageOps.py │ ├── ImagePalette.py │ ├── ImagePath.py │ ├── ImageQt.py │ ├── ImageSequence.py │ ├── ImageShow.py │ ├── ImageStat.py │ ├── ImageTk.py │ ├── ImageTransform.py │ ├── ImageWin.py │ ├── ImtImagePlugin.py │ ├── IptcImagePlugin.py │ ├── Jpeg2KImagePlugin.py │ ├── JpegImagePlugin.py │ ├── JpegPresets.py │ ├── McIdasImagePlugin.py │ ├── MicImagePlugin.py │ ├── MpegImagePlugin.py │ ├── MpoImagePlugin.py │ ├── MspImagePlugin.py │ ├── PSDraw.py │ ├── PaletteFile.py │ ├── PalmImagePlugin.py │ ├── PcdImagePlugin.py │ ├── PcfFontFile.py │ ├── PcxImagePlugin.py │ ├── PdfImagePlugin.py │ ├── PdfParser.py │ ├── PixarImagePlugin.py │ ├── PngImagePlugin.py │ ├── PpmImagePlugin.py │ ├── PsdImagePlugin.py │ ├── QoiImagePlugin.py │ ├── SgiImagePlugin.py │ ├── SpiderImagePlugin.py │ ├── SunImagePlugin.py │ ├── TarIO.py │ ├── TgaImagePlugin.py │ ├── TiffImagePlugin.py │ ├── TiffTags.py │ ├── WalImageFile.py │ ├── WebPImagePlugin.py │ ├── WmfImagePlugin.py │ ├── XVThumbImagePlugin.py │ ├── XbmImagePlugin.py │ ├── XpmImagePlugin.py │ ├── __init__.py │ ├── __main__.py │ ├── __pycache__ │ │ ├── BdfFontFile.cpython-312.pyc │ │ ├── BlpImagePlugin.cpython-312.pyc │ │ ├── BmpImagePlugin.cpython-312.pyc │ │ ├── BufrStubImagePlugin.cpython-312.pyc │ │ ├── ContainerIO.cpython-312.pyc │ │ ├── CurImagePlugin.cpython-312.pyc │ │ ├── DcxImagePlugin.cpython-312.pyc │ │ ├── DdsImagePlugin.cpython-312.pyc │ │ ├── EpsImagePlugin.cpython-312.pyc │ │ ├── ExifTags.cpython-312.pyc │ │ ├── FitsImagePlugin.cpython-312.pyc │ │ ├── FliImagePlugin.cpython-312.pyc │ │ ├── FontFile.cpython-312.pyc │ │ ├── FpxImagePlugin.cpython-312.pyc │ │ ├── FtexImagePlugin.cpython-312.pyc │ │ ├── GbrImagePlugin.cpython-312.pyc │ │ ├── GdImageFile.cpython-312.pyc │ │ ├── GifImagePlugin.cpython-312.pyc │ │ ├── GimpGradientFile.cpython-312.pyc │ │ ├── GimpPaletteFile.cpython-312.pyc │ │ ├── GribStubImagePlugin.cpython-312.pyc │ │ ├── Hdf5StubImagePlugin.cpython-312.pyc │ │ ├── IcnsImagePlugin.cpython-312.pyc │ │ ├── IcoImagePlugin.cpython-312.pyc │ │ ├── ImImagePlugin.cpython-312.pyc │ │ ├── Image.cpython-312.pyc │ │ ├── ImageChops.cpython-312.pyc │ │ ├── ImageCms.cpython-312.pyc │ │ ├── ImageColor.cpython-312.pyc │ │ ├── ImageDraw.cpython-312.pyc │ │ ├── ImageDraw2.cpython-312.pyc │ │ ├── ImageEnhance.cpython-312.pyc │ │ ├── ImageFile.cpython-312.pyc │ │ ├── ImageFilter.cpython-312.pyc │ │ ├── ImageFont.cpython-312.pyc │ │ ├── ImageGrab.cpython-312.pyc │ │ ├── ImageMath.cpython-312.pyc │ │ ├── ImageMode.cpython-312.pyc │ │ ├── ImageMorph.cpython-312.pyc │ │ ├── ImageOps.cpython-312.pyc │ │ ├── ImagePalette.cpython-312.pyc │ │ ├── ImagePath.cpython-312.pyc │ │ ├── ImageQt.cpython-312.pyc │ │ ├── ImageSequence.cpython-312.pyc │ │ ├── ImageShow.cpython-312.pyc │ │ ├── ImageStat.cpython-312.pyc │ │ ├── ImageTk.cpython-312.pyc │ │ ├── ImageTransform.cpython-312.pyc │ │ ├── ImageWin.cpython-312.pyc │ │ ├── ImtImagePlugin.cpython-312.pyc │ │ ├── IptcImagePlugin.cpython-312.pyc │ │ ├── Jpeg2KImagePlugin.cpython-312.pyc │ │ ├── JpegImagePlugin.cpython-312.pyc │ │ ├── JpegPresets.cpython-312.pyc │ │ ├── McIdasImagePlugin.cpython-312.pyc │ │ ├── MicImagePlugin.cpython-312.pyc │ │ ├── MpegImagePlugin.cpython-312.pyc │ │ ├── MpoImagePlugin.cpython-312.pyc │ │ ├── MspImagePlugin.cpython-312.pyc │ │ ├── PSDraw.cpython-312.pyc │ │ ├── PaletteFile.cpython-312.pyc │ │ ├── PalmImagePlugin.cpython-312.pyc │ │ ├── PcdImagePlugin.cpython-312.pyc │ │ ├── PcfFontFile.cpython-312.pyc │ │ ├── PcxImagePlugin.cpython-312.pyc │ │ ├── PdfImagePlugin.cpython-312.pyc │ │ ├── PdfParser.cpython-312.pyc │ │ ├── PixarImagePlugin.cpython-312.pyc │ │ ├── PngImagePlugin.cpython-312.pyc │ │ ├── PpmImagePlugin.cpython-312.pyc │ │ ├── PsdImagePlugin.cpython-312.pyc │ │ ├── QoiImagePlugin.cpython-312.pyc │ │ ├── SgiImagePlugin.cpython-312.pyc │ │ ├── SpiderImagePlugin.cpython-312.pyc │ │ ├── SunImagePlugin.cpython-312.pyc │ │ ├── TarIO.cpython-312.pyc │ │ ├── TgaImagePlugin.cpython-312.pyc │ │ ├── TiffImagePlugin.cpython-312.pyc │ │ ├── TiffTags.cpython-312.pyc │ │ ├── WalImageFile.cpython-312.pyc │ │ ├── WebPImagePlugin.cpython-312.pyc │ │ ├── WmfImagePlugin.cpython-312.pyc │ │ ├── XVThumbImagePlugin.cpython-312.pyc │ │ ├── XbmImagePlugin.cpython-312.pyc │ │ ├── XpmImagePlugin.cpython-312.pyc │ │ ├── __init__.cpython-312.pyc │ │ ├── __main__.cpython-312.pyc │ │ ├── _binary.cpython-312.pyc │ │ ├── _deprecate.cpython-312.pyc │ │ ├── _tkinter_finder.cpython-312.pyc │ │ ├── _typing.cpython-312.pyc │ │ ├── _util.cpython-312.pyc │ │ ├── _version.cpython-312.pyc │ │ ├── features.cpython-312.pyc │ │ └── report.cpython-312.pyc │ ├── _binary.py │ ├── _deprecate.py │ ├── _imaging.cpython-312-x86_64-linux-gnu.so │ ├── _imaging.pyi │ ├── _imagingcms.cpython-312-x86_64-linux-gnu.so │ ├── _imagingcms.pyi │ ├── _imagingft.cpython-312-x86_64-linux-gnu.so │ ├── _imagingft.pyi │ ├── _imagingmath.cpython-312-x86_64-linux-gnu.so │ ├── _imagingmath.pyi │ ├── _imagingmorph.cpython-312-x86_64-linux-gnu.so │ ├── _imagingmorph.pyi │ ├── _imagingtk.cpython-312-x86_64-linux-gnu.so │ ├── _imagingtk.pyi │ ├── _tkinter_finder.py │ ├── _typing.py │ ├── _util.py │ ├── _version.py │ ├── _webp.cpython-312-x86_64-linux-gnu.so │ ├── _webp.pyi │ ├── features.py │ ├── py.typed │ └── report.py │ ├── pillow-11.1.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── top_level.txt │ └── zip-safe │ ├── pillow.libs │ ├── libXau-154567c4.so.6.0.0 │ ├── libbrotlicommon-5b2eba61.so.1.1.0 │ ├── libbrotlidec-a621e7f2.so.1.1.0 │ ├── libfreetype-edd71024.so.6.20.1 │ ├── libharfbuzz-07d0ad17.so.0.61010.0 │ ├── libjpeg-0988b44a.so.62.4.0 │ ├── liblcms2-525547ec.so.2.0.16 │ ├── liblzma-a5872208.so.5.6.3 │ ├── libopenjp2-ca16f087.so.2.5.3 │ ├── libpng16-2a828d05.so.16.44.0 │ ├── libsharpyuv-f67a7212.so.0.1.1 │ ├── libtiff-a92b430c.so.6.0.2 │ ├── libwebp-0feb04d2.so.7.1.10 │ ├── libwebpdemux-e5426797.so.2.0.16 │ ├── libwebpmux-f0bc54e2.so.3.1.1 │ └── libxcb-0b763ed5.so.1.1.0 │ ├── pip-24.0.dist-info │ ├── AUTHORS.txt │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── REQUESTED │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ └── pip │ ├── __init__.py │ ├── __main__.py │ ├── __pip-runner__.py │ ├── __pycache__ │ ├── __init__.cpython-312.pyc │ ├── __main__.cpython-312.pyc │ └── __pip-runner__.cpython-312.pyc │ ├── _internal │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── build_env.cpython-312.pyc │ │ ├── cache.cpython-312.pyc │ │ ├── configuration.cpython-312.pyc │ │ ├── exceptions.cpython-312.pyc │ │ ├── main.cpython-312.pyc │ │ ├── pyproject.cpython-312.pyc │ │ ├── self_outdated_check.cpython-312.pyc │ │ └── wheel_builder.cpython-312.pyc │ ├── build_env.py │ ├── cache.py │ ├── cli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── autocompletion.cpython-312.pyc │ │ │ ├── base_command.cpython-312.pyc │ │ │ ├── cmdoptions.cpython-312.pyc │ │ │ ├── command_context.cpython-312.pyc │ │ │ ├── main.cpython-312.pyc │ │ │ ├── main_parser.cpython-312.pyc │ │ │ ├── parser.cpython-312.pyc │ │ │ ├── progress_bars.cpython-312.pyc │ │ │ ├── req_command.cpython-312.pyc │ │ │ ├── spinners.cpython-312.pyc │ │ │ └── status_codes.cpython-312.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-312.pyc │ │ │ ├── cache.cpython-312.pyc │ │ │ ├── check.cpython-312.pyc │ │ │ ├── completion.cpython-312.pyc │ │ │ ├── configuration.cpython-312.pyc │ │ │ ├── debug.cpython-312.pyc │ │ │ ├── download.cpython-312.pyc │ │ │ ├── freeze.cpython-312.pyc │ │ │ ├── hash.cpython-312.pyc │ │ │ ├── help.cpython-312.pyc │ │ │ ├── index.cpython-312.pyc │ │ │ ├── inspect.cpython-312.pyc │ │ │ ├── install.cpython-312.pyc │ │ │ ├── list.cpython-312.pyc │ │ │ ├── search.cpython-312.pyc │ │ │ ├── show.cpython-312.pyc │ │ │ ├── uninstall.cpython-312.pyc │ │ │ └── wheel.cpython-312.pyc │ │ ├── cache.py │ │ ├── check.py │ │ ├── completion.py │ │ ├── configuration.py │ │ ├── debug.py │ │ ├── download.py │ │ ├── freeze.py │ │ ├── hash.py │ │ ├── help.py │ │ ├── index.py │ │ ├── inspect.py │ │ ├── install.py │ │ ├── list.py │ │ ├── search.py │ │ ├── show.py │ │ ├── uninstall.py │ │ └── wheel.py │ ├── configuration.py │ ├── distributions │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── base.cpython-312.pyc │ │ │ ├── installed.cpython-312.pyc │ │ │ ├── sdist.cpython-312.pyc │ │ │ └── wheel.cpython-312.pyc │ │ ├── base.py │ │ ├── installed.py │ │ ├── sdist.py │ │ └── wheel.py │ ├── exceptions.py │ ├── index │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── collector.cpython-312.pyc │ │ │ ├── package_finder.cpython-312.pyc │ │ │ └── sources.cpython-312.pyc │ │ ├── collector.py │ │ ├── package_finder.py │ │ └── sources.py │ ├── locations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _distutils.cpython-312.pyc │ │ │ ├── _sysconfig.cpython-312.pyc │ │ │ └── base.cpython-312.pyc │ │ ├── _distutils.py │ │ ├── _sysconfig.py │ │ └── base.py │ ├── main.py │ ├── metadata │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _json.cpython-312.pyc │ │ │ ├── base.cpython-312.pyc │ │ │ └── pkg_resources.cpython-312.pyc │ │ ├── _json.py │ │ ├── base.py │ │ ├── importlib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _compat.cpython-312.pyc │ │ │ │ ├── _dists.cpython-312.pyc │ │ │ │ └── _envs.cpython-312.pyc │ │ │ ├── _compat.py │ │ │ ├── _dists.py │ │ │ └── _envs.py │ │ └── pkg_resources.py │ ├── models │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── candidate.cpython-312.pyc │ │ │ ├── direct_url.cpython-312.pyc │ │ │ ├── format_control.cpython-312.pyc │ │ │ ├── index.cpython-312.pyc │ │ │ ├── installation_report.cpython-312.pyc │ │ │ ├── link.cpython-312.pyc │ │ │ ├── scheme.cpython-312.pyc │ │ │ ├── search_scope.cpython-312.pyc │ │ │ ├── selection_prefs.cpython-312.pyc │ │ │ ├── target_python.cpython-312.pyc │ │ │ └── wheel.cpython-312.pyc │ │ ├── candidate.py │ │ ├── direct_url.py │ │ ├── format_control.py │ │ ├── index.py │ │ ├── installation_report.py │ │ ├── link.py │ │ ├── scheme.py │ │ ├── search_scope.py │ │ ├── selection_prefs.py │ │ ├── target_python.py │ │ └── wheel.py │ ├── network │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── auth.cpython-312.pyc │ │ │ ├── cache.cpython-312.pyc │ │ │ ├── download.cpython-312.pyc │ │ │ ├── lazy_wheel.cpython-312.pyc │ │ │ ├── session.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ └── xmlrpc.cpython-312.pyc │ │ ├── auth.py │ │ ├── cache.py │ │ ├── download.py │ │ ├── lazy_wheel.py │ │ ├── session.py │ │ ├── utils.py │ │ └── xmlrpc.py │ ├── operations │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── check.cpython-312.pyc │ │ │ ├── freeze.cpython-312.pyc │ │ │ └── prepare.cpython-312.pyc │ │ ├── build │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── build_tracker.cpython-312.pyc │ │ │ │ ├── metadata.cpython-312.pyc │ │ │ │ ├── metadata_editable.cpython-312.pyc │ │ │ │ ├── metadata_legacy.cpython-312.pyc │ │ │ │ ├── wheel.cpython-312.pyc │ │ │ │ ├── wheel_editable.cpython-312.pyc │ │ │ │ └── wheel_legacy.cpython-312.pyc │ │ │ ├── build_tracker.py │ │ │ ├── metadata.py │ │ │ ├── metadata_editable.py │ │ │ ├── metadata_legacy.py │ │ │ ├── wheel.py │ │ │ ├── wheel_editable.py │ │ │ └── wheel_legacy.py │ │ ├── check.py │ │ ├── freeze.py │ │ ├── install │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── editable_legacy.cpython-312.pyc │ │ │ │ └── wheel.cpython-312.pyc │ │ │ ├── editable_legacy.py │ │ │ └── wheel.py │ │ └── prepare.py │ ├── pyproject.py │ ├── req │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── constructors.cpython-312.pyc │ │ │ ├── req_file.cpython-312.pyc │ │ │ ├── req_install.cpython-312.pyc │ │ │ ├── req_set.cpython-312.pyc │ │ │ └── req_uninstall.cpython-312.pyc │ │ ├── constructors.py │ │ ├── req_file.py │ │ ├── req_install.py │ │ ├── req_set.py │ │ └── req_uninstall.py │ ├── resolution │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ └── base.cpython-312.pyc │ │ ├── base.py │ │ ├── legacy │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── resolver.cpython-312.pyc │ │ │ └── resolver.py │ │ └── resolvelib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── base.cpython-312.pyc │ │ │ ├── candidates.cpython-312.pyc │ │ │ ├── factory.cpython-312.pyc │ │ │ ├── found_candidates.cpython-312.pyc │ │ │ ├── provider.cpython-312.pyc │ │ │ ├── reporter.cpython-312.pyc │ │ │ ├── requirements.cpython-312.pyc │ │ │ └── resolver.cpython-312.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-312.pyc │ │ │ ├── _jaraco_text.cpython-312.pyc │ │ │ ├── _log.cpython-312.pyc │ │ │ ├── appdirs.cpython-312.pyc │ │ │ ├── compat.cpython-312.pyc │ │ │ ├── compatibility_tags.cpython-312.pyc │ │ │ ├── datetime.cpython-312.pyc │ │ │ ├── deprecation.cpython-312.pyc │ │ │ ├── direct_url_helpers.cpython-312.pyc │ │ │ ├── egg_link.cpython-312.pyc │ │ │ ├── encoding.cpython-312.pyc │ │ │ ├── entrypoints.cpython-312.pyc │ │ │ ├── filesystem.cpython-312.pyc │ │ │ ├── filetypes.cpython-312.pyc │ │ │ ├── glibc.cpython-312.pyc │ │ │ ├── hashes.cpython-312.pyc │ │ │ ├── logging.cpython-312.pyc │ │ │ ├── misc.cpython-312.pyc │ │ │ ├── models.cpython-312.pyc │ │ │ ├── packaging.cpython-312.pyc │ │ │ ├── setuptools_build.cpython-312.pyc │ │ │ ├── subprocess.cpython-312.pyc │ │ │ ├── temp_dir.cpython-312.pyc │ │ │ ├── unpacking.cpython-312.pyc │ │ │ ├── urls.cpython-312.pyc │ │ │ ├── virtualenv.cpython-312.pyc │ │ │ └── wheel.cpython-312.pyc │ │ ├── _jaraco_text.py │ │ ├── _log.py │ │ ├── appdirs.py │ │ ├── compat.py │ │ ├── compatibility_tags.py │ │ ├── datetime.py │ │ ├── deprecation.py │ │ ├── direct_url_helpers.py │ │ ├── egg_link.py │ │ ├── encoding.py │ │ ├── entrypoints.py │ │ ├── filesystem.py │ │ ├── filetypes.py │ │ ├── glibc.py │ │ ├── hashes.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── models.py │ │ ├── packaging.py │ │ ├── setuptools_build.py │ │ ├── subprocess.py │ │ ├── temp_dir.py │ │ ├── unpacking.py │ │ ├── urls.py │ │ ├── virtualenv.py │ │ └── wheel.py │ ├── vcs │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── bazaar.cpython-312.pyc │ │ │ ├── git.cpython-312.pyc │ │ │ ├── mercurial.cpython-312.pyc │ │ │ ├── subversion.cpython-312.pyc │ │ │ └── versioncontrol.cpython-312.pyc │ │ ├── bazaar.py │ │ ├── git.py │ │ ├── mercurial.py │ │ ├── subversion.py │ │ └── versioncontrol.py │ └── wheel_builder.py │ ├── _vendor │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── six.cpython-312.pyc │ │ └── typing_extensions.cpython-312.pyc │ ├── cachecontrol │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _cmd.cpython-312.pyc │ │ │ ├── adapter.cpython-312.pyc │ │ │ ├── cache.cpython-312.pyc │ │ │ ├── controller.cpython-312.pyc │ │ │ ├── filewrapper.cpython-312.pyc │ │ │ ├── heuristics.cpython-312.pyc │ │ │ ├── serialize.cpython-312.pyc │ │ │ └── wrapper.cpython-312.pyc │ │ ├── _cmd.py │ │ ├── adapter.py │ │ ├── cache.py │ │ ├── caches │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── file_cache.cpython-312.pyc │ │ │ │ └── redis_cache.cpython-312.pyc │ │ │ ├── file_cache.py │ │ │ └── redis_cache.py │ │ ├── controller.py │ │ ├── filewrapper.py │ │ ├── heuristics.py │ │ ├── serialize.py │ │ └── wrapper.py │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ └── core.cpython-312.pyc │ │ ├── cacert.pem │ │ └── core.py │ ├── chardet │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── big5freq.cpython-312.pyc │ │ │ ├── big5prober.cpython-312.pyc │ │ │ ├── chardistribution.cpython-312.pyc │ │ │ ├── charsetgroupprober.cpython-312.pyc │ │ │ ├── charsetprober.cpython-312.pyc │ │ │ ├── codingstatemachine.cpython-312.pyc │ │ │ ├── codingstatemachinedict.cpython-312.pyc │ │ │ ├── cp949prober.cpython-312.pyc │ │ │ ├── enums.cpython-312.pyc │ │ │ ├── escprober.cpython-312.pyc │ │ │ ├── escsm.cpython-312.pyc │ │ │ ├── eucjpprober.cpython-312.pyc │ │ │ ├── euckrfreq.cpython-312.pyc │ │ │ ├── euckrprober.cpython-312.pyc │ │ │ ├── euctwfreq.cpython-312.pyc │ │ │ ├── euctwprober.cpython-312.pyc │ │ │ ├── gb2312freq.cpython-312.pyc │ │ │ ├── gb2312prober.cpython-312.pyc │ │ │ ├── hebrewprober.cpython-312.pyc │ │ │ ├── jisfreq.cpython-312.pyc │ │ │ ├── johabfreq.cpython-312.pyc │ │ │ ├── johabprober.cpython-312.pyc │ │ │ ├── jpcntx.cpython-312.pyc │ │ │ ├── langbulgarianmodel.cpython-312.pyc │ │ │ ├── langgreekmodel.cpython-312.pyc │ │ │ ├── langhebrewmodel.cpython-312.pyc │ │ │ ├── langhungarianmodel.cpython-312.pyc │ │ │ ├── langrussianmodel.cpython-312.pyc │ │ │ ├── langthaimodel.cpython-312.pyc │ │ │ ├── langturkishmodel.cpython-312.pyc │ │ │ ├── latin1prober.cpython-312.pyc │ │ │ ├── macromanprober.cpython-312.pyc │ │ │ ├── mbcharsetprober.cpython-312.pyc │ │ │ ├── mbcsgroupprober.cpython-312.pyc │ │ │ ├── mbcssm.cpython-312.pyc │ │ │ ├── resultdict.cpython-312.pyc │ │ │ ├── sbcharsetprober.cpython-312.pyc │ │ │ ├── sbcsgroupprober.cpython-312.pyc │ │ │ ├── sjisprober.cpython-312.pyc │ │ │ ├── universaldetector.cpython-312.pyc │ │ │ ├── utf1632prober.cpython-312.pyc │ │ │ ├── utf8prober.cpython-312.pyc │ │ │ └── version.cpython-312.pyc │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── chardetect.cpython-312.pyc │ │ │ └── chardetect.py │ │ ├── codingstatemachine.py │ │ ├── codingstatemachinedict.py │ │ ├── cp949prober.py │ │ ├── enums.py │ │ ├── escprober.py │ │ ├── escsm.py │ │ ├── eucjpprober.py │ │ ├── euckrfreq.py │ │ ├── euckrprober.py │ │ ├── euctwfreq.py │ │ ├── euctwprober.py │ │ ├── gb2312freq.py │ │ ├── gb2312prober.py │ │ ├── hebrewprober.py │ │ ├── jisfreq.py │ │ ├── johabfreq.py │ │ ├── johabprober.py │ │ ├── jpcntx.py │ │ ├── langbulgarianmodel.py │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langrussianmodel.py │ │ ├── langthaimodel.py │ │ ├── langturkishmodel.py │ │ ├── latin1prober.py │ │ ├── macromanprober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── metadata │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── languages.cpython-312.pyc │ │ │ └── languages.py │ │ ├── resultdict.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ ├── utf1632prober.py │ │ ├── utf8prober.py │ │ └── version.py │ ├── colorama │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── ansi.cpython-312.pyc │ │ │ ├── ansitowin32.cpython-312.pyc │ │ │ ├── initialise.cpython-312.pyc │ │ │ ├── win32.cpython-312.pyc │ │ │ └── winterm.cpython-312.pyc │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── ansi_test.cpython-312.pyc │ │ │ │ ├── ansitowin32_test.cpython-312.pyc │ │ │ │ ├── initialise_test.cpython-312.pyc │ │ │ │ ├── isatty_test.cpython-312.pyc │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ └── winterm_test.cpython-312.pyc │ │ │ ├── ansi_test.py │ │ │ ├── ansitowin32_test.py │ │ │ ├── initialise_test.py │ │ │ ├── isatty_test.py │ │ │ ├── utils.py │ │ │ └── winterm_test.py │ │ ├── win32.py │ │ └── winterm.py │ ├── distlib │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── compat.cpython-312.pyc │ │ │ ├── database.cpython-312.pyc │ │ │ ├── index.cpython-312.pyc │ │ │ ├── locators.cpython-312.pyc │ │ │ ├── manifest.cpython-312.pyc │ │ │ ├── markers.cpython-312.pyc │ │ │ ├── metadata.cpython-312.pyc │ │ │ ├── resources.cpython-312.pyc │ │ │ ├── scripts.cpython-312.pyc │ │ │ ├── util.cpython-312.pyc │ │ │ ├── version.cpython-312.pyc │ │ │ └── wheel.cpython-312.pyc │ │ ├── compat.py │ │ ├── database.py │ │ ├── index.py │ │ ├── locators.py │ │ ├── manifest.py │ │ ├── markers.py │ │ ├── metadata.py │ │ ├── resources.py │ │ ├── scripts.py │ │ ├── util.py │ │ ├── version.py │ │ └── wheel.py │ ├── distro │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ └── distro.cpython-312.pyc │ │ └── distro.py │ ├── idna │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── codec.cpython-312.pyc │ │ │ ├── compat.cpython-312.pyc │ │ │ ├── core.cpython-312.pyc │ │ │ ├── idnadata.cpython-312.pyc │ │ │ ├── intranges.cpython-312.pyc │ │ │ ├── package_data.cpython-312.pyc │ │ │ └── uts46data.cpython-312.pyc │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ ├── msgpack │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── ext.cpython-312.pyc │ │ │ └── fallback.cpython-312.pyc │ │ ├── exceptions.py │ │ ├── ext.py │ │ └── fallback.py │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __about__.cpython-312.pyc │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _manylinux.cpython-312.pyc │ │ │ ├── _musllinux.cpython-312.pyc │ │ │ ├── _structures.cpython-312.pyc │ │ │ ├── markers.cpython-312.pyc │ │ │ ├── requirements.cpython-312.pyc │ │ │ ├── specifiers.cpython-312.pyc │ │ │ ├── tags.cpython-312.pyc │ │ │ ├── utils.cpython-312.pyc │ │ │ └── version.cpython-312.pyc │ │ ├── _manylinux.py │ │ ├── _musllinux.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── tags.py │ │ ├── utils.py │ │ └── version.py │ ├── pkg_resources │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ └── __init__.cpython-312.pyc │ ├── platformdirs │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ ├── android.cpython-312.pyc │ │ │ ├── api.cpython-312.pyc │ │ │ ├── macos.cpython-312.pyc │ │ │ ├── unix.cpython-312.pyc │ │ │ ├── version.cpython-312.pyc │ │ │ └── windows.cpython-312.pyc │ │ ├── android.py │ │ ├── api.py │ │ ├── macos.py │ │ ├── unix.py │ │ ├── version.py │ │ └── windows.py │ ├── pygments │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ ├── cmdline.cpython-312.pyc │ │ │ ├── console.cpython-312.pyc │ │ │ ├── filter.cpython-312.pyc │ │ │ ├── formatter.cpython-312.pyc │ │ │ ├── lexer.cpython-312.pyc │ │ │ ├── modeline.cpython-312.pyc │ │ │ ├── plugin.cpython-312.pyc │ │ │ ├── regexopt.cpython-312.pyc │ │ │ ├── scanner.cpython-312.pyc │ │ │ ├── sphinxext.cpython-312.pyc │ │ │ ├── style.cpython-312.pyc │ │ │ ├── token.cpython-312.pyc │ │ │ ├── unistring.cpython-312.pyc │ │ │ └── util.cpython-312.pyc │ │ ├── cmdline.py │ │ ├── console.py │ │ ├── filter.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ ├── formatter.py │ │ ├── formatters │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _mapping.cpython-312.pyc │ │ │ │ ├── bbcode.cpython-312.pyc │ │ │ │ ├── groff.cpython-312.pyc │ │ │ │ ├── html.cpython-312.pyc │ │ │ │ ├── img.cpython-312.pyc │ │ │ │ ├── irc.cpython-312.pyc │ │ │ │ ├── latex.cpython-312.pyc │ │ │ │ ├── other.cpython-312.pyc │ │ │ │ ├── pangomarkup.cpython-312.pyc │ │ │ │ ├── rtf.cpython-312.pyc │ │ │ │ ├── svg.cpython-312.pyc │ │ │ │ ├── terminal.cpython-312.pyc │ │ │ │ └── terminal256.cpython-312.pyc │ │ │ ├── _mapping.py │ │ │ ├── bbcode.py │ │ │ ├── groff.py │ │ │ ├── html.py │ │ │ ├── img.py │ │ │ ├── irc.py │ │ │ ├── latex.py │ │ │ ├── other.py │ │ │ ├── pangomarkup.py │ │ │ ├── rtf.py │ │ │ ├── svg.py │ │ │ ├── terminal.py │ │ │ └── terminal256.py │ │ ├── lexer.py │ │ ├── lexers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _mapping.cpython-312.pyc │ │ │ │ └── python.cpython-312.pyc │ │ │ ├── _mapping.py │ │ │ └── python.py │ │ ├── modeline.py │ │ ├── plugin.py │ │ ├── regexopt.py │ │ ├── scanner.py │ │ ├── sphinxext.py │ │ ├── style.py │ │ ├── styles │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ ├── token.py │ │ ├── unistring.py │ │ └── util.py │ ├── pyparsing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── actions.cpython-312.pyc │ │ │ ├── common.cpython-312.pyc │ │ │ ├── core.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── helpers.cpython-312.pyc │ │ │ ├── results.cpython-312.pyc │ │ │ ├── testing.cpython-312.pyc │ │ │ ├── unicode.cpython-312.pyc │ │ │ └── util.cpython-312.pyc │ │ ├── actions.py │ │ ├── common.py │ │ ├── core.py │ │ ├── diagram │ │ │ ├── __init__.py │ │ │ └── __pycache__ │ │ │ │ └── __init__.cpython-312.pyc │ │ ├── exceptions.py │ │ ├── helpers.py │ │ ├── results.py │ │ ├── testing.py │ │ ├── unicode.py │ │ └── util.py │ ├── pyproject_hooks │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _compat.cpython-312.pyc │ │ │ └── _impl.cpython-312.pyc │ │ ├── _compat.py │ │ ├── _impl.py │ │ └── _in_process │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ └── _in_process.cpython-312.pyc │ │ │ └── _in_process.py │ ├── requests │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __version__.cpython-312.pyc │ │ │ ├── _internal_utils.cpython-312.pyc │ │ │ ├── adapters.cpython-312.pyc │ │ │ ├── api.cpython-312.pyc │ │ │ ├── auth.cpython-312.pyc │ │ │ ├── certs.cpython-312.pyc │ │ │ ├── compat.cpython-312.pyc │ │ │ ├── cookies.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── help.cpython-312.pyc │ │ │ ├── hooks.cpython-312.pyc │ │ │ ├── models.cpython-312.pyc │ │ │ ├── packages.cpython-312.pyc │ │ │ ├── sessions.cpython-312.pyc │ │ │ ├── status_codes.cpython-312.pyc │ │ │ ├── structures.cpython-312.pyc │ │ │ └── utils.cpython-312.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-312.pyc │ │ │ ├── providers.cpython-312.pyc │ │ │ ├── reporters.cpython-312.pyc │ │ │ ├── resolvers.cpython-312.pyc │ │ │ └── structs.cpython-312.pyc │ │ ├── compat │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ └── collections_abc.cpython-312.pyc │ │ │ └── collections_abc.py │ │ ├── providers.py │ │ ├── reporters.py │ │ ├── resolvers.py │ │ └── structs.py │ ├── rich │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── __main__.cpython-312.pyc │ │ │ ├── _cell_widths.cpython-312.pyc │ │ │ ├── _emoji_codes.cpython-312.pyc │ │ │ ├── _emoji_replace.cpython-312.pyc │ │ │ ├── _export_format.cpython-312.pyc │ │ │ ├── _extension.cpython-312.pyc │ │ │ ├── _fileno.cpython-312.pyc │ │ │ ├── _inspect.cpython-312.pyc │ │ │ ├── _log_render.cpython-312.pyc │ │ │ ├── _loop.cpython-312.pyc │ │ │ ├── _null_file.cpython-312.pyc │ │ │ ├── _palettes.cpython-312.pyc │ │ │ ├── _pick.cpython-312.pyc │ │ │ ├── _ratio.cpython-312.pyc │ │ │ ├── _spinners.cpython-312.pyc │ │ │ ├── _stack.cpython-312.pyc │ │ │ ├── _timer.cpython-312.pyc │ │ │ ├── _win32_console.cpython-312.pyc │ │ │ ├── _windows.cpython-312.pyc │ │ │ ├── _windows_renderer.cpython-312.pyc │ │ │ ├── _wrap.cpython-312.pyc │ │ │ ├── abc.cpython-312.pyc │ │ │ ├── align.cpython-312.pyc │ │ │ ├── ansi.cpython-312.pyc │ │ │ ├── bar.cpython-312.pyc │ │ │ ├── box.cpython-312.pyc │ │ │ ├── cells.cpython-312.pyc │ │ │ ├── color.cpython-312.pyc │ │ │ ├── color_triplet.cpython-312.pyc │ │ │ ├── columns.cpython-312.pyc │ │ │ ├── console.cpython-312.pyc │ │ │ ├── constrain.cpython-312.pyc │ │ │ ├── containers.cpython-312.pyc │ │ │ ├── control.cpython-312.pyc │ │ │ ├── default_styles.cpython-312.pyc │ │ │ ├── diagnose.cpython-312.pyc │ │ │ ├── emoji.cpython-312.pyc │ │ │ ├── errors.cpython-312.pyc │ │ │ ├── file_proxy.cpython-312.pyc │ │ │ ├── filesize.cpython-312.pyc │ │ │ ├── highlighter.cpython-312.pyc │ │ │ ├── json.cpython-312.pyc │ │ │ ├── jupyter.cpython-312.pyc │ │ │ ├── layout.cpython-312.pyc │ │ │ ├── live.cpython-312.pyc │ │ │ ├── live_render.cpython-312.pyc │ │ │ ├── logging.cpython-312.pyc │ │ │ ├── markup.cpython-312.pyc │ │ │ ├── measure.cpython-312.pyc │ │ │ ├── padding.cpython-312.pyc │ │ │ ├── pager.cpython-312.pyc │ │ │ ├── palette.cpython-312.pyc │ │ │ ├── panel.cpython-312.pyc │ │ │ ├── pretty.cpython-312.pyc │ │ │ ├── progress.cpython-312.pyc │ │ │ ├── progress_bar.cpython-312.pyc │ │ │ ├── prompt.cpython-312.pyc │ │ │ ├── protocol.cpython-312.pyc │ │ │ ├── region.cpython-312.pyc │ │ │ ├── repr.cpython-312.pyc │ │ │ ├── rule.cpython-312.pyc │ │ │ ├── scope.cpython-312.pyc │ │ │ ├── screen.cpython-312.pyc │ │ │ ├── segment.cpython-312.pyc │ │ │ ├── spinner.cpython-312.pyc │ │ │ ├── status.cpython-312.pyc │ │ │ ├── style.cpython-312.pyc │ │ │ ├── styled.cpython-312.pyc │ │ │ ├── syntax.cpython-312.pyc │ │ │ ├── table.cpython-312.pyc │ │ │ ├── terminal_theme.cpython-312.pyc │ │ │ ├── text.cpython-312.pyc │ │ │ ├── theme.cpython-312.pyc │ │ │ ├── themes.cpython-312.pyc │ │ │ ├── traceback.cpython-312.pyc │ │ │ └── tree.cpython-312.pyc │ │ ├── _cell_widths.py │ │ ├── _emoji_codes.py │ │ ├── _emoji_replace.py │ │ ├── _export_format.py │ │ ├── _extension.py │ │ ├── _fileno.py │ │ ├── _inspect.py │ │ ├── _log_render.py │ │ ├── _loop.py │ │ ├── _null_file.py │ │ ├── _palettes.py │ │ ├── _pick.py │ │ ├── _ratio.py │ │ ├── _spinners.py │ │ ├── _stack.py │ │ ├── _timer.py │ │ ├── _win32_console.py │ │ ├── _windows.py │ │ ├── _windows_renderer.py │ │ ├── _wrap.py │ │ ├── abc.py │ │ ├── align.py │ │ ├── ansi.py │ │ ├── bar.py │ │ ├── box.py │ │ ├── cells.py │ │ ├── color.py │ │ ├── color_triplet.py │ │ ├── columns.py │ │ ├── console.py │ │ ├── constrain.py │ │ ├── containers.py │ │ ├── control.py │ │ ├── default_styles.py │ │ ├── diagnose.py │ │ ├── emoji.py │ │ ├── errors.py │ │ ├── file_proxy.py │ │ ├── filesize.py │ │ ├── highlighter.py │ │ ├── json.py │ │ ├── jupyter.py │ │ ├── layout.py │ │ ├── live.py │ │ ├── live_render.py │ │ ├── logging.py │ │ ├── markup.py │ │ ├── measure.py │ │ ├── padding.py │ │ ├── pager.py │ │ ├── palette.py │ │ ├── panel.py │ │ ├── pretty.py │ │ ├── progress.py │ │ ├── progress_bar.py │ │ ├── prompt.py │ │ ├── protocol.py │ │ ├── region.py │ │ ├── repr.py │ │ ├── rule.py │ │ ├── scope.py │ │ ├── screen.py │ │ ├── segment.py │ │ ├── spinner.py │ │ ├── status.py │ │ ├── style.py │ │ ├── styled.py │ │ ├── syntax.py │ │ ├── table.py │ │ ├── terminal_theme.py │ │ ├── text.py │ │ ├── theme.py │ │ ├── themes.py │ │ ├── traceback.py │ │ └── tree.py │ ├── six.py │ ├── tenacity │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _asyncio.cpython-312.pyc │ │ │ ├── _utils.cpython-312.pyc │ │ │ ├── after.cpython-312.pyc │ │ │ ├── before.cpython-312.pyc │ │ │ ├── before_sleep.cpython-312.pyc │ │ │ ├── nap.cpython-312.pyc │ │ │ ├── retry.cpython-312.pyc │ │ │ ├── stop.cpython-312.pyc │ │ │ ├── tornadoweb.cpython-312.pyc │ │ │ └── wait.cpython-312.pyc │ │ ├── _asyncio.py │ │ ├── _utils.py │ │ ├── after.py │ │ ├── before.py │ │ ├── before_sleep.py │ │ ├── nap.py │ │ ├── retry.py │ │ ├── stop.py │ │ ├── tornadoweb.py │ │ └── wait.py │ ├── tomli │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _parser.cpython-312.pyc │ │ │ ├── _re.cpython-312.pyc │ │ │ └── _types.cpython-312.pyc │ │ ├── _parser.py │ │ ├── _re.py │ │ └── _types.py │ ├── truststore │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _api.cpython-312.pyc │ │ │ ├── _macos.cpython-312.pyc │ │ │ ├── _openssl.cpython-312.pyc │ │ │ ├── _ssl_constants.cpython-312.pyc │ │ │ └── _windows.cpython-312.pyc │ │ ├── _api.py │ │ ├── _macos.py │ │ ├── _openssl.py │ │ ├── _ssl_constants.py │ │ └── _windows.py │ ├── typing_extensions.py │ ├── urllib3 │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── _collections.cpython-312.pyc │ │ │ ├── _version.cpython-312.pyc │ │ │ ├── connection.cpython-312.pyc │ │ │ ├── connectionpool.cpython-312.pyc │ │ │ ├── exceptions.cpython-312.pyc │ │ │ ├── fields.cpython-312.pyc │ │ │ ├── filepost.cpython-312.pyc │ │ │ ├── poolmanager.cpython-312.pyc │ │ │ ├── request.cpython-312.pyc │ │ │ └── response.cpython-312.pyc │ │ ├── _collections.py │ │ ├── _version.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _appengine_environ.cpython-312.pyc │ │ │ │ ├── appengine.cpython-312.pyc │ │ │ │ ├── ntlmpool.cpython-312.pyc │ │ │ │ ├── pyopenssl.cpython-312.pyc │ │ │ │ ├── securetransport.cpython-312.pyc │ │ │ │ └── socks.cpython-312.pyc │ │ │ ├── _appengine_environ.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── bindings.cpython-312.pyc │ │ │ │ │ └── low_level.cpython-312.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-312.pyc │ │ │ │ └── six.cpython-312.pyc │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ │ ├── makefile.cpython-312.pyc │ │ │ │ │ └── weakref_finalize.cpython-312.pyc │ │ │ │ ├── makefile.py │ │ │ │ └── weakref_finalize.py │ │ │ └── six.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-312.pyc │ │ │ ├── connection.cpython-312.pyc │ │ │ ├── proxy.cpython-312.pyc │ │ │ ├── queue.cpython-312.pyc │ │ │ ├── request.cpython-312.pyc │ │ │ ├── response.cpython-312.pyc │ │ │ ├── retry.cpython-312.pyc │ │ │ ├── ssl_.cpython-312.pyc │ │ │ ├── ssl_match_hostname.cpython-312.pyc │ │ │ ├── ssltransport.cpython-312.pyc │ │ │ ├── timeout.cpython-312.pyc │ │ │ ├── url.cpython-312.pyc │ │ │ └── wait.cpython-312.pyc │ │ │ ├── connection.py │ │ │ ├── proxy.py │ │ │ ├── queue.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── ssl_match_hostname.py │ │ │ ├── ssltransport.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ ├── vendor.txt │ └── webencodings │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-312.pyc │ │ ├── labels.cpython-312.pyc │ │ ├── mklabels.cpython-312.pyc │ │ ├── tests.cpython-312.pyc │ │ └── x_user_defined.cpython-312.pyc │ │ ├── labels.py │ │ ├── mklabels.py │ │ ├── tests.py │ │ └── x_user_defined.py │ └── py.typed ├── lib64 └── pyvenv.cfg /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | # Datasource local storage ignored files 7 | /dataSources/ 8 | /dataSources.local.xml 9 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CRUD-operation 2 | -------------------------------------------------------------------------------- /crudapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/__init__.py -------------------------------------------------------------------------------- /crudapp/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/__pycache__/admin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/__pycache__/admin.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/__pycache__/apps.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/__pycache__/apps.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/__pycache__/forms.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/__pycache__/forms.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/__pycache__/models.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/__pycache__/models.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/__pycache__/views.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/__pycache__/views.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | 3 | # Register your models here. 4 | from .models import User 5 | admin.site.register(User) -------------------------------------------------------------------------------- /crudapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CrudappConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'crudapp' 7 | -------------------------------------------------------------------------------- /crudapp/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/migrations/__init__.py -------------------------------------------------------------------------------- /crudapp/migrations/__pycache__/0001_initial.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/migrations/__pycache__/0001_initial.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/migrations/__pycache__/0002_remove_user_mobile_user_mobile_number.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/migrations/__pycache__/0002_remove_user_mobile_user_mobile_number.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/migrations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudapp/migrations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /crudapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /crudproject/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudproject/__init__.py -------------------------------------------------------------------------------- /crudproject/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudproject/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /crudproject/__pycache__/settings.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudproject/__pycache__/settings.cpython-312.pyc -------------------------------------------------------------------------------- /crudproject/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudproject/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /crudproject/__pycache__/wsgi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/crudproject/__pycache__/wsgi.cpython-312.pyc -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/db.sqlite3 -------------------------------------------------------------------------------- /media/uploads/VG_LOG2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/media/uploads/VG_LOG2.png -------------------------------------------------------------------------------- /media/uploads/VG_LOG2_0oyjbic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/media/uploads/VG_LOG2_0oyjbic.png -------------------------------------------------------------------------------- /media/uploads/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/media/uploads/log.png -------------------------------------------------------------------------------- /media/uploads/long2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/media/uploads/long2.png -------------------------------------------------------------------------------- /myenv/bin/python: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /myenv/bin/python3: -------------------------------------------------------------------------------- 1 | /usr/bin/python3 -------------------------------------------------------------------------------- /myenv/bin/python3.12: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__main__.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | 3 | import sys 4 | 5 | from .features import pilinfo 6 | 7 | pilinfo(supported_formats="--report" not in sys.argv) 8 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/BdfFontFile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/BdfFontFile.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/BlpImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/BlpImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/BmpImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/BmpImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/BufrStubImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/BufrStubImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ContainerIO.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ContainerIO.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/CurImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/CurImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/DcxImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/DcxImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/DdsImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/DdsImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/EpsImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/EpsImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ExifTags.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ExifTags.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/FitsImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/FitsImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/FliImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/FliImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/FontFile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/FontFile.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/FpxImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/FpxImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/FtexImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/FtexImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/GbrImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/GbrImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/GdImageFile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/GdImageFile.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/GifImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/GifImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/GimpGradientFile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/GimpGradientFile.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/GimpPaletteFile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/GimpPaletteFile.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/GribStubImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/GribStubImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/Hdf5StubImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/Hdf5StubImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/IcnsImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/IcnsImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/IcoImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/IcoImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/Image.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/Image.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageChops.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageChops.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageCms.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageCms.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageColor.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageColor.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw2.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageDraw2.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageEnhance.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageEnhance.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageFile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageFile.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageFilter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageFilter.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageFont.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageFont.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageGrab.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageGrab.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageMath.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageMath.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageMode.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageMode.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageMorph.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageMorph.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageOps.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageOps.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImagePalette.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImagePalette.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImagePath.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImagePath.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageQt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageQt.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageSequence.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageSequence.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageShow.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageShow.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageStat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageStat.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageTk.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageTk.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageTransform.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageTransform.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageWin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImageWin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/ImtImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/ImtImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/IptcImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/IptcImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/Jpeg2KImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/Jpeg2KImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/JpegImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/JpegImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/JpegPresets.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/JpegPresets.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/McIdasImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/McIdasImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/MicImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/MicImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/MpegImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/MpegImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/MpoImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/MpoImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/MspImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/MspImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PSDraw.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PSDraw.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PaletteFile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PaletteFile.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PalmImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PalmImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PcdImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PcdImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PcfFontFile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PcfFontFile.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PcxImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PcxImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PdfImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PdfImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PdfParser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PdfParser.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PixarImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PixarImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PngImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PngImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PpmImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PpmImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/PsdImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/PsdImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/QoiImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/QoiImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/SgiImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/SgiImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/SpiderImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/SpiderImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/SunImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/SunImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/TarIO.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/TarIO.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/TgaImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/TgaImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/TiffImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/TiffImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/TiffTags.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/TiffTags.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/WalImageFile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/WalImageFile.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/WebPImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/WebPImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/WmfImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/WmfImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/XVThumbImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/XVThumbImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/XbmImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/XbmImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/XpmImagePlugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/XpmImagePlugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/_binary.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/_binary.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/_deprecate.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/_deprecate.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/_tkinter_finder.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/_tkinter_finder.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/_typing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/_typing.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/_util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/_util.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/_version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/_version.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/features.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/features.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/__pycache__/report.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/__pycache__/report.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_imaging.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/_imaging.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_imagingcms.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/_imagingcms.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_imagingft.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/_imagingft.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_imagingmath.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/_imagingmath.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_imagingmath.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... 4 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_imagingmorph.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/_imagingmorph.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_imagingmorph.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... 4 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_imagingtk.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/_imagingtk.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_imagingtk.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... 4 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_version.py: -------------------------------------------------------------------------------- 1 | # Master version for Pillow 2 | from __future__ import annotations 3 | 4 | __version__ = "11.1.0" 5 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_webp.cpython-312-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/_webp.cpython-312-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/_webp.pyi: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | def __getattr__(name: str) -> Any: ... 4 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/PIL/py.typed -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/PIL/report.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | 3 | from .features import pilinfo 4 | 5 | pilinfo(supported_formats=False) 6 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow-11.1.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow-11.1.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow-11.1.0.dist-info/REQUESTED -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow-11.1.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (75.6.0) 3 | Root-Is-Purelib: false 4 | Tag: cp312-cp312-manylinux_2_28_x86_64 5 | 6 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow-11.1.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | PIL 2 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow-11.1.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libXau-154567c4.so.6.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libXau-154567c4.so.6.0.0 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libbrotlicommon-5b2eba61.so.1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libbrotlicommon-5b2eba61.so.1.1.0 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libbrotlidec-a621e7f2.so.1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libbrotlidec-a621e7f2.so.1.1.0 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libfreetype-edd71024.so.6.20.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libfreetype-edd71024.so.6.20.1 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libharfbuzz-07d0ad17.so.0.61010.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libharfbuzz-07d0ad17.so.0.61010.0 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libjpeg-0988b44a.so.62.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libjpeg-0988b44a.so.62.4.0 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/liblcms2-525547ec.so.2.0.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/liblcms2-525547ec.so.2.0.16 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/liblzma-a5872208.so.5.6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/liblzma-a5872208.so.5.6.3 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libopenjp2-ca16f087.so.2.5.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libopenjp2-ca16f087.so.2.5.3 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libpng16-2a828d05.so.16.44.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libpng16-2a828d05.so.16.44.0 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libsharpyuv-f67a7212.so.0.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libsharpyuv-f67a7212.so.0.1.1 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libtiff-a92b430c.so.6.0.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libtiff-a92b430c.so.6.0.2 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libwebp-0feb04d2.so.7.1.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libwebp-0feb04d2.so.7.1.10 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libwebpdemux-e5426797.so.2.0.16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libwebpdemux-e5426797.so.2.0.16 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libwebpmux-f0bc54e2.so.3.1.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libwebpmux-f0bc54e2.so.3.1.1 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pillow.libs/libxcb-0b763ed5.so.1.1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pillow.libs/libxcb-0b763ed5.so.1.1.0 -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip-24.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip-24.0.dist-info/REQUESTED -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip-24.0.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.42.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip-24.0.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | pip3.12 = pip._internal.cli.main:main 5 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip-24.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/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 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/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 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py: -------------------------------------------------------------------------------- 1 | from ._dists import Distribution 2 | from ._envs import Environment 3 | 4 | __all__ = ["NAME", "Distribution", "Environment"] 5 | 6 | NAME = "importlib" 7 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/models.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/__pycache__/six.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __all__ = ["contents", "where"] 4 | __version__ = "2023.07.22" 5 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabfreq.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/johabprober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/resultdict.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf1632prober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/chardet/metadata/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright Jonathan Hartley 2013. BSD 3-Clause license, see LICENSE file. 2 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/colorama/tests/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py: -------------------------------------------------------------------------------- 1 | from .distro import main 2 | 3 | if __name__ == "__main__": 4 | main() 5 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.4' 2 | 3 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py: -------------------------------------------------------------------------------- 1 | # file generated by setuptools_scm 2 | # don't change, don't track in version control 3 | __version__ = version = '3.8.1' 4 | __version_tuple__ = version_tuple = (3, 8, 1) 5 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_compat.py: -------------------------------------------------------------------------------- 1 | __all__ = ("tomllib",) 2 | 3 | import sys 4 | 5 | if sys.version_info >= (3, 11): 6 | import tomllib 7 | else: 8 | from pip._vendor import tomli as tomllib 9 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/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 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- 1 | from typing import NamedTuple 2 | 3 | 4 | class Region(NamedTuple): 5 | """Defines a rectangular region of the screen.""" 6 | 7 | x: int 8 | y: int 9 | width: int 10 | height: int 11 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- 1 | from .default_styles import DEFAULT_STYLES 2 | from .theme import Theme 3 | 4 | 5 | DEFAULT = Theme(DEFAULT_STYLES) 6 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.17" 3 | -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vigor254/CRUD-init/8aa85f47ebd9e4ed9d1a2d61288018d8459b3456/myenv/lib/python3.12/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-312.pyc -------------------------------------------------------------------------------- /myenv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /myenv/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = /usr/bin 2 | include-system-site-packages = false 3 | version = 3.12.3 4 | executable = /usr/bin/python3.12 5 | command = /usr/bin/python3 -m venv /home/user/Desktop/crudproject/myenv 6 | --------------------------------------------------------------------------------