-
Notifications
You must be signed in to change notification settings - Fork 1
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 #9 from 2024-AI-Hackathon/translate
텍스트 번역 기능 구현
- Loading branch information
Showing
1,653 changed files
with
62,380 additions
and
13,199 deletions.
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# AI | ||
|
||
About AI Hackathon repository |
Binary file not shown.
Binary file not shown.
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,8 @@ | ||
#!/Users/kimminsang/Desktop/AI/hackaton/bin/python3.12 | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from flask.cli import main | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(main()) |
File renamed without changes.
25 changes: 11 additions & 14 deletions
25
...e-packages/idna-3.10.dist-info/LICENSE.md → ...ackages/Flask-2.3.2.dist-info/LICENSE.rst
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
118 changes: 118 additions & 0 deletions
118
hackaton/lib/python3.12/site-packages/Flask-2.3.2.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,118 @@ | ||
Metadata-Version: 2.1 | ||
Name: Flask | ||
Version: 2.3.2 | ||
Summary: A simple framework for building complex web applications. | ||
Author-email: Armin Ronacher <[email protected]> | ||
Maintainer-email: Pallets <[email protected]> | ||
License: BSD-3-Clause | ||
Project-URL: Donate, https://palletsprojects.com/donate | ||
Project-URL: Documentation, https://flask.palletsprojects.com/ | ||
Project-URL: Changes, https://flask.palletsprojects.com/changes/ | ||
Project-URL: Source Code, https://github.com/pallets/flask/ | ||
Project-URL: Issue Tracker, https://github.com/pallets/flask/issues/ | ||
Project-URL: Chat, https://discord.gg/pallets | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Environment :: Web Environment | ||
Classifier: Framework :: Flask | ||
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 :: Internet :: WWW/HTTP :: WSGI | ||
Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Application | ||
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks | ||
Requires-Python: >=3.8 | ||
Description-Content-Type: text/x-rst | ||
License-File: LICENSE.rst | ||
Requires-Dist: Werkzeug (>=2.3.3) | ||
Requires-Dist: Jinja2 (>=3.1.2) | ||
Requires-Dist: itsdangerous (>=2.1.2) | ||
Requires-Dist: click (>=8.1.3) | ||
Requires-Dist: blinker (>=1.6.2) | ||
Requires-Dist: importlib-metadata (>=3.6.0) ; python_version < "3.10" | ||
Provides-Extra: async | ||
Requires-Dist: asgiref (>=3.2) ; extra == 'async' | ||
Provides-Extra: dotenv | ||
Requires-Dist: python-dotenv ; extra == 'dotenv' | ||
|
||
Flask | ||
===== | ||
|
||
Flask is a lightweight `WSGI`_ web application framework. It is designed | ||
to make getting started quick and easy, with the ability to scale up to | ||
complex applications. It began as a simple wrapper around `Werkzeug`_ | ||
and `Jinja`_ and has become one of the most popular Python web | ||
application frameworks. | ||
|
||
Flask offers suggestions, but doesn't enforce any dependencies or | ||
project layout. It is up to the developer to choose the tools and | ||
libraries they want to use. There are many extensions provided by the | ||
community that make adding new functionality easy. | ||
|
||
.. _WSGI: https://wsgi.readthedocs.io/ | ||
.. _Werkzeug: https://werkzeug.palletsprojects.com/ | ||
.. _Jinja: https://jinja.palletsprojects.com/ | ||
|
||
|
||
Installing | ||
---------- | ||
|
||
Install and update using `pip`_: | ||
|
||
.. code-block:: text | ||
|
||
$ pip install -U Flask | ||
|
||
.. _pip: https://pip.pypa.io/en/stable/getting-started/ | ||
|
||
|
||
A Simple Example | ||
---------------- | ||
|
||
.. code-block:: python | ||
|
||
# save this as app.py | ||
from flask import Flask | ||
|
||
app = Flask(__name__) | ||
|
||
@app.route("/") | ||
def hello(): | ||
return "Hello, World!" | ||
|
||
.. code-block:: text | ||
|
||
$ flask run | ||
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit) | ||
|
||
|
||
Contributing | ||
------------ | ||
|
||
For guidance on setting up a development environment and how to make a | ||
contribution to Flask, see the `contributing guidelines`_. | ||
|
||
.. _contributing guidelines: https://github.com/pallets/flask/blob/main/CONTRIBUTING.rst | ||
|
||
|
||
Donate | ||
------ | ||
|
||
The Pallets organization develops and supports Flask and the libraries | ||
it uses. 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 | ||
|
||
|
||
Links | ||
----- | ||
|
||
- Documentation: https://flask.palletsprojects.com/ | ||
- Changes: https://flask.palletsprojects.com/changes/ | ||
- PyPI Releases: https://pypi.org/project/Flask/ | ||
- Source Code: https://github.com/pallets/flask/ | ||
- Issue Tracker: https://github.com/pallets/flask/issues/ | ||
- Chat: https://discord.gg/pallets |
54 changes: 54 additions & 0 deletions
54
hackaton/lib/python3.12/site-packages/Flask-2.3.2.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,54 @@ | ||
../../../bin/flask,sha256=WdGWTmjbVBQe7drDpczQPgN43sTOySdhpj7XsuCd3UQ,244 | ||
Flask-2.3.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 | ||
Flask-2.3.2.dist-info/LICENSE.rst,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475 | ||
Flask-2.3.2.dist-info/METADATA,sha256=o20FsyHfhQR8TMWB_QrtQN2PHyzacLRUAgol_quBBvA,3716 | ||
Flask-2.3.2.dist-info/RECORD,, | ||
Flask-2.3.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 | ||
Flask-2.3.2.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92 | ||
Flask-2.3.2.dist-info/entry_points.txt,sha256=s3MqQpduU25y4dq3ftBYD6bMVdVnbMpZP-sUNw0zw0k,41 | ||
Flask-2.3.2.dist-info/top_level.txt,sha256=dvi65F6AeGWVU0TBpYiC04yM60-FX1gJFkK31IKQr5c,6 | ||
flask/__init__.py,sha256=yeirfdSGPoM3Ylc9FWWJfy2gEQlHfiZCKrxBiPefACM,3731 | ||
flask/__main__.py,sha256=bYt9eEaoRQWdejEHFD8REx9jxVEdZptECFsV7F49Ink,30 | ||
flask/__pycache__/__init__.cpython-312.pyc,, | ||
flask/__pycache__/__main__.cpython-312.pyc,, | ||
flask/__pycache__/app.cpython-312.pyc,, | ||
flask/__pycache__/blueprints.cpython-312.pyc,, | ||
flask/__pycache__/cli.cpython-312.pyc,, | ||
flask/__pycache__/config.cpython-312.pyc,, | ||
flask/__pycache__/ctx.cpython-312.pyc,, | ||
flask/__pycache__/debughelpers.cpython-312.pyc,, | ||
flask/__pycache__/globals.cpython-312.pyc,, | ||
flask/__pycache__/helpers.cpython-312.pyc,, | ||
flask/__pycache__/logging.cpython-312.pyc,, | ||
flask/__pycache__/scaffold.cpython-312.pyc,, | ||
flask/__pycache__/sessions.cpython-312.pyc,, | ||
flask/__pycache__/signals.cpython-312.pyc,, | ||
flask/__pycache__/templating.cpython-312.pyc,, | ||
flask/__pycache__/testing.cpython-312.pyc,, | ||
flask/__pycache__/typing.cpython-312.pyc,, | ||
flask/__pycache__/views.cpython-312.pyc,, | ||
flask/__pycache__/wrappers.cpython-312.pyc,, | ||
flask/app.py,sha256=ht3Qx9U9z0I1qUfLoS7bYhJcubdpk-i54eHq37LDlN8,87620 | ||
flask/blueprints.py,sha256=ZpVrwa8UY-YnVDsX_1K10XQjDwCUp7Qn2hmKln5icEQ,24332 | ||
flask/cli.py,sha256=wRxX61jRDKQM4iZsYaVwcgGbpN2_2DmntLMWjVeiAx4,33720 | ||
flask/config.py,sha256=yqdiN7TLOs2EChJ0uhTz3SICA3-QBG6l5wHTIUnANpc,12800 | ||
flask/ctx.py,sha256=x2kGzUXtPzVyi2YSKrU_PV1AvtxTmh2iRdriJRTSPGM,14841 | ||
flask/debughelpers.py,sha256=BR0xkd-sAyFuFW07D6NfrqNwSZxk1IrkG5n8zem-3sw,5547 | ||
flask/globals.py,sha256=KUzVvSPh8v28kUasVDi_aQKB9hI2jZSYQHqaDU2P414,2945 | ||
flask/helpers.py,sha256=QDxFmBW9GGXQDLuXrcxQRL0Ldo-_q11zEt3ZVgfINlI,24957 | ||
flask/json/__init__.py,sha256=pdtpoK2b0b1u7Sxbx3feM7VWhsI20l1yGAvbYWxaxvc,5572 | ||
flask/json/__pycache__/__init__.cpython-312.pyc,, | ||
flask/json/__pycache__/provider.cpython-312.pyc,, | ||
flask/json/__pycache__/tag.cpython-312.pyc,, | ||
flask/json/provider.py,sha256=Os0frb8oGfyWKL-TDxb0Uy-MY6gDhPdJkRaUl5xAOXI,7637 | ||
flask/json/tag.py,sha256=ihb7QWrNEr0YC3KD4TolZbftgSPCuLk7FAvK49huYC0,8871 | ||
flask/logging.py,sha256=lArx2Bq9oTtUJ-DnZL9t88xU2zytzp4UWSM9Bd72NDQ,2327 | ||
flask/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 | ||
flask/scaffold.py,sha256=0tYQN98sC93YkIEw9g8BiIwceFZ27tNqBtBtFhFy5tY,35231 | ||
flask/sessions.py,sha256=rFH2QKXG24dEazkKGxAHqUpAUh_30hDHrddhVYgAcY0,14169 | ||
flask/signals.py,sha256=s1H4yKjf3c5dgVr41V6sJpE9dLJvmTJMYuK0rkqx3sw,1146 | ||
flask/templating.py,sha256=XdP2hMFnZ5FCZOG7HUaLjC2VC-b4uHSWlDjwv_1p3qc,7503 | ||
flask/testing.py,sha256=52-m5GecDcA-F2dFEYe8eDwApusxdg6S1suBaSC85N0,9768 | ||
flask/typing.py,sha256=4Lj-YTxUoYvPYofC9GKu-1o0Ht8lyjp9z3I336J13_o,3005 | ||
flask/views.py,sha256=V5hOGZLx0Bn99QGcM6mh5x_uM-MypVT0-RysEFU84jc,6789 | ||
flask/wrappers.py,sha256=PhMp3teK3SnEmIdog59cO_DHiZ9Btn0qI1EifrTdwP8,5709 |
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
...-packages/requests-2.32.3.dist-info/WHEEL → ...site-packages/Flask-2.3.2.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
Wheel-Version: 1.0 | ||
Generator: bdist_wheel (0.43.0) | ||
Generator: bdist_wheel (0.40.0) | ||
Root-Is-Purelib: true | ||
Tag: py3-none-any | ||
|
2 changes: 2 additions & 0 deletions
2
hackaton/lib/python3.12/site-packages/Flask-2.3.2.dist-info/entry_points.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,2 @@ | ||
[console_scripts] | ||
flask = flask.cli:main |
1 change: 1 addition & 0 deletions
1
hackaton/lib/python3.12/site-packages/Flask-2.3.2.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 |
File renamed without changes.
28 changes: 28 additions & 0 deletions
28
hackaton/lib/python3.12/site-packages/MarkupSafe-3.0.2.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
hackaton/lib/python3.12/site-packages/MarkupSafe-3.0.2.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.2 | ||
Summary: Safely add untrusted strings to HTML/XML markup. | ||
Maintainer-email: Pallets <[email protected]> | ||
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
hackaton/lib/python3.12/site-packages/MarkupSafe-3.0.2.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.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 | ||
MarkupSafe-3.0.2.dist-info/LICENSE.txt,sha256=SJqOEQhQntmKN7uYPhHg9-HTHwvY-Zp5yESOf_N9B-o,1475 | ||
MarkupSafe-3.0.2.dist-info/METADATA,sha256=aAwbZhSmXdfFuMM-rEHpeiHRkBOGESyVLJIuwzHP-nw,3975 | ||
MarkupSafe-3.0.2.dist-info/RECORD,, | ||
MarkupSafe-3.0.2.dist-info/WHEEL,sha256=T94HOVPNbYE6jyG6QmiIglWJ01nwJvHIWFgubY8hhjc,109 | ||
MarkupSafe-3.0.2.dist-info/top_level.txt,sha256=qy0Plje5IJuvsCBjejJyhDCjEAdcDLK_2agVcex8Z6U,11 | ||
markupsafe/__init__.py,sha256=sr-U6_27DfaSrj5jnHYxWN-pvhM27sjlDplMDPZKm7k,13214 | ||
markupsafe/__pycache__/__init__.cpython-312.pyc,, | ||
markupsafe/__pycache__/_native.cpython-312.pyc,, | ||
markupsafe/_native.py,sha256=hSLs8Jmz5aqayuengJJ3kdT5PwNpBWpKrmQSdipndC8,210 | ||
markupsafe/_speedups.c,sha256=O7XulmTo-epI6n2FtMVOrJXl8EAaIwD2iNYmBI5SEoQ,4149 | ||
markupsafe/_speedups.cpython-312-darwin.so,sha256=LAX7ul6PQsfO_zZxF631eSzN6U7PoGVTR_Wwd2pGav8,50624 | ||
markupsafe/_speedups.pyi,sha256=ENd1bYe7gbBUf2ywyYWOGUpnXOHNJ-cgTNqetlW8h5k,41 | ||
markupsafe/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 |
5 changes: 5 additions & 0 deletions
5
hackaton/lib/python3.12/site-packages/MarkupSafe-3.0.2.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.2.0) | ||
Root-Is-Purelib: false | ||
Tag: cp312-cp312-macosx_11_0_arm64 | ||
|
1 change: 1 addition & 0 deletions
1
hackaton/lib/python3.12/site-packages/MarkupSafe-3.0.2.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 modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/__pycache__/playsound.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/__pycache__/typing_extensions.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/_yaml/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
1 change: 0 additions & 1 deletion
1
hackaton/lib/python3.12/site-packages/annotated_types-0.7.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
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/annotated_types/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/annotated_types/__pycache__/test_cases.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/__pycache__/from_thread.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/__pycache__/lowlevel.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/__pycache__/pytest_plugin.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/__pycache__/to_process.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/__pycache__/to_thread.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_backends/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_backends/__pycache__/_asyncio.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_backends/__pycache__/_trio.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_eventloop.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_exceptions.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_fileio.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_resources.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_signals.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_sockets.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_streams.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_subprocesses.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
...ton/lib/python3.12/site-packages/anyio/_core/__pycache__/_synchronization.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_tasks.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_testing.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/_core/__pycache__/_typedattr.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/abc/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/abc/__pycache__/_eventloop.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/abc/__pycache__/_resources.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/abc/__pycache__/_sockets.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/abc/__pycache__/_streams.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/abc/__pycache__/_subprocesses.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/abc/__pycache__/_tasks.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/abc/__pycache__/_testing.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/streams/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/streams/__pycache__/buffered.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/streams/__pycache__/file.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/streams/__pycache__/memory.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/streams/__pycache__/stapled.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/streams/__pycache__/text.cpython-312.pyc
Binary file not shown.
Binary file modified
BIN
+0 Bytes
(100%)
hackaton/lib/python3.12/site-packages/anyio/streams/__pycache__/tls.cpython-312.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions
1
hackaton/lib/python3.12/site-packages/blinker-1.8.2.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.