Skip to main content

A python implementation of the mysql server protocol

Project description

MySQL-Mimic

Tests

Pure-python implementation of the MySQL server wire protocol.

This can be used to create applications that act as a MySQL server.

MySQL-Mimic doesn't parse SQL - it only handles the wire protocol. For parsing, check out sqlglot.

Installation

pip install mysql-mimic

Usage

This library is meant to be used as the basis for a proxy SQL service. A minimal use case might look like this:

import asyncio

from mysql_mimic import MysqlServer, Session


class MySession(Session):
    async def init(self, connection):
        print(f"new session: {connection}")

    async def query(self, sql):
        print(f"received query: {sql}")
        return [("a", 1), ("b", 2)], ["col1", "col2"]

    async def close(self):
        print("session closed")


if __name__ == "__main__":
    server = MysqlServer(session_factory=MySession)
    asyncio.run(server.serve_forever())

See examples for more examples.

Todo

  • Add support for (at least) the mysql_native_password authentication method with another callback.
  • Eventually Compression support
  • Eventually SSL support

Development

You can install dependencies with make deps. You can format your code with make format. You can lint with make lint. You can run tests with make test. This will build a coverage report in ./htmlcov/index.html. You can build a pip package with make build.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mysql-mimic-0.1.0.tar.gz (15.0 kB view hashes)

Uploaded Source

Built Distribution

mysql_mimic-0.1.0-py3-none-any.whl (17.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page