before send to remote
This commit is contained in:
1
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/INSTALLER
vendored
Normal file
1
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/INSTALLER
vendored
Normal file
@@ -0,0 +1 @@
|
||||
pip
|
49
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/LICENSE
vendored
Normal file
49
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/LICENSE
vendored
Normal file
@@ -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.
|
111
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/METADATA
vendored
Normal file
111
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/METADATA
vendored
Normal file
@@ -0,0 +1,111 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: psycopg2-binary
|
||||
Version: 2.9.3
|
||||
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: 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.6
|
||||
Classifier: Programming Language :: Python :: 3.7
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
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.6
|
||||
License-File: LICENSE
|
||||
|
||||
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.
|
||||
|
||||
|
||||
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
|
||||
|
||||
:Linux/OSX: |gh-actions|
|
||||
:Windows: |appveyor|
|
||||
|
||||
.. |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: Linux and OSX build status
|
||||
|
||||
.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/psycopg/psycopg2?branch=master&svg=true
|
||||
:target: https://ci.appveyor.com/project/psycopg/psycopg2/branch/master
|
||||
:alt: Windows build status
|
||||
|
||||
|
43
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/RECORD
vendored
Normal file
43
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/RECORD
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
psycopg2/__init__.py,sha256=9mo5Qd0uWHiEBx2CdogGos2kNqtlNNGzbtYlGC0hWS8,4768
|
||||
psycopg2/__pycache__/__init__.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/_ipaddress.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/_json.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/_range.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/errorcodes.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/errors.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/extensions.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/extras.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/pool.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/sql.cpython-38.pyc,,
|
||||
psycopg2/__pycache__/tz.cpython-38.pyc,,
|
||||
psycopg2/_ipaddress.py,sha256=jkuyhLgqUGRBcLNWDM8QJysV6q1Npc_RYH4_kE7JZPU,2922
|
||||
psycopg2/_json.py,sha256=XPn4PnzbTg1Dcqz7n1JMv5dKhB5VFV6834GEtxSawt0,7153
|
||||
psycopg2/_psycopg.cpython-38-x86_64-linux-gnu.so,sha256=xxcYn59FXrCMqfZTEJ8KdAEHhIZCgYzqp_mDCMDmO_M,335016
|
||||
psycopg2/_range.py,sha256=79xD6i5_aIVYTj_q6lrqfQEz00y3V16nJ5kbScLqy6U,17608
|
||||
psycopg2/errorcodes.py,sha256=pfy0UuIGsjMi6UjPSwyh17XGTXZVTZ4W-FPFLgx3Sbo,14308
|
||||
psycopg2/errors.py,sha256=aAS4dJyTg1bsDzJDCRQAMB_s7zv-Q4yB6Yvih26I-0M,1425
|
||||
psycopg2/extensions.py,sha256=CG0kG5vL8Ot503UGlDXXJJFdFWLg4HE2_c1-lLOLc8M,6797
|
||||
psycopg2/extras.py,sha256=XOQ6YkyaLeypg2_POPXt8c_MUbuSthdMYywGn9rMNfo,42863
|
||||
psycopg2/pool.py,sha256=UGEt8IdP3xNc2PGYNlG4sQvg8nhf4aeCnz39hTR0H8I,6316
|
||||
psycopg2/sql.py,sha256=OcFEAmpe2aMfrx0MEk4Lx00XvXXJCmvllaOVbJY-yoE,14779
|
||||
psycopg2/tz.py,sha256=r95kK7eGSpOYr_luCyYsznHMzjl52sLjsnSPXkXLzRI,4870
|
||||
psycopg2_binary-2.9.3.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
psycopg2_binary-2.9.3.dist-info/LICENSE,sha256=lhS4XfyacsWyyjMUTB1-HtOxwpdFnZ-yimpXYsLo1xs,2238
|
||||
psycopg2_binary-2.9.3.dist-info/METADATA,sha256=807tLvFL0hlZCYJgLs8XDuKXqqcTZSrGaV-IBfu-USE,4395
|
||||
psycopg2_binary-2.9.3.dist-info/RECORD,,
|
||||
psycopg2_binary-2.9.3.dist-info/WHEEL,sha256=paN2rHE-sLfyg0Z4YvQnentMRWXxZnkclRDH8E5J6qk,148
|
||||
psycopg2_binary-2.9.3.dist-info/top_level.txt,sha256=7dHGpLqQ3w-vGmGEVn-7uK90qU9fyrGdWWi7S-gTcnM,9
|
||||
psycopg2_binary.libs/libcom_err-2abe824b.so.2.1,sha256=taGBBYtVe6ise7Ve0lWmTl1SLVgC0JlCEzeyvDRsCa4,17496
|
||||
psycopg2_binary.libs/libcrypto-2f2fcd35.so.1.1,sha256=1LccTw4JIRILCMAv30DJW-NUN39uWqZ1NfWBa4wHpFw,3129088
|
||||
psycopg2_binary.libs/libgssapi_krb5-497db0c6.so.2.2,sha256=mc9eZgUGDF_eIf-AFHkXFMm3Ovk6uRcsJbOTYWcZKZg,394360
|
||||
psycopg2_binary.libs/libk5crypto-b1f99d5c.so.3.1,sha256=LEJWL5lM-ykMIwTrVuBG4BLELEJdCeBwZiFdGG6aoAM,224048
|
||||
psycopg2_binary.libs/libkeyutils-dfe70bd6.so.1.5,sha256=8ej6zRurnsh6y6-HSKLegbA6k98uFD-ncjGq19oa3QE,17912
|
||||
psycopg2_binary.libs/libkrb5-fc820a1d.so.3.3,sha256=NWD6oDNDuzSHTimZJ4Pb_rOEzixOEVhgGvQBBjEIoQA,1080392
|
||||
psycopg2_binary.libs/libkrb5support-a4e68a84.so.0.1,sha256=nw4nKBTxpkLxJFpCYklyLEqogj3dAgoErfKfl1ddY_s,80968
|
||||
psycopg2_binary.libs/liblber-2-f149c062.4.so.2.11.7,sha256=s4SxWilHt-Wy8x5TsIMI9OOWSMUGNhEHuG7FJchHFfU,60952
|
||||
psycopg2_binary.libs/libldap_r-2-aa060733.4.so.2.11.7,sha256=8YtrZdd-YXht1Yv9DuIvlvxNMIhCq_iLK8nUOqd2D5Q,416504
|
||||
psycopg2_binary.libs/libpcre-9513aab5.so.1.2.0,sha256=r9Y0L2DyrIDPw-5TsPJRcdYcb55MKF6Wf3Ar9eI7gbI,406816
|
||||
psycopg2_binary.libs/libpq-30c1c89d.so.5.14,sha256=jY4EqvPXN6syOBGodDzFM4UDLIMXhvjWdOPL4RrZGjg,378760
|
||||
psycopg2_binary.libs/libsasl2-8fd1a564.so.3.0.0,sha256=mM86dEB7-IApgiTJbjzpp_bZxpxCz70YRx_fbrlCxnU,142688
|
||||
psycopg2_binary.libs/libselinux-0922c95c.so.1,sha256=QYUoY49r_73g2YCrevw22vsNRPMouBuNZzcna-pTATM,178336
|
||||
psycopg2_binary.libs/libssl-6b7b94d5.so.1.1,sha256=Yfy9bXD39J0NIaikkazuesVVrf1FmzF6iWlNA57SP8g,646080
|
6
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/WHEEL
vendored
Normal file
6
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/WHEEL
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.37.0)
|
||||
Root-Is-Purelib: false
|
||||
Tag: cp38-cp38-manylinux_2_17_x86_64
|
||||
Tag: cp38-cp38-manylinux2014_x86_64
|
||||
|
1
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/top_level.txt
vendored
Normal file
1
env/lib/python3.8/site-packages/psycopg2_binary-2.9.3.dist-info/top_level.txt
vendored
Normal file
@@ -0,0 +1 @@
|
||||
psycopg2
|
Reference in New Issue
Block a user