structure saas with tools
This commit is contained in:
@@ -0,0 +1,125 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: psycopg2
|
||||
Version: 2.9.10
|
||||
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.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 :: 3.13
|
||||
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.8
|
||||
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.
|
||||
|
||||
.. 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
|
||||
|
||||
: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
|
||||
|
||||
|
||||
@@ -0,0 +1,178 @@
|
||||
AUTHORS
|
||||
INSTALL
|
||||
LICENSE
|
||||
MANIFEST.in
|
||||
Makefile
|
||||
NEWS
|
||||
README.rst
|
||||
setup.cfg
|
||||
setup.py
|
||||
doc/COPYING.LESSER
|
||||
doc/Makefile
|
||||
doc/README.rst
|
||||
doc/SUCCESS
|
||||
doc/pep-0249.txt
|
||||
doc/requirements.txt
|
||||
doc/src/Makefile
|
||||
doc/src/advanced.rst
|
||||
doc/src/conf.py
|
||||
doc/src/connection.rst
|
||||
doc/src/cursor.rst
|
||||
doc/src/errorcodes.rst
|
||||
doc/src/errors.rst
|
||||
doc/src/extensions.rst
|
||||
doc/src/extras.rst
|
||||
doc/src/faq.rst
|
||||
doc/src/index.rst
|
||||
doc/src/install.rst
|
||||
doc/src/license.rst
|
||||
doc/src/module.rst
|
||||
doc/src/news.rst
|
||||
doc/src/pool.rst
|
||||
doc/src/sql.rst
|
||||
doc/src/tz.rst
|
||||
doc/src/usage.rst
|
||||
doc/src/_static/psycopg.css
|
||||
doc/src/tools/make_sqlstate_docs.py
|
||||
doc/src/tools/lib/dbapi_extension.py
|
||||
doc/src/tools/lib/sql_role.py
|
||||
doc/src/tools/lib/ticket_role.py
|
||||
lib/__init__.py
|
||||
lib/_ipaddress.py
|
||||
lib/_json.py
|
||||
lib/_range.py
|
||||
lib/errorcodes.py
|
||||
lib/errors.py
|
||||
lib/extensions.py
|
||||
lib/extras.py
|
||||
lib/pool.py
|
||||
lib/sql.py
|
||||
lib/tz.py
|
||||
psycopg/_psycopg.vc9.amd64.manifest
|
||||
psycopg/_psycopg.vc9.x86.manifest
|
||||
psycopg/adapter_asis.c
|
||||
psycopg/adapter_asis.h
|
||||
psycopg/adapter_binary.c
|
||||
psycopg/adapter_binary.h
|
||||
psycopg/adapter_datetime.c
|
||||
psycopg/adapter_datetime.h
|
||||
psycopg/adapter_list.c
|
||||
psycopg/adapter_list.h
|
||||
psycopg/adapter_pboolean.c
|
||||
psycopg/adapter_pboolean.h
|
||||
psycopg/adapter_pdecimal.c
|
||||
psycopg/adapter_pdecimal.h
|
||||
psycopg/adapter_pfloat.c
|
||||
psycopg/adapter_pfloat.h
|
||||
psycopg/adapter_pint.c
|
||||
psycopg/adapter_pint.h
|
||||
psycopg/adapter_qstring.c
|
||||
psycopg/adapter_qstring.h
|
||||
psycopg/aix_support.c
|
||||
psycopg/aix_support.h
|
||||
psycopg/bytes_format.c
|
||||
psycopg/column.h
|
||||
psycopg/column_type.c
|
||||
psycopg/config.h
|
||||
psycopg/connection.h
|
||||
psycopg/connection_int.c
|
||||
psycopg/connection_type.c
|
||||
psycopg/conninfo.h
|
||||
psycopg/conninfo_type.c
|
||||
psycopg/cursor.h
|
||||
psycopg/cursor_int.c
|
||||
psycopg/cursor_type.c
|
||||
psycopg/diagnostics.h
|
||||
psycopg/diagnostics_type.c
|
||||
psycopg/error.h
|
||||
psycopg/error_type.c
|
||||
psycopg/green.c
|
||||
psycopg/green.h
|
||||
psycopg/libpq_support.c
|
||||
psycopg/libpq_support.h
|
||||
psycopg/lobject.h
|
||||
psycopg/lobject_int.c
|
||||
psycopg/lobject_type.c
|
||||
psycopg/microprotocols.c
|
||||
psycopg/microprotocols.h
|
||||
psycopg/microprotocols_proto.c
|
||||
psycopg/microprotocols_proto.h
|
||||
psycopg/notify.h
|
||||
psycopg/notify_type.c
|
||||
psycopg/pgtypes.h
|
||||
psycopg/pqpath.c
|
||||
psycopg/pqpath.h
|
||||
psycopg/psycopg.h
|
||||
psycopg/psycopgmodule.c
|
||||
psycopg/python.h
|
||||
psycopg/replication_connection.h
|
||||
psycopg/replication_connection_type.c
|
||||
psycopg/replication_cursor.h
|
||||
psycopg/replication_cursor_type.c
|
||||
psycopg/replication_message.h
|
||||
psycopg/replication_message_type.c
|
||||
psycopg/solaris_support.c
|
||||
psycopg/solaris_support.h
|
||||
psycopg/sqlstate_errors.h
|
||||
psycopg/typecast.c
|
||||
psycopg/typecast.h
|
||||
psycopg/typecast_array.c
|
||||
psycopg/typecast_basic.c
|
||||
psycopg/typecast_binary.c
|
||||
psycopg/typecast_binary.h
|
||||
psycopg/typecast_builtins.c
|
||||
psycopg/typecast_datetime.c
|
||||
psycopg/utils.c
|
||||
psycopg/utils.h
|
||||
psycopg/win32_support.c
|
||||
psycopg/win32_support.h
|
||||
psycopg/xid.h
|
||||
psycopg/xid_type.c
|
||||
psycopg2.egg-info/PKG-INFO
|
||||
psycopg2.egg-info/SOURCES.txt
|
||||
psycopg2.egg-info/dependency_links.txt
|
||||
psycopg2.egg-info/top_level.txt
|
||||
scripts/make_errorcodes.py
|
||||
scripts/make_errors.py
|
||||
scripts/refcounter.py
|
||||
scripts/build/appveyor.py
|
||||
scripts/build/build_libpq.sh
|
||||
scripts/build/build_macos_arm64.sh
|
||||
scripts/build/build_sdist.sh
|
||||
scripts/build/download_packages_appveyor.py
|
||||
scripts/build/print_so_versions.sh
|
||||
scripts/build/run_build_macos_arm64.sh
|
||||
scripts/build/scaleway_m1.sh
|
||||
scripts/build/strip_wheel.sh
|
||||
scripts/build/wheel_linux_before_all.sh
|
||||
scripts/build/wheel_macos_before_all.sh
|
||||
tests/__init__.py
|
||||
tests/dbapi20.py
|
||||
tests/dbapi20_tpc.py
|
||||
tests/test_async.py
|
||||
tests/test_bugX000.py
|
||||
tests/test_bug_gc.py
|
||||
tests/test_cancel.py
|
||||
tests/test_connection.py
|
||||
tests/test_copy.py
|
||||
tests/test_cursor.py
|
||||
tests/test_dates.py
|
||||
tests/test_errcodes.py
|
||||
tests/test_errors.py
|
||||
tests/test_extras_dictcursor.py
|
||||
tests/test_fast_executemany.py
|
||||
tests/test_green.py
|
||||
tests/test_ipaddress.py
|
||||
tests/test_lobject.py
|
||||
tests/test_module.py
|
||||
tests/test_notify.py
|
||||
tests/test_psycopg2_dbapi20.py
|
||||
tests/test_quote.py
|
||||
tests/test_replication.py
|
||||
tests/test_sql.py
|
||||
tests/test_transaction.py
|
||||
tests/test_types_basic.py
|
||||
tests/test_types_extras.py
|
||||
tests/test_with.py
|
||||
tests/testconfig.py
|
||||
tests/testutils.py
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
../psycopg2/__init__.py
|
||||
../psycopg2/__pycache__/__init__.cpython-310.pyc
|
||||
../psycopg2/__pycache__/_ipaddress.cpython-310.pyc
|
||||
../psycopg2/__pycache__/_json.cpython-310.pyc
|
||||
../psycopg2/__pycache__/_range.cpython-310.pyc
|
||||
../psycopg2/__pycache__/errorcodes.cpython-310.pyc
|
||||
../psycopg2/__pycache__/errors.cpython-310.pyc
|
||||
../psycopg2/__pycache__/extensions.cpython-310.pyc
|
||||
../psycopg2/__pycache__/extras.cpython-310.pyc
|
||||
../psycopg2/__pycache__/pool.cpython-310.pyc
|
||||
../psycopg2/__pycache__/sql.cpython-310.pyc
|
||||
../psycopg2/__pycache__/tz.cpython-310.pyc
|
||||
../psycopg2/_ipaddress.py
|
||||
../psycopg2/_json.py
|
||||
../psycopg2/_psycopg.cpython-310-x86_64-linux-gnu.so
|
||||
../psycopg2/_range.py
|
||||
../psycopg2/errorcodes.py
|
||||
../psycopg2/errors.py
|
||||
../psycopg2/extensions.py
|
||||
../psycopg2/extras.py
|
||||
../psycopg2/pool.py
|
||||
../psycopg2/sql.py
|
||||
../psycopg2/tz.py
|
||||
PKG-INFO
|
||||
SOURCES.txt
|
||||
dependency_links.txt
|
||||
top_level.txt
|
||||
@@ -0,0 +1 @@
|
||||
psycopg2
|
||||
Reference in New Issue
Block a user