Mysql connector python debian

Пакет исходного кода: mysql-connector-python (8.0.15-3)

Другие пакеты, относящиеся к mysql-connector-python

  • для сборки
  • build-depends-indep
  • adep: debhelper-compat (= 12) Пакет недоступен
  • adep: default-mysql-server MySQL database server binaries and system database setup (metapackage) или virtual-mysql-server виртуальный пакет, предоставляемый mariadb-server, mysql-server-8.0
  • adep: dh-python Debian helper tools for packaging Python libraries and applications
  • adep: pylint Python 3 code static checker and UML diagram generator
  • adep: python3-all package depending on all supported Python 3 runtime versions
  • adep: python3-setuptools Python3 Distutils Enhancements

Download mysql-connector-python

Файл Размер (в Кб) Контрольная сумма MD5
mysql-connector-python_8.0.15-3.dsc 2,2 Кб a7507ec323b2ec28ad93b3ea86a4a3df
mysql-connector-python_8.0.15.orig.tar.gz 11 721,9 Кб a17486b10d3624fe1227d720571f9e81
mysql-connector-python_8.0.15-3.debian.tar.xz 5,2 Кб a325b4649cf3ba52d6cb0e6252d21139

Репозиторий пакетов исходного кода Debian ( VCS : Git) https://salsa.debian.org/python-team/packages/mysql-connector-python.git Репозиторий пакетов исходного кода Debian (доступен просмотр) https://salsa.debian.org/python-team/packages/mysql-connector-python

Эта страница также доступна на следующих языках (Как установить язык по умолчанию):

Чтобы сообщить о проблеме, связанной с веб-сайтом, отправьте сообщение (на английском) в список рассылки debian-www@lists.debian.org. Прочую контактную информацию см. на странице Debian Как с нами связаться.

Читайте также:  Java util concurrent list

Авторские права © 1997 — 2023 SPI Inc.; См. условия лицензии. Debian это торговый знак компании SPI Inc. Об этом сайте.

Источник

Package: python3-mysql.connector (8.0.15-3)

pure Python implementation of MySQL Client/Server protocol (Python3)

MySQL driver written in Python which does not depend on MySQL C client libraries and implements the DB API v2.0 specification (PEP-249).

MySQL Connector/Python is implementing the MySQL Client/Server protocol completely in Python. This means you don’t have to compile anything or MySQL (client library) doesn’t even have to be installed on the machine.

This package contains the Python 3 version of mysql.connector.

  • depends
  • recommends
  • suggests
  • enhances
  • dep: python3 interactive high-level object-oriented language (default python3 version)
  • dep: python3-protobuf Python 3 bindings for protocol buffers

Download python3-mysql.connector

Download for all available architectures
Architecture Package Size Installed Size Files
all 159.8 kB 1,305.0 kB [list of files]

This page is also available in the following languages (How to set the default document language):

To report a problem with the web site, e-mail debian-www@lists.debian.org. For other contact information, see the Debian contact page.

Content Copyright © 1997 — 2023 SPI Inc.; See license terms. Debian is a trademark of SPI Inc. Learn more about this site.

This service is sponsored by 1&1 Internet AG.

Источник

Пакет: python3-mysql.connector (8.0.15-3)

pure Python implementation of MySQL Client/Server protocol (Python3)

MySQL driver written in Python which does not depend on MySQL C client libraries and implements the DB API v2.0 specification (PEP-249).

MySQL Connector/Python is implementing the MySQL Client/Server protocol completely in Python. This means you don’t have to compile anything or MySQL (client library) doesn’t even have to be installed on the machine.

This package contains the Python 3 version of mysql.connector.

Другие пакеты, относящиеся к python3-mysql.connector

  • зависимости
  • рекомендации
  • предложения
  • enhances
  • dep: python3 интерактивный высокоуровневый объектно-ориентированный язык (версия python3 по умолчанию)
  • dep: python3-protobuf Python 3 bindings for protocol buffers

Загрузка python3-mysql.connector

Загрузить для всех доступных архитектур
Архитектура Размер пакета В установленном виде Файлы
all 159,8 Кб 1 305,0 Кб [список файлов]

Эта страница также доступна на следующих языках (Как установить язык по умолчанию):

Чтобы сообщить о проблеме, связанной с веб-сайтом, отправьте сообщение (на английском) в список рассылки debian-www@lists.debian.org. Прочую контактную информацию см. на странице Debian Как с нами связаться.

Авторские права © 1997 — 2023 SPI Inc.; См. условия лицензии. Debian это торговый знак компании SPI Inc. Об этом сайте.

Источник

Mysql connector python debian

Connector/Python installers in native package formats are available for most Unix-based systems, but not for macOS or Windows.

Prior to Connector/Python 8.0.22, the C extension and pure Python implementations were installed using two separate binary distributions; except they were always combined for Windows and macOS. The C extension implementation had “ cext ” in the package name.

Binary distributions that provide the C Extension link to an already installed C client library provided by a MySQL Server installation. For those distributions that are not statically linked, you must install MySQL Server if it is not already present on your system. To obtain it, visit the MySQL download site.

Installing Connector/Python with pip

Use pip to install Connector/Python on most any operating system:

$> pip install mysql-connector-python 

Installing Connector/Python on Microsoft Windows

Use pip; installing Python on Windows also makes pip available from the command line ( cmd.exe ).

MSI installer packages were available before Connector/Python 8.1.0.

Installing Connector/Python on Linux Using the MySQL Yum Repository

For EL7 or EL8-based platforms and Fedora, you can install Connector/Python using the MySQL Yum repository (see Installing Additional MySQL Products and Components with Yum). You must have the MySQL Yum repository on your system’s repository list (for details, see Adding the MySQL Yum Repository). To make sure that your Yum repository is up-to-date, use this command:

$> sudo yum update mysql-community-release 

Prerequisites

  • On EL7, EL8, and SUSE: A python3-protobuf RPM package is not available for Python 3.8 on these platforms, so the dependency is not part of the RPM specification; instead it must be manually installed with the likes of pip install protobuf . This is required as of v8.0.29.
  • Although optional, the mysql-community-client-plugins package is required to use newer authentication methods, such as caching_sha2_password that’s the default authentication method as of MySQL 8.0.
$> sudo yum install mysql-community-client-plugins 

Then install Connector/Python as follows:

$> sudo yum install mysql-connector-python 

Installing Connector/Python on Linux Using an RPM Package

Connector/Python Linux RPM packages ( .rpm files) are available from the Connector/Python download site (see Section 4.1, “Obtaining Connector/Python”).

To install a Connector/Python RPM package (denoted here as PACKAGE .rpm ), use this command:

Prerequisites

  • On EL7, EL8, and SUSE: A python3-protobuf RPM package is not available for Python 3.8 on these platforms, so the dependency is not part of the RPM specification; instead it must be manually installed with the likes of pip install protobuf . This is required as of v8.0.29.
  • Although optional, the mysql-community-client-plugins package is required to use newer authentication methods, such as caching_sha2_password that’s the default authentication method as of MySQL 8.0.

Prior to Connector/Python 8.0.22, the C extension implementation was a separate RPM package that contained “ cext ” in the name.

RPM provides a feature to verify the integrity and authenticity of packages before installing them. To learn more, see Verifying Package Integrity Using MD5 Checksums or GnuPG.

Installing Connector/Python on Linux Using a Debian Package

Connector/Python Debian packages ( .deb files) are available for Debian or Debian-like Linux systems from the Connector/Python download site (see Section 4.1, “Obtaining Connector/Python”).

Prerequisite. Although optional, the mysql-community-client-plugins package is required to use newer authentication methods, such as caching_sha2_password that’s the default authentication method as of MySQL 8.0.

To install a Connector/Python Debian package (denoted here as PACKAGE .deb ), use this command:

Prior to Connector/Python 8.0.22, the C extension implementation was a separate DEB package that contained “ cext ” in the name.

Installing Connector/Python on macOS

Use pip; installing Python on macOS also makes pip available.

DMG installer packages were available before Connector/Python 8.1.0.

Источник

Пакет: python3-mysql.connector (8.0.15-3)

pure Python implementation of MySQL Client/Server protocol (Python3)

MySQL driver written in Python which does not depend on MySQL C client libraries and implements the DB API v2.0 specification (PEP-249).

MySQL Connector/Python is implementing the MySQL Client/Server protocol completely in Python. This means you don’t have to compile anything or MySQL (client library) doesn’t even have to be installed on the machine.

This package contains the Python 3 version of mysql.connector.

Другие пакеты, относящиеся к python3-mysql.connector

  • зависимости
  • рекомендации
  • предложения
  • enhances
  • dep: python3 интерактивный высокоуровневый объектно-ориентированный язык (версия python3 по умолчанию)
  • dep: python3-protobuf Python 3 bindings for protocol buffers

Загрузка python3-mysql.connector

Загрузить для всех доступных архитектур
Архитектура Размер пакета В установленном виде Файлы
all 159,8 Кб 1 305,0 Кб [список файлов]

Эта страница также доступна на следующих языках (Как установить язык по умолчанию):

Чтобы сообщить о проблеме, связанной с веб-сайтом, отправьте сообщение (на английском) в список рассылки debian-www@lists.debian.org. Прочую контактную информацию см. на странице Debian Как с нами связаться.

Авторские права © 1997 — 2023 SPI Inc.; См. условия лицензии. Debian это торговый знак компании SPI Inc. Об этом сайте.

Источник

Оцените статью