Metadata-Version: 2.4 Name: vecs Version: 0.4.5 Summary: pgvector client Home-page: https://github.com/supabase/vecs Author: Oliver Rice License: MIT Classifier: Development Status :: 4 - Beta Classifier: Natural Language :: English Classifier: Operating System :: OS Independent 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 Description-Content-Type: text/markdown License-File: LICENSE Requires-Dist: pgvector==0.3.* Requires-Dist: sqlalchemy==2.* Requires-Dist: psycopg2-binary==2.9.* Requires-Dist: flupy==1.* Requires-Dist: deprecated==1.2.* Provides-Extra: dev Requires-Dist: pytest; extra == "dev" Requires-Dist: parse; extra == "dev" Requires-Dist: numpy; extra == "dev" Requires-Dist: pytest-cov; extra == "dev" Provides-Extra: docs Requires-Dist: mkdocs; extra == "docs" Requires-Dist: pygments; extra == "docs" Requires-Dist: pymdown-extensions; extra == "docs" Requires-Dist: pymarkdown; extra == "docs" Requires-Dist: mike; extra == "docs" Provides-Extra: text-embedding Requires-Dist: sentence-transformers==2.*; extra == "text-embedding" Dynamic: author Dynamic: classifier Dynamic: description Dynamic: description-content-type Dynamic: home-page Dynamic: license Dynamic: license-file Dynamic: provides-extra Dynamic: requires-dist Dynamic: summary # vecs
--- **Documentation**: https://supabase.github.io/vecs/latest/ **Source Code**: https://github.com/supabase/vecs --- `vecs` is a python client for managing and querying vector stores in PostgreSQL with the [pgvector extension](https://github.com/pgvector/pgvector). This guide will help you get started with using vecs. If you don't have a Postgres database with the pgvector ready, see [hosting](https://supabase.github.io/vecs/hosting/) for easy options. ## Installation Requires: - Python 3.7+ You can install vecs using pip: ```sh pip install vecs ``` ## Usage Visit the [quickstart guide](https://supabase.github.io/vecs/latest/api) for more complete info. ```python import vecs DB_CONNECTION = "postgresql://