pooledMySQL


NamepooledMySQL JSON
Version 3.0.0 PyPI version JSON
download
home_pageNone
SummaryA simple way to have MySQL connection pool which auto-scales infinitely as required. This would help remove problems caused by multithreading, also removed user hassle of manually creating and deleting connections manually.
upload_time2024-04-23 17:31:14
maintainerNone
docs_urlNone
authorNone
requires_python>=3.6
licenseNone
keywords mysql pool threadedmysql pooledmysql multithreaded thread database sql
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pooledMySQL v3.0.0

```pip install pooledMySQL --upgrade```

###### <br>A well maintained program to have MySQL connection pool which auto-scales infinitely as required. This would help remove problems caused by multithreading, also removed user hassle of manually creating and deleting connections manually.


<br>To install: 
```
pip install pooledMySQL --upgrade
pip3 install pooledMySQL --upgrade
python -m pip install pooledMySQL --upgrade
python3 -m pip install pooledMySQL --upgrade
```


#### <br><br>Using this program is as simple as:
```
from pooledMySQL import Manager as MySQLManager

executorMySQL = MySQLManager("SomeUsername", "SomePassword", "DatabaseName")

listOfDict = executorMySQL.execute("SELECT * from someTable")

for individualDict in listOfDict:
    print(individualDict)
```


### <br>Future implementations:
* Classes for individual tables to make reading and writing of rows way easier for the user
* Table and database creation syntaxes

###### <br>This project is always open to suggestions and feature requests.

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pooledMySQL",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": null,
    "keywords": "mysql, pool, threadedmysql, pooledmysql, multithreaded, thread, database, sql",
    "author": null,
    "author_email": "Bhindi <bhaskarpanja93@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/5a/91/2ed2dbcf1a91e65aabe174b867575fc3fe4ada534f968d52016aae2efc25/pooledmysql-3.0.0.tar.gz",
    "platform": null,
    "description": "# pooledMySQL v3.0.0\n\n```pip install pooledMySQL --upgrade```\n\n###### <br>A well maintained program to have MySQL connection pool which auto-scales infinitely as required. This would help remove problems caused by multithreading, also removed user hassle of manually creating and deleting connections manually.\n\n\n<br>To install: \n```\npip install pooledMySQL --upgrade\npip3 install pooledMySQL --upgrade\npython -m pip install pooledMySQL --upgrade\npython3 -m pip install pooledMySQL --upgrade\n```\n\n\n#### <br><br>Using this program is as simple as:\n```\nfrom pooledMySQL import Manager as MySQLManager\n\nexecutorMySQL = MySQLManager(\"SomeUsername\", \"SomePassword\", \"DatabaseName\")\n\nlistOfDict = executorMySQL.execute(\"SELECT * from someTable\")\n\nfor individualDict in listOfDict:\n    print(individualDict)\n```\n\n\n### <br>Future implementations:\n* Classes for individual tables to make reading and writing of rows way easier for the user\n* Table and database creation syntaxes\n\n###### <br>This project is always open to suggestions and feature requests.\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A simple way to have MySQL connection pool which auto-scales infinitely as required. This would help remove problems caused by multithreading, also removed user hassle of manually creating and deleting connections manually.",
    "version": "3.0.0",
    "project_urls": {
        "Homepage": "https://github.com/BhaskarPanja93/pooledMySQL"
    },
    "split_keywords": [
        "mysql",
        " pool",
        " threadedmysql",
        " pooledmysql",
        " multithreaded",
        " thread",
        " database",
        " sql"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7cbe6746aa708c78952cb9ef1158fcf411410450f1b2ec590ad2675a08247b30",
                "md5": "02952d4f444cd3c45370ea375f38fb8e",
                "sha256": "54d507c6bfe82d2a5b22d2c82b41e3ee17c171ab7ce95388a57b3d6fd77a1e15"
            },
            "downloads": -1,
            "filename": "pooledMySQL-3.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "02952d4f444cd3c45370ea375f38fb8e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 4953,
            "upload_time": "2024-04-23T17:31:12",
            "upload_time_iso_8601": "2024-04-23T17:31:12.477128Z",
            "url": "https://files.pythonhosted.org/packages/7c/be/6746aa708c78952cb9ef1158fcf411410450f1b2ec590ad2675a08247b30/pooledMySQL-3.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a912ed2dbcf1a91e65aabe174b867575fc3fe4ada534f968d52016aae2efc25",
                "md5": "b2112c5138d4c6496cc2c9ecdf74f596",
                "sha256": "75c6078f004fe48b72da303ad4e3119411fa249084f6f08b3e7ac477392d9419"
            },
            "downloads": -1,
            "filename": "pooledmysql-3.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "b2112c5138d4c6496cc2c9ecdf74f596",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 4799,
            "upload_time": "2024-04-23T17:31:14",
            "upload_time_iso_8601": "2024-04-23T17:31:14.540759Z",
            "url": "https://files.pythonhosted.org/packages/5a/91/2ed2dbcf1a91e65aabe174b867575fc3fe4ada534f968d52016aae2efc25/pooledmysql-3.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-23 17:31:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "BhaskarPanja93",
    "github_project": "pooledMySQL",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pooledmysql"
}
        
Elapsed time: 0.26095s