UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

59 lines 2.05 kB
/** * **psycopg3** - New generation PostgreSQL database adapter for the Python programming language * * @domain `psycopg.org/psycopg3` * @version `3.2.9` (8 versions available) * @versions From newest version to oldest. * * @install `launchpad install +psycopg.org/psycopg3 -- $SHELL -i` * @dependencies `python.org~3.11`, `postgresql.org` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.psycopgorgpsycopg3 * console.log(pkg.name) // "psycopg3" * console.log(pkg.description) // "New generation PostgreSQL database adapter for ..." * console.log(pkg.versions[0]) // "3.2.9" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/psycopg-org/psycopg3.md * @see https://ts-pkgx.netlify.app/usage */ export declare const psycopgorgpsycopg3Package: { /** * The display name of this package. */ name: 'psycopg3'; /** * The canonical domain name for this package. */ domain: 'psycopg.org/psycopg3'; /** * Brief description of what this package does. */ description: 'New generation PostgreSQL database adapter for the Python programming language'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/psycopg.org/psycopg3/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/psycopg/psycopg'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install +psycopg.org/psycopg3 -- $SHELL -i'; programs: readonly []; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['python.org~3.11', 'postgresql.org']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['3.2.9', '3.2.8', '3.2.7', '3.2.6', '3.2.5', '3.2.4', '3.2.3', '3.2.2']; aliases: readonly [] }; export type Psycopgorgpsycopg3Package = typeof psycopgorgpsycopg3Package