├── Frontend ├── .gitignore ├── README.md ├── jsconfig.json ├── next.config.mjs ├── package-lock.json ├── package.json ├── postcss.config.mjs ├── public │ ├── file.svg │ ├── globe.svg │ ├── next.svg │ ├── vercel.svg │ └── window.svg ├── src │ └── app │ │ ├── AnalysisContainer.jsx │ │ ├── Components │ │ ├── ApplicantCard.jsx │ │ ├── PaidFeatures.jsx │ │ ├── PriceRange.jsx │ │ ├── ProductForm.jsx │ │ └── TechStack.jsx │ │ ├── CustomRouter.jsx │ │ ├── Hiring.jsx │ │ ├── bg.png │ │ ├── favicon.ico │ │ ├── globals.css │ │ ├── layout.js │ │ └── page.jsx └── tailwind.config.mjs ├── LICENSE ├── README.md └── backend ├── .env ├── agents ├── __pycache__ │ ├── price_prediction_agent.cpython-312.pyc │ └── resume_analysis_agent.cpython-312.pyc ├── crew_ai_agent.py ├── price_prediction_agent.py └── resume_analysis_agent.py ├── app.py ├── data └── soapnutshistory.csv ├── env ├── Lib │ └── site-packages │ │ ├── pip-24.2.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 │ │ │ │ ├── index_command.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 │ │ │ ├── index_command.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 │ │ │ │ ├── packaging.cpython-312.pyc │ │ │ │ ├── retry.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 │ │ │ ├── packaging.py │ │ │ ├── retry.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 │ │ │ └── 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 │ │ │ ├── py.typed │ │ │ ├── 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 │ │ │ └── py.typed │ │ ├── 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 │ │ │ ├── t32.exe │ │ │ ├── t64-arm.exe │ │ │ ├── t64.exe │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── w32.exe │ │ │ ├── w64-arm.exe │ │ │ ├── w64.exe │ │ │ └── wheel.py │ │ ├── distro │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── __main__.cpython-312.pyc │ │ │ │ └── distro.cpython-312.pyc │ │ │ ├── distro.py │ │ │ └── py.typed │ │ ├── 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 │ │ │ ├── py.typed │ │ │ └── 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 │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-312.pyc │ │ │ │ ├── _elffile.cpython-312.pyc │ │ │ │ ├── _manylinux.cpython-312.pyc │ │ │ │ ├── _musllinux.cpython-312.pyc │ │ │ │ ├── _parser.cpython-312.pyc │ │ │ │ ├── _structures.cpython-312.pyc │ │ │ │ ├── _tokenizer.cpython-312.pyc │ │ │ │ ├── markers.cpython-312.pyc │ │ │ │ ├── metadata.cpython-312.pyc │ │ │ │ ├── requirements.cpython-312.pyc │ │ │ │ ├── specifiers.cpython-312.pyc │ │ │ │ ├── tags.cpython-312.pyc │ │ │ │ ├── utils.cpython-312.pyc │ │ │ │ └── version.cpython-312.pyc │ │ │ ├── _elffile.py │ │ │ ├── _manylinux.py │ │ │ ├── _musllinux.py │ │ │ ├── _parser.py │ │ │ ├── _structures.py │ │ │ ├── _tokenizer.py │ │ │ ├── markers.py │ │ │ ├── metadata.py │ │ │ ├── py.typed │ │ │ ├── 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 │ │ │ ├── py.typed │ │ │ ├── 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 │ │ │ │ │ └── _mapping.cpython-312.pyc │ │ │ │ └── _mapping.py │ │ │ ├── token.py │ │ │ ├── unistring.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 │ │ │ ├── py.typed │ │ │ ├── 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 │ │ │ ├── py.typed │ │ │ ├── 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 │ │ ├── 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 │ │ │ └── py.typed │ │ ├── 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 │ │ │ └── py.typed │ │ ├── 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 │ │ └── py.typed ├── Scripts │ ├── Activate.ps1 │ ├── activate │ ├── activate.bat │ ├── deactivate.bat │ ├── pip.exe │ ├── pip3.12.exe │ ├── pip3.exe │ ├── python.exe │ └── pythonw.exe └── pyvenv.cfg ├── main.py ├── requirements.txt └── utils ├── __pycache__ └── pdf_extractor.cpython-312.pyc └── pdf_extractor.py /Frontend/.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.* 7 | .yarn/* 8 | !.yarn/patches 9 | !.yarn/plugins 10 | !.yarn/releases 11 | !.yarn/versions 12 | 13 | # testing 14 | /coverage 15 | 16 | # next.js 17 | /.next/ 18 | /out/ 19 | 20 | # production 21 | /build 22 | 23 | # misc 24 | .DS_Store 25 | *.pem 26 | 27 | # debug 28 | npm-debug.log* 29 | yarn-debug.log* 30 | yarn-error.log* 31 | .pnpm-debug.log* 32 | 33 | # env files (can opt-in for committing if needed) 34 | .env* 35 | 36 | # vercel 37 | .vercel 38 | 39 | # typescript 40 | *.tsbuildinfo 41 | next-env.d.ts 42 | -------------------------------------------------------------------------------- /Frontend/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "paths": { 4 | "@/*": ["./src/*"] 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /Frontend/next.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = {}; 3 | 4 | export default nextConfig; 5 | -------------------------------------------------------------------------------- /Frontend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "enterprise_hire", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "dev": "next dev --turbopack", 7 | "build": "next build", 8 | "start": "next start", 9 | "lint": "next lint" 10 | }, 11 | "dependencies": { 12 | "lucide-react": "^0.475.0", 13 | "next": "15.1.7", 14 | "react": "^19.0.0", 15 | "react-dom": "^19.0.0", 16 | "react-router-dom": "^7.2.0", 17 | "react-tsparticles": "^2.12.2", 18 | "recharts": "^2.15.1" 19 | }, 20 | "devDependencies": { 21 | "postcss": "^8", 22 | "tailwindcss": "^3.4.1" 23 | }, 24 | "description": "This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).", 25 | "main": "index.js", 26 | "keywords": [], 27 | "author": "", 28 | "license": "ISC", 29 | "type": "module" 30 | } 31 | -------------------------------------------------------------------------------- /Frontend/postcss.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('postcss-load-config').Config} */ 2 | const config = { 3 | plugins: { 4 | tailwindcss: {}, 5 | }, 6 | }; 7 | 8 | export default config; 9 | -------------------------------------------------------------------------------- /Frontend/public/file.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/public/globe.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/public/vercel.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/public/window.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Frontend/src/app/Components/TechStack.jsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | export default function TechStack() { 4 | const techs = ["React", "Next.js", "Node.js", "MongoDB", "GraphQL",]; 5 | 6 | return ( 7 |
8 |
9 | {/* Tech Stack Label */} 10 |

Tech Stack

11 | 12 | {/* Tech Stack Container */} 13 |
14 | {techs.map((tech, index) => ( 15 |
19 | {tech} 20 |
21 | ))} 22 |
23 |
24 |
25 | ); 26 | } 27 | 28 | -------------------------------------------------------------------------------- /Frontend/src/app/CustomRouter.jsx: -------------------------------------------------------------------------------- 1 | "use client"; 2 | 3 | import { BrowserRouter as Router, Routes, Route } from "react-router-dom"; 4 | import Home from "./page"; 5 | import Hiring from "./Hiring"; 6 | import AnalysisContainer from "./AnalysisContainer"; 7 | export default function CustomRouter() { 8 | return ( 9 | 10 | 11 | } /> 12 | } /> 13 | } /> 14 | 15 | 16 | ); 17 | } 18 | -------------------------------------------------------------------------------- /Frontend/src/app/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/Frontend/src/app/bg.png -------------------------------------------------------------------------------- /Frontend/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/Frontend/src/app/favicon.ico -------------------------------------------------------------------------------- /Frontend/src/app/layout.js: -------------------------------------------------------------------------------- 1 | import { Geist, Geist_Mono } from "next/font/google"; 2 | import "./globals.css"; 3 | import CustomRouter from "./CustomRouter"; 4 | 5 | const geistSans = Geist({ 6 | variable: "--font-geist-sans", 7 | subsets: ["latin"], 8 | }); 9 | 10 | const geistMono = Geist_Mono({ 11 | variable: "--font-geist-mono", 12 | subsets: ["latin"], 13 | }); 14 | 15 | export const metadata = { 16 | title: "Create Next App", 17 | description: "Generated by create next app", 18 | }; 19 | 20 | export default function RootLayout({ children }) { 21 | return ( 22 | 23 | 24 |
{/* Moving Grid Background */} 25 | 26 | {children} 27 | 28 | 29 | 30 | ); 31 | } 32 | -------------------------------------------------------------------------------- /Frontend/src/app/page.jsx: -------------------------------------------------------------------------------- 1 | "use client" 2 | 3 | import Image from "next/image"; 4 | import ProductForm from "./Components/ProductForm"; 5 | import AnalysisContainer from "./AnalysisContainer"; 6 | 7 | 8 | export default function Home() { 9 | return ( 10 |
11 |
12 |

New Product Analysis

13 | 14 |
15 |
16 | ); 17 | } 18 | -------------------------------------------------------------------------------- /Frontend/tailwind.config.mjs: -------------------------------------------------------------------------------- 1 | /** @type {import('tailwindcss').Config} */ 2 | export default { 3 | content: [ 4 | "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", 5 | "./src/components/**/*.{js,ts,jsx,tsx,mdx}", 6 | "./src/app/**/*.{js,ts,jsx,tsx,mdx}", 7 | ], 8 | theme: { 9 | extend: { 10 | colors: { 11 | background: "var(--background)", 12 | foreground: "var(--foreground)", 13 | }, 14 | }, 15 | }, 16 | plugins: [], 17 | }; 18 | -------------------------------------------------------------------------------- /backend/.env: -------------------------------------------------------------------------------- 1 | GROQ_API_KEY=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 -------------------------------------------------------------------------------- /backend/agents/__pycache__/price_prediction_agent.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/agents/__pycache__/price_prediction_agent.cpython-312.pyc -------------------------------------------------------------------------------- /backend/agents/__pycache__/resume_analysis_agent.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/agents/__pycache__/resume_analysis_agent.cpython-312.pyc -------------------------------------------------------------------------------- /backend/data/soapnutshistory.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/data/soapnutshistory.csv -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip-24.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip-24.2.dist-info/REQUESTED: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip-24.2.dist-info/REQUESTED -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip-24.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: setuptools (71.1.0) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip-24.2.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [console_scripts] 2 | pip = pip._internal.cli.main:main 3 | pip3 = pip._internal.cli.main:main 4 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip-24.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | from typing import List, Optional 2 | 3 | __version__ = "24.2" 4 | 5 | 6 | def main(args: Optional[List[str]] = None) -> int: 7 | """This is an internal API only meant for use by pip's own console scripts. 8 | 9 | For additional details, see https://github.com/pypa/pip/issues/7498. 10 | """ 11 | from pip._internal.utils.entrypoints import _wrapper 12 | 13 | return _wrapper(args) 14 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | # Remove '' and current working directory from the first entry 5 | # of sys.path, if present to avoid using current directory 6 | # in pip commands check, freeze, install, list and show, 7 | # when invoked as python -m pip 8 | if sys.path[0] in ("", os.getcwd()): 9 | sys.path.pop(0) 10 | 11 | # If we are running from a wheel, add the wheel to sys.path 12 | # This allows the usage python pip-*.whl/pip install pip-*.whl 13 | if __package__ == "": 14 | # __file__ is pip-*.whl/pip/__main__.py 15 | # first dirname call strips of '/__main__.py', second strips off '/pip' 16 | # Resulting path is the name of the wheel itself 17 | # Add that to sys.path so we can import pip 18 | path = os.path.dirname(os.path.dirname(__file__)) 19 | sys.path.insert(0, path) 20 | 21 | if __name__ == "__main__": 22 | from pip._internal.cli.main import main as _main 23 | 24 | sys.exit(_main()) 25 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- 1 | from typing import List, Optional 2 | 3 | from pip._internal.utils import _log 4 | 5 | # init_logging() must be called before any call to logging.getLogger() 6 | # which happens at import of most modules. 7 | _log.init_logging() 8 | 9 | 10 | def main(args: Optional[List[str]] = None) -> int: 11 | """This is preserved for old console scripts that may still be referencing 12 | it. 13 | 14 | For additional details, see https://github.com/pypa/pip/issues/7498. 15 | """ 16 | from pip._internal.utils.entrypoints import _wrapper 17 | 18 | return _wrapper(args) 19 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- 1 | """Subpackage containing all of pip's command line interface related code 2 | """ 3 | 4 | # This file intentionally does not import submodules 5 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/command_context.py: -------------------------------------------------------------------------------- 1 | from contextlib import ExitStack, contextmanager 2 | from typing import ContextManager, Generator, TypeVar 3 | 4 | _T = TypeVar("_T", covariant=True) 5 | 6 | 7 | class CommandContextMixIn: 8 | def __init__(self) -> None: 9 | super().__init__() 10 | self._in_main_context = False 11 | self._main_context = ExitStack() 12 | 13 | @contextmanager 14 | def main_context(self) -> Generator[None, None, None]: 15 | assert not self._in_main_context 16 | 17 | self._in_main_context = True 18 | try: 19 | with self._main_context: 20 | yield 21 | finally: 22 | self._in_main_context = False 23 | 24 | def enter_context(self, context_provider: ContextManager[_T]) -> _T: 25 | assert self._in_main_context 26 | 27 | return self._main_context.enter_context(context_provider) 28 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- 1 | SUCCESS = 0 2 | ERROR = 1 3 | UNKNOWN_ERROR = 2 4 | VIRTUALENV_NOT_FOUND = 3 5 | PREVIOUS_BUILD_DIR_ERROR = 4 6 | NO_MATCHES_FOUND = 23 7 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | from pip._internal.distributions.base import AbstractDistribution 2 | from pip._internal.distributions.sdist import SourceDistribution 3 | from pip._internal.distributions.wheel import WheelDistribution 4 | from pip._internal.req.req_install import InstallRequirement 5 | 6 | 7 | def make_distribution_for_install_requirement( 8 | install_req: InstallRequirement, 9 | ) -> AbstractDistribution: 10 | """Returns a Distribution for the given InstallRequirement""" 11 | # Editable requirements will always be source distributions. They use the 12 | # legacy logic until we create a modern standard for them. 13 | if install_req.editable: 14 | return SourceDistribution(install_req) 15 | 16 | # If it's a wheel, it's a WheelDistribution 17 | if install_req.is_wheel: 18 | return WheelDistribution(install_req) 19 | 20 | # Otherwise, a SourceDistribution 21 | return SourceDistribution(install_req) 22 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/distributions/installed.py: -------------------------------------------------------------------------------- 1 | from typing import Optional 2 | 3 | from pip._internal.distributions.base import AbstractDistribution 4 | from pip._internal.index.package_finder import PackageFinder 5 | from pip._internal.metadata import BaseDistribution 6 | 7 | 8 | class InstalledDistribution(AbstractDistribution): 9 | """Represents an installed package. 10 | 11 | This does not need any preparation as the required information has already 12 | been computed. 13 | """ 14 | 15 | @property 16 | def build_tracker_id(self) -> Optional[str]: 17 | return None 18 | 19 | def get_metadata_distribution(self) -> BaseDistribution: 20 | assert self.req.satisfied_by is not None, "not actually installed" 21 | return self.req.satisfied_by 22 | 23 | def prepare_distribution_metadata( 24 | self, 25 | finder: PackageFinder, 26 | build_isolation: bool, 27 | check_build_deps: bool, 28 | ) -> None: 29 | pass 30 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/index/__init__.py: -------------------------------------------------------------------------------- 1 | """Index interaction code 2 | """ 3 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/main.py: -------------------------------------------------------------------------------- 1 | from typing import List, Optional 2 | 3 | 4 | def main(args: Optional[List[str]] = None) -> int: 5 | """This is preserved for old console scripts that may still be referencing 6 | it. 7 | 8 | For additional details, see https://github.com/pypa/pip/issues/7498. 9 | """ 10 | from pip._internal.utils.entrypoints import _wrapper 11 | 12 | return _wrapper(args) 13 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/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 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- 1 | """A package that contains models that represent entities. 2 | """ 3 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- 1 | from dataclasses import dataclass 2 | 3 | from pip._vendor.packaging.version import Version 4 | from pip._vendor.packaging.version import parse as parse_version 5 | 6 | from pip._internal.models.link import Link 7 | 8 | 9 | @dataclass(frozen=True) 10 | class InstallationCandidate: 11 | """Represents a potential "candidate" for installation.""" 12 | 13 | __slots__ = ["name", "version", "link"] 14 | 15 | name: str 16 | version: Version 17 | link: Link 18 | 19 | def __init__(self, name: str, version: str, link: Link) -> None: 20 | object.__setattr__(self, "name", name) 21 | object.__setattr__(self, "version", parse_version(version)) 22 | object.__setattr__(self, "link", link) 23 | 24 | def __str__(self) -> str: 25 | return f"{self.name!r} candidate (version {self.version} at {self.link})" 26 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/models/scheme.py: -------------------------------------------------------------------------------- 1 | """ 2 | For types associated with installation schemes. 3 | 4 | For a general overview of available schemes and their context, see 5 | https://docs.python.org/3/install/index.html#alternate-installation. 6 | """ 7 | 8 | from dataclasses import dataclass 9 | 10 | SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] 11 | 12 | 13 | @dataclass(frozen=True) 14 | class Scheme: 15 | """A Scheme holds paths which are used as the base directories for 16 | artifacts associated with a Python package. 17 | """ 18 | 19 | __slots__ = SCHEME_KEYS 20 | 21 | platlib: str 22 | purelib: str 23 | headers: str 24 | scripts: str 25 | data: str 26 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Contains purely network-related utilities. 2 | """ 3 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/build/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/build/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/install/__init__.py: -------------------------------------------------------------------------------- 1 | """For modules related to installing packages. 2 | """ 3 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/base.py: -------------------------------------------------------------------------------- 1 | from typing import Callable, List, Optional 2 | 3 | from pip._internal.req.req_install import InstallRequirement 4 | from pip._internal.req.req_set import RequirementSet 5 | 6 | InstallRequirementProvider = Callable[ 7 | [str, Optional[InstallRequirement]], InstallRequirement 8 | ] 9 | 10 | 11 | class BaseResolver: 12 | def resolve( 13 | self, root_reqs: List[InstallRequirement], check_supported_wheels: bool 14 | ) -> RequirementSet: 15 | raise NotImplementedError() 16 | 17 | def get_installation_order( 18 | self, req_set: RequirementSet 19 | ) -> List[InstallRequirement]: 20 | raise NotImplementedError() 21 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/datetime.py: -------------------------------------------------------------------------------- 1 | """For when pip wants to check the date or time. 2 | """ 3 | 4 | import datetime 5 | 6 | 7 | def today_is_later_than(year: int, month: int, day: int) -> bool: 8 | today = datetime.date.today() 9 | given = datetime.date(year, month, day) 10 | 11 | return today > given 12 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/utils/filetypes.py: -------------------------------------------------------------------------------- 1 | """Filetype information. 2 | """ 3 | 4 | from typing import Tuple 5 | 6 | from pip._internal.utils.misc import splitext 7 | 8 | WHEEL_EXTENSION = ".whl" 9 | BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") 10 | XZ_EXTENSIONS: Tuple[str, ...] = ( 11 | ".tar.xz", 12 | ".txz", 13 | ".tlz", 14 | ".tar.lz", 15 | ".tar.lzma", 16 | ) 17 | ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) 18 | TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") 19 | ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS 20 | 21 | 22 | def is_archive_file(name: str) -> bool: 23 | """Return True if `name` is a considered as an archive file.""" 24 | ext = splitext(name)[1].lower() 25 | if ext in ARCHIVE_EXTENSIONS: 26 | return True 27 | return False 28 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- 1 | # Expose a limited set of classes and functions so callers outside of 2 | # the vcs package don't need to import deeper than `pip._internal.vcs`. 3 | # (The test directory may still need to import from a vcs sub-package.) 4 | # Import all vcs modules to register each VCS in the VcsSupport object. 5 | import pip._internal.vcs.bazaar 6 | import pip._internal.vcs.git 7 | import pip._internal.vcs.mercurial 8 | import pip._internal.vcs.subversion # noqa: F401 9 | from pip._internal.vcs.versioncontrol import ( # noqa: F401 10 | RemoteNotFoundError, 11 | RemoteNotValidError, 12 | is_url, 13 | make_vcs_requirement_url, 14 | vcs, 15 | ) 16 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2015 Eric Larson 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | """CacheControl import Interface. 6 | 7 | Make it easy to import from cachecontrol without long namespaces. 8 | """ 9 | __author__ = "Eric Larson" 10 | __email__ = "eric@ionrock.org" 11 | __version__ = "0.14.0" 12 | 13 | from pip._vendor.cachecontrol.adapter import CacheControlAdapter 14 | from pip._vendor.cachecontrol.controller import CacheController 15 | from pip._vendor.cachecontrol.wrapper import CacheControl 16 | 17 | __all__ = [ 18 | "__author__", 19 | "__email__", 20 | "__version__", 21 | "CacheControlAdapter", 22 | "CacheController", 23 | "CacheControl", 24 | ] 25 | 26 | import logging 27 | 28 | logging.getLogger(__name__).addHandler(logging.NullHandler()) 29 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2015 Eric Larson 2 | # 3 | # SPDX-License-Identifier: Apache-2.0 4 | 5 | from pip._vendor.cachecontrol.caches.file_cache import FileCache, SeparateBodyFileCache 6 | from pip._vendor.cachecontrol.caches.redis_cache import RedisCache 7 | 8 | __all__ = ["FileCache", "SeparateBodyFileCache", "RedisCache"] 9 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/cachecontrol/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/cachecontrol/py.typed -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import contents, where 2 | 3 | __all__ = ["contents", "where"] 4 | __version__ = "2024.07.04" 5 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- 1 | import argparse 2 | 3 | from pip._vendor.certifi import contents, where 4 | 5 | parser = argparse.ArgumentParser() 6 | parser.add_argument("-c", "--contents", action="store_true") 7 | args = parser.parse_args() 8 | 9 | if args.contents: 10 | print(contents()) 11 | else: 12 | print(where()) 13 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/certifi/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/certifi/py.typed -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # 3 | # Copyright (C) 2012-2023 Vinay Sajip. 4 | # Licensed to the Python Software Foundation under a contributor agreement. 5 | # See LICENSE.txt and CONTRIBUTORS.txt. 6 | # 7 | import logging 8 | 9 | __version__ = '0.3.8' 10 | 11 | 12 | class DistlibException(Exception): 13 | pass 14 | 15 | 16 | try: 17 | from logging import NullHandler 18 | except ImportError: # pragma: no cover 19 | 20 | class NullHandler(logging.Handler): 21 | 22 | def handle(self, record): 23 | pass 24 | 25 | def emit(self, record): 26 | pass 27 | 28 | def createLock(self): 29 | self.lock = None 30 | 31 | 32 | logger = logging.getLogger(__name__) 33 | logger.addHandler(NullHandler()) 34 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distro/__main__.py: -------------------------------------------------------------------------------- 1 | from .distro import main 2 | 3 | if __name__ == "__main__": 4 | main() 5 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/distro/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/distro/py.typed -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- 1 | from .package_data import __version__ 2 | from .core import ( 3 | IDNABidiError, 4 | IDNAError, 5 | InvalidCodepoint, 6 | InvalidCodepointContext, 7 | alabel, 8 | check_bidi, 9 | check_hyphen_ok, 10 | check_initial_combiner, 11 | check_label, 12 | check_nfc, 13 | decode, 14 | encode, 15 | ulabel, 16 | uts46_remap, 17 | valid_contextj, 18 | valid_contexto, 19 | valid_label_length, 20 | valid_string_length, 21 | ) 22 | from .intranges import intranges_contain 23 | 24 | __all__ = [ 25 | "IDNABidiError", 26 | "IDNAError", 27 | "InvalidCodepoint", 28 | "InvalidCodepointContext", 29 | "alabel", 30 | "check_bidi", 31 | "check_hyphen_ok", 32 | "check_initial_combiner", 33 | "check_label", 34 | "check_nfc", 35 | "decode", 36 | "encode", 37 | "intranges_contain", 38 | "ulabel", 39 | "uts46_remap", 40 | "valid_contextj", 41 | "valid_contexto", 42 | "valid_label_length", 43 | "valid_string_length", 44 | ] 45 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | from .codec import * 3 | from typing import Any, Union 4 | 5 | def ToASCII(label: str) -> bytes: 6 | return encode(label) 7 | 8 | def ToUnicode(label: Union[bytes, bytearray]) -> str: 9 | return decode(label) 10 | 11 | def nameprep(s: Any) -> None: 12 | raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol') 13 | 14 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '3.7' 2 | 3 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/idna/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/idna/py.typed -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is dual licensed under the terms of the Apache License, Version 2 | # 2.0, and the BSD License. See the LICENSE file in the root of this repository 3 | # for complete details. 4 | 5 | __title__ = "packaging" 6 | __summary__ = "Core utilities for Python packages" 7 | __uri__ = "https://github.com/pypa/packaging" 8 | 9 | __version__ = "24.1" 10 | 11 | __author__ = "Donald Stufft and individual contributors" 12 | __email__ = "donald@stufft.io" 13 | 14 | __license__ = "BSD-2-Clause or Apache-2.0" 15 | __copyright__ = "2014 %s" % __author__ 16 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/packaging/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/packaging/py.typed -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/platformdirs/py.typed -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/platformdirs/version.py: -------------------------------------------------------------------------------- 1 | # file generated by setuptools_scm 2 | # don't change, don't track in version control 3 | TYPE_CHECKING = False 4 | if TYPE_CHECKING: 5 | from typing import Tuple, Union 6 | VERSION_TUPLE = Tuple[Union[int, str], ...] 7 | else: 8 | VERSION_TUPLE = object 9 | 10 | version: str 11 | __version__: str 12 | __version_tuple__: VERSION_TUPLE 13 | version_tuple: VERSION_TUPLE 14 | 15 | __version__ = version = '4.2.2' 16 | __version_tuple__ = version_tuple = (4, 2, 2) 17 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__main__.py: -------------------------------------------------------------------------------- 1 | """ 2 | pygments.__main__ 3 | ~~~~~~~~~~~~~~~~~ 4 | 5 | Main entry point for ``python -m pygments``. 6 | 7 | :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS. 8 | :license: BSD, see LICENSE for details. 9 | """ 10 | 11 | import sys 12 | from pip._vendor.pygments.cmdline import main 13 | 14 | try: 15 | sys.exit(main(sys.argv)) 16 | except KeyboardInterrupt: 17 | sys.exit(1) 18 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to call pyproject.toml-based build backend hooks. 2 | """ 3 | 4 | from ._impl import ( 5 | BackendInvalid, 6 | BackendUnavailable, 7 | BuildBackendHookCaller, 8 | HookMissing, 9 | UnsupportedOperation, 10 | default_subprocess_runner, 11 | quiet_subprocess_runner, 12 | ) 13 | 14 | __version__ = '1.0.0' 15 | __all__ = [ 16 | 'BackendUnavailable', 17 | 'BackendInvalid', 18 | 'HookMissing', 19 | 'UnsupportedOperation', 20 | 'default_subprocess_runner', 21 | 'quiet_subprocess_runner', 22 | 'BuildBackendHookCaller', 23 | ] 24 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_compat.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/_compat.py: -------------------------------------------------------------------------------- 1 | __all__ = ("tomllib",) 2 | 3 | import sys 4 | 5 | if sys.version_info >= (3, 11): 6 | import tomllib 7 | else: 8 | from pip._vendor import tomli as tomllib 9 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py: -------------------------------------------------------------------------------- 1 | """This is a subpackage because the directory is on sys.path for _in_process.py 2 | 3 | The subpackage should stay as empty as possible to avoid shadowing modules that 4 | the backend might import. 5 | """ 6 | 7 | import importlib.resources as resources 8 | 9 | try: 10 | resources.files 11 | except AttributeError: 12 | # Python 3.8 compatibility 13 | def _in_proc_script_path(): 14 | return resources.path(__package__, '_in_process.py') 15 | else: 16 | def _in_proc_script_path(): 17 | return resources.as_file( 18 | resources.files(__package__).joinpath('_in_process.py')) 19 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- 1 | # .-. .-. .-. . . .-. .-. .-. .-. 2 | # |( |- |.| | | |- `-. | `-. 3 | # ' ' `-' `-`.`-' `-' `-' ' `-' 4 | 5 | __title__ = "requests" 6 | __description__ = "Python HTTP for Humans." 7 | __url__ = "https://requests.readthedocs.io" 8 | __version__ = "2.32.3" 9 | __build__ = 0x023203 10 | __author__ = "Kenneth Reitz" 11 | __author_email__ = "me@kennethreitz.org" 12 | __license__ = "Apache-2.0" 13 | __copyright__ = "Copyright Kenneth Reitz" 14 | __cake__ = "\u2728 \U0001f370 \u2728" 15 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | """ 4 | requests.certs 5 | ~~~~~~~~~~~~~~ 6 | 7 | This module returns the preferred default CA certificate bundle. There is 8 | only one — the one from the certifi package. 9 | 10 | If you are packaging Requests, e.g., for a Linux distribution or a managed 11 | environment, you can change the definition of where() to return a separately 12 | packaged CA bundle. 13 | """ 14 | 15 | import os 16 | 17 | if "_PIP_STANDALONE_CERT" not in os.environ: 18 | from pip._vendor.certifi import where 19 | else: 20 | def where(): 21 | return os.environ["_PIP_STANDALONE_CERT"] 22 | 23 | if __name__ == "__main__": 24 | print(where()) 25 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- 1 | """ 2 | requests.hooks 3 | ~~~~~~~~~~~~~~ 4 | 5 | This module provides the capabilities for the Requests hooks system. 6 | 7 | Available hooks: 8 | 9 | ``response``: 10 | The response generated from a Request. 11 | """ 12 | HOOKS = ["response"] 13 | 14 | 15 | def default_hooks(): 16 | return {event: [] for event in HOOKS} 17 | 18 | 19 | # TODO: response is the only one 20 | 21 | 22 | def dispatch_hook(key, hooks, hook_data, **kwargs): 23 | """Dispatches a hook dictionary on a given piece of data.""" 24 | hooks = hooks or {} 25 | hooks = hooks.get(key) 26 | if hooks: 27 | if hasattr(hooks, "__call__"): 28 | hooks = [hooks] 29 | for hook in hooks: 30 | _hook_data = hook(hook_data, **kwargs) 31 | if _hook_data is not None: 32 | hook_data = _hook_data 33 | return hook_data 34 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | "__version__", 3 | "AbstractProvider", 4 | "AbstractResolver", 5 | "BaseReporter", 6 | "InconsistentCandidate", 7 | "Resolver", 8 | "RequirementsConflicted", 9 | "ResolutionError", 10 | "ResolutionImpossible", 11 | "ResolutionTooDeep", 12 | ] 13 | 14 | __version__ = "1.0.1" 15 | 16 | 17 | from .providers import AbstractProvider, AbstractResolver 18 | from .reporters import BaseReporter 19 | from .resolvers import ( 20 | InconsistentCandidate, 21 | RequirementsConflicted, 22 | ResolutionError, 23 | ResolutionImpossible, 24 | ResolutionTooDeep, 25 | Resolver, 26 | ) 27 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py: -------------------------------------------------------------------------------- 1 | __all__ = ["Mapping", "Sequence"] 2 | 3 | try: 4 | from collections.abc import Mapping, Sequence 5 | except ImportError: 6 | from collections import Mapping, Sequence 7 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/resolvelib/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/resolvelib/py.typed -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/_extension.py: -------------------------------------------------------------------------------- 1 | from typing import Any 2 | 3 | 4 | def load_ipython_extension(ip: Any) -> None: # pragma: no cover 5 | # prevent circular import 6 | from pip._vendor.rich.pretty import install 7 | from pip._vendor.rich.traceback import install as tr_install 8 | 9 | install() 10 | tr_install() 11 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/_fileno.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | 3 | from typing import IO, Callable 4 | 5 | 6 | def get_fileno(file_like: IO[str]) -> int | None: 7 | """Get fileno() from a file, accounting for poorly implemented file-like objects. 8 | 9 | Args: 10 | file_like (IO): A file-like object. 11 | 12 | Returns: 13 | int | None: The result of fileno if available, or None if operation failed. 14 | """ 15 | fileno: Callable[[], int] | None = getattr(file_like, "fileno", None) 16 | if fileno is not None: 17 | try: 18 | return fileno() 19 | except Exception: 20 | # `fileno` is documented as potentially raising a OSError 21 | # Alas, from the issues, there are so many poorly implemented file-like objects, 22 | # that `fileno()` can raise just about anything. 23 | return None 24 | return None 25 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/_pick.py: -------------------------------------------------------------------------------- 1 | from typing import Optional 2 | 3 | 4 | def pick_bool(*values: Optional[bool]) -> bool: 5 | """Pick the first non-none bool or return the last value. 6 | 7 | Args: 8 | *values (bool): Any number of boolean or None values. 9 | 10 | Returns: 11 | bool: First non-none boolean. 12 | """ 13 | assert values, "1 or more values required" 14 | for value in values: 15 | if value is not None: 16 | return value 17 | return bool(value) 18 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/_stack.py: -------------------------------------------------------------------------------- 1 | from typing import List, TypeVar 2 | 3 | T = TypeVar("T") 4 | 5 | 6 | class Stack(List[T]): 7 | """A small shim over builtin list.""" 8 | 9 | @property 10 | def top(self) -> T: 11 | """Get top of stack.""" 12 | return self[-1] 13 | 14 | def push(self, item: T) -> None: 15 | """Push an item on to the stack (append in stack nomenclature).""" 16 | self.append(item) 17 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/_timer.py: -------------------------------------------------------------------------------- 1 | """ 2 | Timer context manager, only used in debug. 3 | 4 | """ 5 | 6 | from time import time 7 | 8 | import contextlib 9 | from typing import Generator 10 | 11 | 12 | @contextlib.contextmanager 13 | def timer(subject: str = "time") -> Generator[None, None, None]: 14 | """print the elapsed time. (only used in debugging)""" 15 | start = time() 16 | yield 17 | elapsed = time() - start 18 | elapsed_ms = elapsed * 1000 19 | print(f"{subject} elapsed {elapsed_ms:.1f}ms") 20 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/abc.py: -------------------------------------------------------------------------------- 1 | from abc import ABC 2 | 3 | 4 | class RichRenderable(ABC): 5 | """An abstract base class for Rich renderables. 6 | 7 | Note that there is no need to extend this class, the intended use is to check if an 8 | object supports the Rich renderable protocol. For example:: 9 | 10 | if isinstance(my_object, RichRenderable): 11 | console.print(my_object) 12 | 13 | """ 14 | 15 | @classmethod 16 | def __subclasshook__(cls, other: type) -> bool: 17 | """Check if this class supports the rich render protocol.""" 18 | return hasattr(other, "__rich_console__") or hasattr(other, "__rich__") 19 | 20 | 21 | if __name__ == "__main__": # pragma: no cover 22 | from pip._vendor.rich.text import Text 23 | 24 | t = Text() 25 | print(isinstance(Text, RichRenderable)) 26 | print(isinstance(t, RichRenderable)) 27 | 28 | class Foo: 29 | pass 30 | 31 | f = Foo() 32 | print(isinstance(f, RichRenderable)) 33 | print(isinstance("", RichRenderable)) 34 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/errors.py: -------------------------------------------------------------------------------- 1 | class ConsoleError(Exception): 2 | """An error in console operation.""" 3 | 4 | 5 | class StyleError(Exception): 6 | """An error in styles.""" 7 | 8 | 9 | class StyleSyntaxError(ConsoleError): 10 | """Style was badly formatted.""" 11 | 12 | 13 | class MissingStyle(StyleError): 14 | """No such style.""" 15 | 16 | 17 | class StyleStackError(ConsoleError): 18 | """Style stack is invalid.""" 19 | 20 | 21 | class NotRenderableError(ConsoleError): 22 | """Object is not renderable.""" 23 | 24 | 25 | class MarkupError(ConsoleError): 26 | """Markup was badly formatted.""" 27 | 28 | 29 | class LiveError(ConsoleError): 30 | """Error related to Live display.""" 31 | 32 | 33 | class NoAltScreen(ConsoleError): 34 | """Alt screen mode was required.""" 35 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/pager.py: -------------------------------------------------------------------------------- 1 | from abc import ABC, abstractmethod 2 | from typing import Any 3 | 4 | 5 | class Pager(ABC): 6 | """Base class for a pager.""" 7 | 8 | @abstractmethod 9 | def show(self, content: str) -> None: 10 | """Show content in pager. 11 | 12 | Args: 13 | content (str): Content to be displayed. 14 | """ 15 | 16 | 17 | class SystemPager(Pager): 18 | """Uses the pager installed on the system.""" 19 | 20 | def _pager(self, content: str) -> Any: #  pragma: no cover 21 | return __import__("pydoc").pager(content) 22 | 23 | def show(self, content: str) -> None: 24 | """Use the same pager used by pydoc.""" 25 | self._pager(content) 26 | 27 | 28 | if __name__ == "__main__": # pragma: no cover 29 | from .__main__ import make_test_card 30 | from .console import Console 31 | 32 | console = Console() 33 | with console.pager(styles=True): 34 | console.print(make_test_card()) 35 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/rich/py.typed -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/region.py: -------------------------------------------------------------------------------- 1 | from typing import NamedTuple 2 | 3 | 4 | class Region(NamedTuple): 5 | """Defines a rectangular region of the screen.""" 6 | 7 | x: int 8 | y: int 9 | width: int 10 | height: int 11 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/rich/themes.py: -------------------------------------------------------------------------------- 1 | from .default_styles import DEFAULT_STYLES 2 | from .theme import Theme 3 | 4 | 5 | DEFAULT = Theme(DEFAULT_STYLES) 6 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/tomli/__init__.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | # SPDX-FileCopyrightText: 2021 Taneli Hukkinen 3 | # Licensed to PSF under a Contributor Agreement. 4 | 5 | __all__ = ("loads", "load", "TOMLDecodeError") 6 | __version__ = "2.0.1" # DO NOT EDIT THIS LINE MANUALLY. LET bump2version UTILITY DO IT 7 | 8 | from ._parser import TOMLDecodeError, load, loads 9 | 10 | # Pretend this exception was created here. 11 | TOMLDecodeError.__module__ = __name__ 12 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/tomli/_types.py: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: MIT 2 | # SPDX-FileCopyrightText: 2021 Taneli Hukkinen 3 | # Licensed to PSF under a Contributor Agreement. 4 | 5 | from typing import Any, Callable, Tuple 6 | 7 | # Type annotations 8 | ParseFloat = Callable[[str], Any] 9 | Key = Tuple[str, ...] 10 | Pos = int 11 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/tomli/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561 2 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/truststore/__init__.py: -------------------------------------------------------------------------------- 1 | """Verify certificates using native system trust stores""" 2 | 3 | import sys as _sys 4 | 5 | if _sys.version_info < (3, 10): 6 | raise ImportError("truststore requires Python 3.10 or later") 7 | 8 | from ._api import SSLContext, extract_from_ssl, inject_into_ssl # noqa: E402 9 | 10 | del _api, _sys # type: ignore[name-defined] # noqa: F821 11 | 12 | __all__ = ["SSLContext", "inject_into_ssl", "extract_from_ssl"] 13 | __version__ = "0.9.1" 14 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/truststore/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/truststore/py.typed -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/_version.py: -------------------------------------------------------------------------------- 1 | # This file is protected via CODEOWNERS 2 | __version__ = "1.26.18" 3 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Lib/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- 1 | import collections 2 | 3 | from ..packages import six 4 | from ..packages.six.moves import queue 5 | 6 | if six.PY2: 7 | # Queue is imported for side effects on MS Windows. See issue #229. 8 | import Queue as _unused_module_Queue # noqa: F401 9 | 10 | 11 | class LifoQueue(queue.Queue): 12 | def _init(self, _): 13 | self.queue = collections.deque() 14 | 15 | def _qsize(self, len=len): 16 | return len(self.queue) 17 | 18 | def _put(self, item): 19 | self.queue.append(item) 20 | 21 | def _get(self): 22 | return self.queue.pop() 23 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/_vendor/vendor.txt: -------------------------------------------------------------------------------- 1 | CacheControl==0.14.0 2 | distlib==0.3.8 3 | distro==1.9.0 4 | msgpack==1.0.8 5 | packaging==24.1 6 | platformdirs==4.2.2 7 | pyproject-hooks==1.0.0 8 | requests==2.32.3 9 | certifi==2024.7.4 10 | idna==3.7 11 | urllib3==1.26.18 12 | rich==13.7.1 13 | pygments==2.18.0 14 | typing_extensions==4.12.2 15 | resolvelib==1.0.1 16 | setuptools==70.3.0 17 | tomli==2.0.1 18 | truststore==0.9.1 19 | -------------------------------------------------------------------------------- /backend/env/Lib/site-packages/pip/py.typed: -------------------------------------------------------------------------------- 1 | pip is a command line program. While it is implemented in Python, and so is 2 | available for import, you must not use pip's internal APIs in this way. Typing 3 | information is provided as a convenience only and is not a guarantee. Expect 4 | unannounced changes to the API and types in releases. 5 | -------------------------------------------------------------------------------- /backend/env/Scripts/deactivate.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | if defined _OLD_VIRTUAL_PROMPT ( 4 | set "PROMPT=%_OLD_VIRTUAL_PROMPT%" 5 | ) 6 | set _OLD_VIRTUAL_PROMPT= 7 | 8 | if defined _OLD_VIRTUAL_PYTHONHOME ( 9 | set "PYTHONHOME=%_OLD_VIRTUAL_PYTHONHOME%" 10 | set _OLD_VIRTUAL_PYTHONHOME= 11 | ) 12 | 13 | if defined _OLD_VIRTUAL_PATH ( 14 | set "PATH=%_OLD_VIRTUAL_PATH%" 15 | ) 16 | 17 | set _OLD_VIRTUAL_PATH= 18 | 19 | set VIRTUAL_ENV= 20 | set VIRTUAL_ENV_PROMPT= 21 | 22 | :END 23 | -------------------------------------------------------------------------------- /backend/env/Scripts/pip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Scripts/pip.exe -------------------------------------------------------------------------------- /backend/env/Scripts/pip3.12.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Scripts/pip3.12.exe -------------------------------------------------------------------------------- /backend/env/Scripts/pip3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Scripts/pip3.exe -------------------------------------------------------------------------------- /backend/env/Scripts/python.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Scripts/python.exe -------------------------------------------------------------------------------- /backend/env/Scripts/pythonw.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/env/Scripts/pythonw.exe -------------------------------------------------------------------------------- /backend/env/pyvenv.cfg: -------------------------------------------------------------------------------- 1 | home = C:\Python312 2 | include-system-site-packages = false 3 | version = 3.12.5 4 | executable = C:\Python312\python.exe 5 | command = C:\Python312\python.exe -m venv D:\Desktop\codeKshetra\EnterpriseHireAI\backend\env 6 | -------------------------------------------------------------------------------- /backend/requirements.txt: -------------------------------------------------------------------------------- 1 | crewai 2 | crewai-tools 3 | python-dotenv 4 | streamlit -------------------------------------------------------------------------------- /backend/utils/__pycache__/pdf_extractor.cpython-312.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/7uyash/BizFlowAI/c0e323da37bac92cfcc989599723c83088a1e902/backend/utils/__pycache__/pdf_extractor.cpython-312.pyc -------------------------------------------------------------------------------- /backend/utils/pdf_extractor.py: -------------------------------------------------------------------------------- 1 | import PyPDF2 2 | 3 | def extract_text_from_pdf(pdf_path): 4 | try: 5 | with open(pdf_path, "rb") as file: 6 | reader = PyPDF2.PdfReader(file) 7 | text = "" 8 | for page in reader.pages: 9 | text += page.extract_text() 10 | return text 11 | except Exception as e: 12 | print(f"Error reading PDF: {e}") 13 | return "" 14 | --------------------------------------------------------------------------------