-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #198 from SunkaraboinaPraveenKumar/main
ecommerce frontend and backend set
- Loading branch information
Showing
6,787 changed files
with
958,794 additions
and
3,938 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ecommerc_backend/node_modules |
1 change: 1 addition & 0 deletions
1
Agri_ChatBot/venv/Lib/site-packages/Flask_Cors-5.0.0.dist-info/INSTALLER
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pip |
7 changes: 7 additions & 0 deletions
7
Agri_ChatBot/venv/Lib/site-packages/Flask_Cors-5.0.0.dist-info/LICENSE
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Copyright (C) 2016 Cory Dolphin, Olin College | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
148 changes: 148 additions & 0 deletions
148
Agri_ChatBot/venv/Lib/site-packages/Flask_Cors-5.0.0.dist-info/METADATA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
Metadata-Version: 2.1 | ||
Name: Flask-Cors | ||
Version: 5.0.0 | ||
Summary: A Flask extension adding a decorator for CORS support | ||
Home-page: https://github.com/corydolphin/flask-cors | ||
Author: Cory Dolphin | ||
Author-email: corydolphin@gmail.com | ||
License: MIT | ||
Platform: any | ||
Classifier: Environment :: Web Environment | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: MIT License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 3.8 | ||
Classifier: Programming Language :: Python :: 3.9 | ||
Classifier: Programming Language :: Python :: 3.10 | ||
Classifier: Programming Language :: Python :: 3.11 | ||
Classifier: Programming Language :: Python :: 3.12 | ||
Classifier: Programming Language :: Python :: Implementation :: CPython | ||
Classifier: Programming Language :: Python :: Implementation :: PyPy | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
License-File: LICENSE | ||
Requires-Dist: Flask >=0.9 | ||
|
||
Flask-CORS | ||
========== | ||
|
||
|Build Status| |Latest Version| |Supported Python versions| | ||
|License| | ||
|
||
A Flask extension for handling Cross Origin Resource Sharing (CORS), making cross-origin AJAX possible. | ||
|
||
This package has a simple philosophy: when you want to enable CORS, you wish to enable it for all use cases on a domain. | ||
This means no mucking around with different allowed headers, methods, etc. | ||
|
||
By default, submission of cookies across domains is disabled due to the security implications. | ||
Please see the documentation for how to enable credential'ed requests, and please make sure you add some sort of `CSRF <http://en.wikipedia.org/wiki/Cross-site_request_forgery>`__ protection before doing so! | ||
|
||
Installation | ||
------------ | ||
|
||
Install the extension with using pip, or easy\_install. | ||
|
||
.. code:: bash | ||
|
||
$ pip install -U flask-cors | ||
|
||
Usage | ||
----- | ||
|
||
This package exposes a Flask extension which by default enables CORS support on all routes, for all origins and methods. | ||
It allows parameterization of all CORS headers on a per-resource level. | ||
The package also contains a decorator, for those who prefer this approach. | ||
|
||
Simple Usage | ||
~~~~~~~~~~~~ | ||
|
||
In the simplest case, initialize the Flask-Cors extension with default arguments in order to allow CORS for all domains on all routes. | ||
See the full list of options in the `documentation <https://flask-cors.corydolphin.com/en/latest/api.html#extension>`__. | ||
|
||
.. code:: python | ||
|
||
|
||
from flask import Flask | ||
from flask_cors import CORS | ||
|
||
app = Flask(__name__) | ||
CORS(app) | ||
|
||
@app.route("/") | ||
def helloWorld(): | ||
return "Hello, cross-origin-world!" | ||
|
||
Resource specific CORS | ||
^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
Alternatively, you can specify CORS options on a resource and origin level of granularity by passing a dictionary as the `resources` option, mapping paths to a set of options. | ||
See the full list of options in the `documentation <https://flask-cors.corydolphin.com/en/latest/api.html#extension>`__. | ||
|
||
.. code:: python | ||
|
||
app = Flask(__name__) | ||
cors = CORS(app, resources={r"/api/*": {"origins": "*"}}) | ||
|
||
@app.route("/api/v1/users") | ||
def list_users(): | ||
return "user example" | ||
|
||
Route specific CORS via decorator | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
This extension also exposes a simple decorator to decorate flask routes with. | ||
Simply add ``@cross_origin()`` below a call to Flask's ``@app.route(..)`` to allow CORS on a given route. | ||
See the full list of options in the `decorator documentation <https://flask-cors.corydolphin.com/en/latest/api.html#decorator>`__. | ||
|
||
.. code:: python | ||
|
||
@app.route("/") | ||
@cross_origin() | ||
def helloWorld(): | ||
return "Hello, cross-origin-world!" | ||
|
||
Documentation | ||
------------- | ||
|
||
For a full list of options, please see the full `documentation <https://flask-cors.corydolphin.com/en/latest/api.html>`__ | ||
|
||
Troubleshooting | ||
--------------- | ||
|
||
If things aren't working as you expect, enable logging to help understand what is going on under the hood, and why. | ||
|
||
.. code:: python | ||
|
||
logging.getLogger('flask_cors').level = logging.DEBUG | ||
|
||
|
||
Tests | ||
----- | ||
|
||
A simple set of tests is included in ``test/``. | ||
To run, install nose, and simply invoke ``nosetests`` or ``python setup.py test`` to exercise the tests. | ||
|
||
If nosetests does not work for you, due to it no longer working with newer python versions. | ||
You can use pytest to run the tests instead. | ||
|
||
Contributing | ||
------------ | ||
|
||
Questions, comments or improvements? | ||
Please create an issue on `Github <https://github.com/corydolphin/flask-cors>`__, tweet at `@corydolphin <https://twitter.com/corydolphin>`__ or send me an email. | ||
I do my best to include every contribution proposed in any way that I can. | ||
|
||
Credits | ||
------- | ||
|
||
This Flask extension is based upon the `Decorator for the HTTP Access Control <https://web.archive.org/web/20190128010149/http://flask.pocoo.org/snippets/56/>`__ written by Armin Ronacher. | ||
|
||
.. |Build Status| image:: https://github.com/corydolphin/flask-cors/actions/workflows/unittests.yaml/badge.svg | ||
:target: https://travis-ci.org/corydolphin/flask-cors | ||
.. |Latest Version| image:: https://img.shields.io/pypi/v/Flask-Cors.svg | ||
:target: https://pypi.python.org/pypi/Flask-Cors/ | ||
.. |Supported Python versions| image:: https://img.shields.io/pypi/pyversions/Flask-Cors.svg | ||
:target: https://img.shields.io/pypi/pyversions/Flask-Cors.svg | ||
.. |License| image:: http://img.shields.io/:license-mit-blue.svg | ||
:target: https://pypi.python.org/pypi/Flask-Cors/ |
17 changes: 17 additions & 0 deletions
17
Agri_ChatBot/venv/Lib/site-packages/Flask_Cors-5.0.0.dist-info/RECORD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Flask_Cors-5.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 | ||
Flask_Cors-5.0.0.dist-info/LICENSE,sha256=bhob3FSDTB4HQMvOXV9vLK4chG_Sp_SCsRZJWU-vvV0,1069 | ||
Flask_Cors-5.0.0.dist-info/METADATA,sha256=V2L_s849dFlZXsOhcgXVqv5Slj_JKSVuiiuRgDOft5s,5474 | ||
Flask_Cors-5.0.0.dist-info/RECORD,, | ||
Flask_Cors-5.0.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 | ||
Flask_Cors-5.0.0.dist-info/WHEEL,sha256=WDDPHYzpiOIm6GP1C2_8y8W6q16ICddAgOHlhTje9Qc,109 | ||
Flask_Cors-5.0.0.dist-info/top_level.txt,sha256=aWye_0QNZPp_QtPF4ZluLHqnyVLT9CPJsfiGhwqkWuo,11 | ||
flask_cors/__init__.py,sha256=wZDCvPTHspA2g1VV7KyKN7R-uCdBnirTlsCzgPDcQtI,792 | ||
flask_cors/__pycache__/__init__.cpython-312.pyc,, | ||
flask_cors/__pycache__/core.cpython-312.pyc,, | ||
flask_cors/__pycache__/decorator.cpython-312.pyc,, | ||
flask_cors/__pycache__/extension.cpython-312.pyc,, | ||
flask_cors/__pycache__/version.cpython-312.pyc,, | ||
flask_cors/core.py,sha256=y76xxLasWTdV_3ka19IxpdJPOgROBZQZ5L8t20IjqRA,14252 | ||
flask_cors/decorator.py,sha256=BeJsyX1wYhVKWN04FAhb6z8YqffiRr7wKqwzHPap4bw,5009 | ||
flask_cors/extension.py,sha256=gzv6zWUwSDYlGHBWzMuTI_hoQ7gQmp9DlcAcrKTVHdw,8602 | ||
flask_cors/version.py,sha256=JzYPYpvaglqIJRGCDrh5-hYmXI0ISrDDed0V1QQZAGU,22 |
Empty file.
6 changes: 6 additions & 0 deletions
6
Agri_ChatBot/venv/Lib/site-packages/Flask_Cors-5.0.0.dist-info/WHEEL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Wheel-Version: 1.0 | ||
Generator: setuptools (74.0.0) | ||
Root-Is-Purelib: true | ||
Tag: py2-none-any | ||
Tag: py3-none-any | ||
|
1 change: 1 addition & 0 deletions
1
Agri_ChatBot/venv/Lib/site-packages/Flask_Cors-5.0.0.dist-info/top_level.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
flask_cors |
1 change: 1 addition & 0 deletions
1
Agri_ChatBot/venv/Lib/site-packages/MarkupSafe-3.0.0.dist-info/INSTALLER
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pip |
28 changes: 28 additions & 0 deletions
28
Agri_ChatBot/venv/Lib/site-packages/MarkupSafe-3.0.0.dist-info/LICENSE.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
Copyright 2010 Pallets | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
|
||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | ||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | ||
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
92 changes: 92 additions & 0 deletions
92
Agri_ChatBot/venv/Lib/site-packages/MarkupSafe-3.0.0.dist-info/METADATA
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
Metadata-Version: 2.1 | ||
Name: MarkupSafe | ||
Version: 3.0.0 | ||
Summary: Safely add untrusted strings to HTML/XML markup. | ||
Maintainer-email: Pallets <contact@palletsprojects.com> | ||
License: Copyright 2010 Pallets | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
|
||
1. Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright | ||
notice, this list of conditions and the following disclaimer in the | ||
documentation and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | ||
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | ||
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF | ||
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | ||
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS | ||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
Project-URL: Donate, https://palletsprojects.com/donate | ||
Project-URL: Documentation, https://markupsafe.palletsprojects.com/ | ||
Project-URL: Changes, https://markupsafe.palletsprojects.com/changes/ | ||
Project-URL: Source, https://github.com/pallets/markupsafe/ | ||
Project-URL: Chat, https://discord.gg/pallets | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Environment :: Web Environment | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Classifier: Topic :: Text Processing :: Markup :: HTML | ||
Classifier: Typing :: Typed | ||
Requires-Python: >=3.9 | ||
Description-Content-Type: text/markdown | ||
License-File: LICENSE.txt | ||
|
||
# MarkupSafe | ||
|
||
MarkupSafe implements a text object that escapes characters so it is | ||
safe to use in HTML and XML. Characters that have special meanings are | ||
replaced so that they display as the actual characters. This mitigates | ||
injection attacks, meaning untrusted user input can safely be displayed | ||
on a page. | ||
|
||
|
||
## Examples | ||
|
||
```pycon | ||
>>> from markupsafe import Markup, escape | ||
|
||
>>> # escape replaces special characters and wraps in Markup | ||
>>> escape("<script>alert(document.cookie);</script>") | ||
Markup('<script>alert(document.cookie);</script>') | ||
|
||
>>> # wrap in Markup to mark text "safe" and prevent escaping | ||
>>> Markup("<strong>Hello</strong>") | ||
Markup('<strong>hello</strong>') | ||
|
||
>>> escape(Markup("<strong>Hello</strong>")) | ||
Markup('<strong>hello</strong>') | ||
|
||
>>> # Markup is a str subclass | ||
>>> # methods and operators escape their arguments | ||
>>> template = Markup("Hello <em>{name}</em>") | ||
>>> template.format(name='"World"') | ||
Markup('Hello <em>"World"</em>') | ||
``` | ||
|
||
## Donate | ||
|
||
The Pallets organization develops and supports MarkupSafe and other | ||
popular packages. In order to grow the community of contributors and | ||
users, and allow the maintainers to devote more time to the projects, | ||
[please donate today][]. | ||
|
||
[please donate today]: https://palletsprojects.com/donate |
14 changes: 14 additions & 0 deletions
14
Agri_ChatBot/venv/Lib/site-packages/MarkupSafe-3.0.0.dist-info/RECORD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
MarkupSafe-3.0.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 | ||
MarkupSafe-3.0.0.dist-info/LICENSE.txt,sha256=RjHsDbX9kKVH4zaBcmTGeYIUM4FG-KyUtKV_lu6MnsQ,1503 | ||
MarkupSafe-3.0.0.dist-info/METADATA,sha256=NMbGYP2bGbU3eGK8126PEWLc_zQBDe7FZL7vHKp_uME,4067 | ||
MarkupSafe-3.0.0.dist-info/RECORD,, | ||
MarkupSafe-3.0.0.dist-info/WHEEL,sha256=3vidnDuZ-QSnHIxLhNbI1gIM-KgyEcMHuZuv1mWPd_Q,101 | ||
MarkupSafe-3.0.0.dist-info/top_level.txt,sha256=qy0Plje5IJuvsCBjejJyhDCjEAdcDLK_2agVcex8Z6U,11 | ||
markupsafe/__init__.py,sha256=YvSuddFJXkoaq4tB-1za0c-rrwLLj9UiNpbuBx2_OrU,13488 | ||
markupsafe/__pycache__/__init__.cpython-312.pyc,, | ||
markupsafe/__pycache__/_native.cpython-312.pyc,, | ||
markupsafe/_native.py,sha256=2ptkJ40yCcp9kq3L1NqpgjfpZB-obniYKFFKUOkHh4Q,218 | ||
markupsafe/_speedups.c,sha256=KsOd8jxGo8Je7sBrnS9-qAys4TCgQQf8XlMTqetFZII,4301 | ||
markupsafe/_speedups.cp312-win_amd64.pyd,sha256=XkLDKtEjB2JuJgTjQ-9BFTsbkm3jtiS4gY8_RvEzYhw,13312 | ||
markupsafe/_speedups.pyi,sha256=LSDmXYOefH4HVpAXuL8sl7AttLw0oXh1njVoVZp2wqQ,42 | ||
markupsafe/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 |
5 changes: 5 additions & 0 deletions
5
Agri_ChatBot/venv/Lib/site-packages/MarkupSafe-3.0.0.dist-info/WHEEL
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Wheel-Version: 1.0 | ||
Generator: setuptools (75.1.0) | ||
Root-Is-Purelib: false | ||
Tag: cp312-cp312-win_amd64 | ||
|
1 change: 1 addition & 0 deletions
1
Agri_ChatBot/venv/Lib/site-packages/MarkupSafe-3.0.0.dist-info/top_level.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
markupsafe |
Binary file added
BIN
+136 KB
Agri_ChatBot/venv/Lib/site-packages/__pycache__/typing_extensions.cpython-312.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions
1
Agri_ChatBot/venv/Lib/site-packages/annotated_types-0.7.0.dist-info/INSTALLER
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pip |
Oops, something went wrong.