Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-PyMySQL-0.7.11-lp152.3.3 RPM for noarch

From OpenSuSE Leap 15.2 for noarch

Name: python2-PyMySQL Distribution: openSUSE Leap 15.2
Version: 0.7.11 Vendor: openSUSE
Release: lp152.3.3 Build date: Sun Mar 1 12:26:00 2020
Group: Development/Languages/Python Build host: lamb64
Size: 754796 Source RPM: python-PyMySQL-0.7.11-lp152.3.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/PyMySQL/PyMySQL/
Summary: Pure Python MySQL Driver
This package contains a pure-Python MySQL client library. Documentation on the
MySQL client/server protocol can be found here:
http://forge.mysql.com/wiki/MySQL_Internals_ClientServer_Protocol

The goal of pymysql is to be a drop-in replacement for MySQLdb and work on
CPython 2.3+, Jython, IronPython, PyPy and Python 3. We test for compatibility
by simply changing the import statements in the Django MySQL backend and running
its unit tests as well as running it against the MySQLdb and myconnpy unit tests.

Provides

Requires

License

MIT

Changelog

* Wed Aug 16 2017 toddrme2178@gmail.com
  - Implement single-spec version
  - update to 0.7.11
    * Fixed Connection.close() failed when failed to send COM_CLOSE packet.
    * Cursor.executemany() accepts query ends with semicolon.
    * ssl parameters can be read from my.cnf.
  - update to 0.7.10
    * **SECURITY FIX**: Raise RuntimeError when received LOAD_LOCAL packet while
      ``loacal_infile=False``.  (Thanks to Bryan Helmig)
    * Raise SERVER_LOST error for MariaDB's shutdown packet (#540)
    * Change default connect_timeout to 10.
    * Add bind_address option (#529)
  - update to 0.7.9
    * Fix PyMySQL stop reading rows when first column is empty string (#513)
      Reverts DEPRECATE_EOF introduced in 0.7.7.
  - update to 0.7.8
    * Revert error message change in 0.7.7.
      (SQLAlchemy parses error message, #507)
  - update to 0.7.7
    * Add new unicode collation (#498)
    * Fix conv option is not used for encoding objects.
    * Experimental support for DEPRECATE_EOF protocol.
* Tue Nov 15 2016 dmueller@suse.com
  - update to 0.7.6:
    * Fix SELECT JSON type cause UnicodeError
    * Avoid float convertion while parsing microseconds
    * Warning has number
    * SSCursor supports warnings
    * Fix exception raised while importing when getpwuid() fails (#472)
    * SSCursor supports LOAD DATA LOCAL INFILE (#473)
    * Fix encoding error happen for JSON type (#477)
    * Fix test fail on Python 2.7 and MySQL 5.7 (#478)
* Fri Jun 03 2016 tbechtold@suse.com
  - update to 0.7.4:
    * Fix AttributeError may happen while Connection.__del__ (#463)
    * Fix SyntaxError in test_cursor. (#464)
    * frozenset support for query value. (#461)
    * Start using readthedocs.io
    * Add read_timeout and write_timeout option.
    * Support serialization customization by `conv` option.
    * Unknown type is converted by `str()`, for MySQLdb compatibility.
    * Support '%%' in `Cursor.executemany()`
    * Support REPLACE statement in `Cursor.executemany()`
    * Fix handling incomplete row caused by 'SHOW SLAVE HOSTS'.
    * Fix decode error when use_unicode=False on PY3
    * Fix port option in my.cnf file is ignored.
* Thu Mar 24 2016 toddrme2178@gmail.com
  - Add license and docs
* Thu Mar 24 2016 toddrme2178@gmail.com
  - Update to 0.7.2
    * Fix misuse of `max_allowed_packet` parameter. (#426, #407 and #397)
    * Add %(name)s plceholder support to `Cursor.executemany()`. (#427, thanks to
      @WorldException)
  - Update to 0.7.1
    * Fix auth fail with MySQL 5.1
    * Fix escaping unicode fails on Python 2
  - Update to 0.7
    * Faster binary escaping
    * Add `"_binary" prefix` to string literal for binary types.
      binary types are: `bytearray` on Python 2, `bytes` and `bytearray` on Python 3.
      This is because recent MySQL show warnings when string literal is invalid for
      connection encoding.
    * `pymysql.Binary()` returns `bytearray` on Python 2.  This is required to distinguish
      binary and string.
    * Auth plugin support.
    * no_delay option is ignored.  It will be removed in PyMySQL 0.8.
  - Update to 0.6.7
    * Allow self signed certificate
    * Add max_allowed_packet option
    * Fix error when bytes in executemany
    * Support geometry type
    * Add coveralls badge to README
    * Fix some bugs relating to warnings
    * Add Cursor.mogrify() method
    * no_delay option is deprecated and True by default
    * Fix options from my.cnf overrides options from arguments
    * Allow socket like object.  (It's not feature for end users)
    * Strip quotes while reading options from my.cnf file
    * Fix encoding issue in executemany()
* Mon May 11 2015 benoit.monin@gmx.fr
  - update to version 0.6.6:
      Add context manager to cursor
    * Fix can't encode blob that is not utf-8 on PY3. (regression of
      0.6.4, Thanks to @wiggzz)
  - additional changes from version 0.6.4
    * Support "LOAD LOCAL INFILE".  Thanks @wraziens
    * Show MySQL warnings after execute query.
    * Fix MySQLError may be wrapped with OperationalError while
      connectiong. (#274)
    * SSCursor no longer attempts to expire un-collected rows within
      __del__, delaying termination of an interrupted program;
      cleanup of uncollected rows is left to the Connection on next
      execute, which emits a warning at that time. (#287)
    * Support datetime and time with microsecond. (#303)
    * Use surrogateescape to format bytes on Python 3.
    * OperationalError raised from connect() have information about
      original exception. (#304)
    * `init_command` now support multi statement.
    * `Connection.escape()` method now accepts second argument
      compatible to MySQL-Python.
  - additional changes from version 0.6.3
    * Fixed multiple result sets with SSCursor.
    * Fixed connection timeout.
    * Fixed literal set syntax to work on Py2.6.
    * Allow for mysql negative values with 0 hour timedelta.
    * Added Connection.begin().
  - additional changes from version 0.6.2
    * Fixed old password on Python 3.
    * Added support for bulk insert in Cursor.executemany().
    * Added support for microseconds in datetimes and dates before
      1900.
    * Several other bug fixes.
  - additional changes from version 0.6.1
    * Added cursor._last_executed for MySQLdb compatibility
    * Cursor.fetchall() and .fetchmany now return list, not tuple
    * Allow "length of auth-plugin-data" = 0
    * Cursor.connection references connection object without weakref
  - remove unwanted shebang of python files in test_MySQLdb
* Wed Oct 09 2013 dmueller@suse.com
  - update to 0.6:
    - Improved Py3k support
    - Improved PyPy support
    - Added IPv6 support
    - Added Thing2Literal for Django/MySQLdb compatibility
    - Removed errorhandler
    - Fixed GC errors
    - Improved test suite
    - Many bug fixes
    - Many performance improvements
* Mon Jul 22 2013 speilicke@suse.com
  - Initial version

Files

/usr/lib/python2.7/site-packages/PyMySQL-0.7.11-py2.7.egg-info
/usr/lib/python2.7/site-packages/PyMySQL-0.7.11-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/PyMySQL-0.7.11-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/PyMySQL-0.7.11-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/PyMySQL-0.7.11-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/pymysql
/usr/lib/python2.7/site-packages/pymysql/__init__.py
/usr/lib/python2.7/site-packages/pymysql/__init__.pyc
/usr/lib/python2.7/site-packages/pymysql/__init__.pyo
/usr/lib/python2.7/site-packages/pymysql/_compat.py
/usr/lib/python2.7/site-packages/pymysql/_compat.pyc
/usr/lib/python2.7/site-packages/pymysql/_compat.pyo
/usr/lib/python2.7/site-packages/pymysql/_socketio.py
/usr/lib/python2.7/site-packages/pymysql/_socketio.pyc
/usr/lib/python2.7/site-packages/pymysql/_socketio.pyo
/usr/lib/python2.7/site-packages/pymysql/charset.py
/usr/lib/python2.7/site-packages/pymysql/charset.pyc
/usr/lib/python2.7/site-packages/pymysql/charset.pyo
/usr/lib/python2.7/site-packages/pymysql/connections.py
/usr/lib/python2.7/site-packages/pymysql/connections.pyc
/usr/lib/python2.7/site-packages/pymysql/connections.pyo
/usr/lib/python2.7/site-packages/pymysql/constants
/usr/lib/python2.7/site-packages/pymysql/constants/CLIENT.py
/usr/lib/python2.7/site-packages/pymysql/constants/CLIENT.pyc
/usr/lib/python2.7/site-packages/pymysql/constants/CLIENT.pyo
/usr/lib/python2.7/site-packages/pymysql/constants/COMMAND.py
/usr/lib/python2.7/site-packages/pymysql/constants/COMMAND.pyc
/usr/lib/python2.7/site-packages/pymysql/constants/COMMAND.pyo
/usr/lib/python2.7/site-packages/pymysql/constants/CR.py
/usr/lib/python2.7/site-packages/pymysql/constants/CR.pyc
/usr/lib/python2.7/site-packages/pymysql/constants/CR.pyo
/usr/lib/python2.7/site-packages/pymysql/constants/ER.py
/usr/lib/python2.7/site-packages/pymysql/constants/ER.pyc
/usr/lib/python2.7/site-packages/pymysql/constants/ER.pyo
/usr/lib/python2.7/site-packages/pymysql/constants/FIELD_TYPE.py
/usr/lib/python2.7/site-packages/pymysql/constants/FIELD_TYPE.pyc
/usr/lib/python2.7/site-packages/pymysql/constants/FIELD_TYPE.pyo
/usr/lib/python2.7/site-packages/pymysql/constants/FLAG.py
/usr/lib/python2.7/site-packages/pymysql/constants/FLAG.pyc
/usr/lib/python2.7/site-packages/pymysql/constants/FLAG.pyo
/usr/lib/python2.7/site-packages/pymysql/constants/SERVER_STATUS.py
/usr/lib/python2.7/site-packages/pymysql/constants/SERVER_STATUS.pyc
/usr/lib/python2.7/site-packages/pymysql/constants/SERVER_STATUS.pyo
/usr/lib/python2.7/site-packages/pymysql/constants/__init__.py
/usr/lib/python2.7/site-packages/pymysql/constants/__init__.pyc
/usr/lib/python2.7/site-packages/pymysql/constants/__init__.pyo
/usr/lib/python2.7/site-packages/pymysql/converters.py
/usr/lib/python2.7/site-packages/pymysql/converters.pyc
/usr/lib/python2.7/site-packages/pymysql/converters.pyo
/usr/lib/python2.7/site-packages/pymysql/cursors.py
/usr/lib/python2.7/site-packages/pymysql/cursors.pyc
/usr/lib/python2.7/site-packages/pymysql/cursors.pyo
/usr/lib/python2.7/site-packages/pymysql/err.py
/usr/lib/python2.7/site-packages/pymysql/err.pyc
/usr/lib/python2.7/site-packages/pymysql/err.pyo
/usr/lib/python2.7/site-packages/pymysql/optionfile.py
/usr/lib/python2.7/site-packages/pymysql/optionfile.pyc
/usr/lib/python2.7/site-packages/pymysql/optionfile.pyo
/usr/lib/python2.7/site-packages/pymysql/tests
/usr/lib/python2.7/site-packages/pymysql/tests/__init__.py
/usr/lib/python2.7/site-packages/pymysql/tests/__init__.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/__init__.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/base.py
/usr/lib/python2.7/site-packages/pymysql/tests/base.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/base.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_DictCursor.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_DictCursor.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_DictCursor.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_SSCursor.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_SSCursor.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_SSCursor.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_basic.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_basic.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_basic.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_connection.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_connection.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_connection.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_converters.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_converters.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_converters.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_cursor.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_cursor.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_cursor.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_err.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_err.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_err.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_issues.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_issues.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_issues.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_load_local.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_load_local.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_load_local.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_nextset.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_nextset.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_nextset.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/test_optionfile.py
/usr/lib/python2.7/site-packages/pymysql/tests/test_optionfile.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/test_optionfile.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/__init__.py
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/__init__.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/__init__.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/__init__.py
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/__init__.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/__init__.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/capabilities.py
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/capabilities.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/capabilities.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/dbapi20.py
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/dbapi20.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/dbapi20.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.py
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_capabilities.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.py
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_dbapi20.pyo
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.py
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.pyc
/usr/lib/python2.7/site-packages/pymysql/tests/thirdparty/test_MySQLdb/test_MySQLdb_nonstandard.pyo
/usr/lib/python2.7/site-packages/pymysql/times.py
/usr/lib/python2.7/site-packages/pymysql/times.pyc
/usr/lib/python2.7/site-packages/pymysql/times.pyo
/usr/lib/python2.7/site-packages/pymysql/util.py
/usr/lib/python2.7/site-packages/pymysql/util.pyc
/usr/lib/python2.7/site-packages/pymysql/util.pyo
/usr/share/doc/packages/python2-PyMySQL
/usr/share/doc/packages/python2-PyMySQL/CHANGELOG
/usr/share/doc/packages/python2-PyMySQL/LICENSE
/usr/share/doc/packages/python2-PyMySQL/README.rst


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 11:46:52 2024