first commit
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,131 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: psycopg2-binary
|
||||
Version: 2.9.11
|
||||
Summary: psycopg2 - Python-PostgreSQL Database Adapter
|
||||
Home-page: https://psycopg.org/
|
||||
Author: Federico Di Gregorio
|
||||
Author-email: fog@initd.org
|
||||
Maintainer: Daniele Varrazzo
|
||||
Maintainer-email: daniele.varrazzo@gmail.com
|
||||
License: LGPL with exceptions
|
||||
Project-URL: Homepage, https://psycopg.org/
|
||||
Project-URL: Changes, https://www.psycopg.org/docs/news.html
|
||||
Project-URL: Documentation, https://www.psycopg.org/docs/
|
||||
Project-URL: Code, https://github.com/psycopg/psycopg2
|
||||
Project-URL: Issue Tracker, https://github.com/psycopg/psycopg2/issues
|
||||
Project-URL: Download, https://pypi.org/project/psycopg2/
|
||||
Platform: any
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
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 :: 3.13
|
||||
Classifier: Programming Language :: Python :: 3.14
|
||||
Classifier: Programming Language :: Python :: 3 :: Only
|
||||
Classifier: Programming Language :: Python :: Implementation :: CPython
|
||||
Classifier: Programming Language :: C
|
||||
Classifier: Programming Language :: SQL
|
||||
Classifier: Topic :: Database
|
||||
Classifier: Topic :: Database :: Front-Ends
|
||||
Classifier: Topic :: Software Development
|
||||
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
||||
Classifier: Operating System :: Microsoft :: Windows
|
||||
Classifier: Operating System :: Unix
|
||||
Requires-Python: >=3.9
|
||||
License-File: LICENSE
|
||||
Dynamic: author
|
||||
Dynamic: author-email
|
||||
Dynamic: classifier
|
||||
Dynamic: description
|
||||
Dynamic: home-page
|
||||
Dynamic: license
|
||||
Dynamic: license-file
|
||||
Dynamic: maintainer
|
||||
Dynamic: maintainer-email
|
||||
Dynamic: platform
|
||||
Dynamic: project-url
|
||||
Dynamic: requires-python
|
||||
Dynamic: summary
|
||||
|
||||
Psycopg is the most popular PostgreSQL database adapter for the Python
|
||||
programming language. Its main features are the complete implementation of
|
||||
the Python DB API 2.0 specification and the thread safety (several threads can
|
||||
share the same connection). It was designed for heavily multi-threaded
|
||||
applications that create and destroy lots of cursors and make a large number
|
||||
of concurrent "INSERT"s or "UPDATE"s.
|
||||
|
||||
Psycopg 2 is mostly implemented in C as a libpq wrapper, resulting in being
|
||||
both efficient and secure. It features client-side and server-side cursors,
|
||||
asynchronous communication and notifications, "COPY TO/COPY FROM" support.
|
||||
Many Python types are supported out-of-the-box and adapted to matching
|
||||
PostgreSQL data types; adaptation can be extended and customized thanks to a
|
||||
flexible objects adaptation system.
|
||||
|
||||
Psycopg 2 is both Unicode and Python 3 friendly.
|
||||
|
||||
.. Note::
|
||||
|
||||
The psycopg2 package is still widely used and actively maintained, but it
|
||||
is not expected to receive new features.
|
||||
|
||||
`Psycopg 3`__ is the evolution of psycopg2 and is where `new features are
|
||||
being developed`__: if you are starting a new project you should probably
|
||||
start from 3!
|
||||
|
||||
.. __: https://pypi.org/project/psycopg/
|
||||
.. __: https://www.psycopg.org/psycopg3/docs/index.html
|
||||
|
||||
|
||||
Documentation
|
||||
-------------
|
||||
|
||||
Documentation is included in the ``doc`` directory and is `available online`__.
|
||||
|
||||
.. __: https://www.psycopg.org/docs/
|
||||
|
||||
For any other resource (source code repository, bug tracker, mailing list)
|
||||
please check the `project homepage`__.
|
||||
|
||||
.. __: https://psycopg.org/
|
||||
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
Building Psycopg requires a few prerequisites (a C compiler, some development
|
||||
packages): please check the install_ and the faq_ documents in the ``doc`` dir
|
||||
or online for the details.
|
||||
|
||||
If prerequisites are met, you can install psycopg like any other Python
|
||||
package, using ``pip`` to download it from PyPI_::
|
||||
|
||||
$ pip install psycopg2
|
||||
|
||||
or using ``setup.py`` if you have downloaded the source package locally::
|
||||
|
||||
$ python setup.py build
|
||||
$ sudo python setup.py install
|
||||
|
||||
You can also obtain a stand-alone package, not requiring a compiler or
|
||||
external libraries, by installing the `psycopg2-binary`_ package from PyPI::
|
||||
|
||||
$ pip install psycopg2-binary
|
||||
|
||||
The binary package is a practical choice for development and testing but in
|
||||
production it is advised to use the package built from sources.
|
||||
|
||||
.. _PyPI: https://pypi.org/project/psycopg2/
|
||||
.. _psycopg2-binary: https://pypi.org/project/psycopg2-binary/
|
||||
.. _install: https://www.psycopg.org/docs/install.html#install-from-source
|
||||
.. _faq: https://www.psycopg.org/docs/faq.html#faq-compile
|
||||
|
||||
:Build status: |gh-actions|
|
||||
|
||||
.. |gh-actions| image:: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml/badge.svg
|
||||
:target: https://github.com/psycopg/psycopg2/actions/workflows/tests.yml
|
||||
:alt: Build status
|
||||
@@ -0,0 +1,41 @@
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/__init__.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/_ipaddress.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/_json.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/_range.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/errorcodes.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/errors.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/extensions.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/extras.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/pool.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/sql.cpython-39.pyc,,
|
||||
../../../../../../../Library/Caches/com.apple.python/Users/duguoyou/MLFlow/algorithm-showcase/backend/venv/lib/python3.9/site-packages/psycopg2/tz.cpython-39.pyc,,
|
||||
psycopg2/.dylibs/libcom_err.3.0.dylib,sha256=Xp8tyHLbRtACf3Lt_8ATGBTMh-yj0yvapuLGp9WxH0c,73488
|
||||
psycopg2/.dylibs/libcrypto.3.dylib,sha256=dmse8OnkL_C7yHk9prPSuZVw1_MtoYIhmkOt0RDQE2A,4984000
|
||||
psycopg2/.dylibs/libgssapi_krb5.2.2.dylib,sha256=vHzKoLYb8UQuHo_J_L1eahQA8jRqFgk2xXe8r01hKl0,398224
|
||||
psycopg2/.dylibs/libk5crypto.3.1.dylib,sha256=xyvrn7xMKhQLHFvumcu6N0eeg683JYif4THPt-WjdxE,232784
|
||||
psycopg2/.dylibs/libkrb5.3.3.dylib,sha256=vVyPK-di5nAEQtCLGBQqXF6QSBh8mU7ieIbpWw3g5uM,984752
|
||||
psycopg2/.dylibs/libkrb5support.1.1.dylib,sha256=cUODfkWAwonwsaQBkVIkaloxEytWclxN6zRCduCOmz0,110528
|
||||
psycopg2/.dylibs/liblber.2.dylib,sha256=lV1z9000B4k3s6NWmswGZym5fJja8fhADtnV8VuyEAA,137456
|
||||
psycopg2/.dylibs/libldap.2.dylib,sha256=Qp4SCi__PO1FODvRu6BpGY2ILx7MTh-ScgSWodkX7S8,479216
|
||||
psycopg2/.dylibs/libpq.5.dylib,sha256=mOSh2asrpSPhpyDsCkz6igzg9KmRRkTHoTDw__cXtaw,354496
|
||||
psycopg2/.dylibs/libsasl2.3.dylib,sha256=okOMpKS2RgGNqNzj-O2pertRcHl_4aCmQtXxCiZzN-Y,164464
|
||||
psycopg2/.dylibs/libssl.3.dylib,sha256=C0iPeXIDyORX55gMfMXERtn0XK0giDAbD3TjIUgPIoo,1018944
|
||||
psycopg2/__init__.py,sha256=9mo5Qd0uWHiEBx2CdogGos2kNqtlNNGzbtYlGC0hWS8,4768
|
||||
psycopg2/_ipaddress.py,sha256=jkuyhLgqUGRBcLNWDM8QJysV6q1Npc_RYH4_kE7JZPU,2922
|
||||
psycopg2/_json.py,sha256=XPn4PnzbTg1Dcqz7n1JMv5dKhB5VFV6834GEtxSawt0,7153
|
||||
psycopg2/_psycopg.cpython-39-darwin.so,sha256=ChFSn7-9wUIk1XS-Op4OgPWFBt-dRckWLum_LOPLFaw,330160
|
||||
psycopg2/_range.py,sha256=sXeenGraJEEw2I3mc8RlmNivy2jMg7zWoanDes2Ywp8,18494
|
||||
psycopg2/errorcodes.py,sha256=8BE_ZAP7bhsISKyLP0gkrWg_NNj1uj37dR356EDe6yo,14512
|
||||
psycopg2/errors.py,sha256=aAS4dJyTg1bsDzJDCRQAMB_s7zv-Q4yB6Yvih26I-0M,1425
|
||||
psycopg2/extensions.py,sha256=CG0kG5vL8Ot503UGlDXXJJFdFWLg4HE2_c1-lLOLc8M,6797
|
||||
psycopg2/extras.py,sha256=oBfrdvtWn8ITxc3x-h2h6IwHUsWdVqCdf4Gphb0JqY8,44215
|
||||
psycopg2/pool.py,sha256=UGEt8IdP3xNc2PGYNlG4sQvg8nhf4aeCnz39hTR0H8I,6316
|
||||
psycopg2/sql.py,sha256=OcFEAmpe2aMfrx0MEk4Lx00XvXXJCmvllaOVbJY-yoE,14779
|
||||
psycopg2/tz.py,sha256=r95kK7eGSpOYr_luCyYsznHMzjl52sLjsnSPXkXLzRI,4870
|
||||
psycopg2_binary-2.9.11.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
psycopg2_binary-2.9.11.dist-info/METADATA,sha256=1tdxRLsi5AoaySIZj6NHg0Ib24mQ7uvG-64QpxNB3fw,4936
|
||||
psycopg2_binary-2.9.11.dist-info/RECORD,,
|
||||
psycopg2_binary-2.9.11.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
psycopg2_binary-2.9.11.dist-info/WHEEL,sha256=bDWaFWigpG5bEpqw9IoRiyYs8MvmSFh0OhUAOoi_-KA,134
|
||||
psycopg2_binary-2.9.11.dist-info/licenses/LICENSE,sha256=lhS4XfyacsWyyjMUTB1-HtOxwpdFnZ-yimpXYsLo1xs,2238
|
||||
psycopg2_binary-2.9.11.dist-info/top_level.txt,sha256=7dHGpLqQ3w-vGmGEVn-7uK90qU9fyrGdWWi7S-gTcnM,9
|
||||
@@ -0,0 +1,6 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (80.9.0)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp39-cp39-macosx_11_0_arm64
|
||||
Generator: delocate 0.13.0
|
||||
|
||||
@@ -0,0 +1,49 @@
|
||||
psycopg2 and the LGPL
|
||||
---------------------
|
||||
|
||||
psycopg2 is free software: you can redistribute it and/or modify it
|
||||
under the terms of the GNU Lesser General Public License as published
|
||||
by the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
psycopg2 is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
||||
License for more details.
|
||||
|
||||
In addition, as a special exception, the copyright holders give
|
||||
permission to link this program with the OpenSSL library (or with
|
||||
modified versions of OpenSSL that use the same license as OpenSSL),
|
||||
and distribute linked combinations including the two.
|
||||
|
||||
You must obey the GNU Lesser General Public License in all respects for
|
||||
all of the code used other than OpenSSL. If you modify file(s) with this
|
||||
exception, you may extend this exception to your version of the file(s),
|
||||
but you are not obligated to do so. If you do not wish to do so, delete
|
||||
this exception statement from your version. If you delete this exception
|
||||
statement from all source files in the program, then also delete it here.
|
||||
|
||||
You should have received a copy of the GNU Lesser General Public License
|
||||
along with psycopg2 (see the doc/ directory.)
|
||||
If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
|
||||
Alternative licenses
|
||||
--------------------
|
||||
|
||||
The following BSD-like license applies (at your option) to the files following
|
||||
the pattern ``psycopg/adapter*.{h,c}`` and ``psycopg/microprotocol*.{h,c}``:
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this
|
||||
software in a product, an acknowledgment in the product documentation
|
||||
would be appreciated but is not required.
|
||||
|
||||
2. Altered source versions must be plainly marked as such, and must not
|
||||
be misrepresented as being the original software.
|
||||
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
@@ -0,0 +1 @@
|
||||
psycopg2
|
||||
Reference in New Issue
Block a user