All Projects → PyMySQL → Tornado Mysql

PyMySQL / Tornado Mysql

Licence: mit
PyMySQL fork for Tornado

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Tornado Mysql

Tormysql
The highest performance asynchronous MySQL driver by PyMySQL
Stars: ✭ 302 (-25.8%)
Mutual labels:  mysql, tornado
App Turbo
A framework based on tornado for easier development, scaling up and maintenance
Stars: ✭ 131 (-67.81%)
Mutual labels:  mysql, tornado
Doudizhu
html5 斗地主游戏
Stars: ✭ 323 (-20.64%)
Mutual labels:  mysql, tornado
Pychat
webchat via WebSockets/WebRTC that allows messaging/video call/screen sharing
Stars: ✭ 152 (-62.65%)
Mutual labels:  mysql, tornado
Autoops
linux资产管理,cmdb,django, webssh,运维管理平台,数据库操作平台 本项目已停止开发!因长时间未对代码进行维护,可能会造成项目在不同环境上无法部署、运行BUG等问题,请知晓!项目仅供参考!
Stars: ✭ 340 (-16.46%)
Mutual labels:  mysql, tornado
Workflow
C++ Parallel Computing and Asynchronous Networking Engine
Stars: ✭ 6,680 (+1541.28%)
Mutual labels:  mysql
Walkable
A Clojure(script) SQL library for building APIs: Datomic® (GraphQL-ish) pull syntax, data driven configuration, dynamic filtering with relations in mind
Stars: ✭ 384 (-5.65%)
Mutual labels:  mysql
Learning Resource
列出一些优秀的程序员学习资源
Stars: ✭ 378 (-7.13%)
Mutual labels:  mysql
Ansible Roles
Ansible Roles
Stars: ✭ 375 (-7.86%)
Mutual labels:  mysql
Lin Cms Dotnetcore
😃A simple and practical CMS implemented by .NET 5 + FreeSql;前后端分离、Docker部署、OAtuh2授权登录、自动化部署DevOps、自动同步至Gitee、代码生成器、仿掘金专栏
Stars: ✭ 401 (-1.47%)
Mutual labels:  mysql
Sysbench
Scriptable database and system performance benchmark
Stars: ✭ 4,268 (+948.65%)
Mutual labels:  mysql
Shell
Infrastructure Management Shell - Linux
Stars: ✭ 381 (-6.39%)
Mutual labels:  mysql
Sqlx
🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, SQLite, and MSSQL.
Stars: ✭ 5,039 (+1138.08%)
Mutual labels:  mysql
Franchise
🍟 a notebook sql client. what you get when have a lot of sequels.
Stars: ✭ 3,823 (+839.31%)
Mutual labels:  mysql
Jet
Type safe SQL builder with code generation and automatic query result data mapping
Stars: ✭ 373 (-8.35%)
Mutual labels:  mysql
Gnomock
Test your code without writing mocks with ephemeral Docker containers 📦 Setup popular services with just a couple lines of code ⏱️ No bash, no yaml, only code 💻
Stars: ✭ 398 (-2.21%)
Mutual labels:  mysql
Aura.sqlquery
Independent query builders for MySQL, PostgreSQL, SQLite, and Microsoft SQL Server.
Stars: ✭ 376 (-7.62%)
Mutual labels:  mysql
Notebook
🍎 笔记本
Stars: ✭ 381 (-6.39%)
Mutual labels:  mysql
Sqlboiler
Generate a Go ORM tailored to your database schema.
Stars: ✭ 4,497 (+1004.91%)
Mutual labels:  mysql
Deno Nessie
A modular Deno library for PostgreSQL, MySQL, MariaDB and SQLite migrations
Stars: ✭ 381 (-6.39%)
Mutual labels:  mysql

============== Tornado-MySQL

.. image:: https://travis-ci.org/PyMySQL/Tornado-MySQL.svg?branch=tornado :target: https://travis-ci.org/PyMySQL/Tornado-MySQL

.. contents::

This package contains a fork of PyMySQL supporting Tornado.

WARNING

This library is experimental and unmaintained. Don't use for production unless you can fix problem yourself.

If you think async is efficient, you're wrong. You shoud try thread pool before this. See also: http://techspot.zzzeek.org/2015/02/15/asynchronous-python-and-databases/

I don't have motivation to maintain this library. I won't add new features. Please don't send feature request. I'm very lazy about fix bugs. Don't expect bugs are fixed when you want.

Instead, you should use your time and energy to port your project to asyncio and newest Python 3. Please don't pay your time for this project.

You can use aio-libs/aiomysql or run_in_executor() in asyncio.

Example

example


::

    #!/usr/bin/env python
    from __future__ import print_function

    from tornado import ioloop, gen
    import tornado_mysql

    @gen.coroutine
    def main():
        conn = yield tornado_mysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='mysql')
        cur = conn.cursor()
        yield cur.execute("SELECT Host,User FROM user")
        print(cur.description)
        for row in cur:
           print(row)
        cur.close()
        conn.close()

    ioloop.IOLoop.current().run_sync(main)

example_pool

::

#!/usr/bin/env python
from __future__ import print_function

from tornado import ioloop, gen
from tornado_mysql import pools


pools.DEBUG = True


POOL = pools.Pool(
    dict(host='127.0.0.1', port=3306, user='root', passwd='', db='mysql'),
    max_idle_connections=1,
    max_recycle_sec=3)


@gen.coroutine
def worker(n):
    for i in range(10):
        t = 1
        print(n, "sleeping", t, "seconds")
        cur = yield POOL.execute("SELECT SLEEP(%s)", (t,))
        print(n, cur.fetchall())


@gen.coroutine
def main():
    workers = [worker(i) for i in range(10)]
    yield workers


ioloop.IOLoop.current().run_sync(main)
print(POOL._opened_conns)

Requirements

  • Python -- one of the following:

    • CPython_ 2.7 or >= 3.3
    • PyPy_ >= 2.3.1
  • MySQL Server -- one of the following:

    • MySQL_ >= 4.1
    • MariaDB_ >= 5.1

.. _CPython: http://www.python.org/ .. _PyPy: http://pypy.org/ .. _MySQL: http://www.mysql.com/ .. _MariaDB: https://mariadb.org/

Installation

The last stable release is available on PyPI and can be installed with pip::

$ pip install Tornado-MySQL

Test Suite

If you would like to run the test suite, first copy the file .travis.databases.json to tornado_mysql/tests/databases.json and edit the new file to match your MySQL configuration::

$ cp .travis.databases.json tornado_mysql/tests/databases.json
$ $EDITOR tornado_mysql/tests/databases.json

To run all the tests, execute the script runtests.py::

$ python runtests.py

A tox.ini file is also provided for conveniently running tests on multiple Python versions::

$ tox

Resources

DB-API 2.0: http://www.python.org/dev/peps/pep-0249

MySQL Reference Manuals: http://dev.mysql.com/doc/

MySQL client/server protocol: http://dev.mysql.com/doc/internals/en/client-server-protocol.html

PyMySQL mailing list: https://groups.google.com/forum/#!forum/pymysql-users

License

PyMySQL is released under the MIT License. See LICENSE for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].