pooledMySQL


NamepooledMySQL JSON
Version 4.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-12-10 13:43:25
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 v4.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 where someColumn = ?", ["someValue"])

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/2b/a9/c675ab42a5d0f903a16c359c42d16b318265a62c978f5ec82ee9740d0f22/pooledmysql-4.0.0.tar.gz",
    "platform": null,
    "description": "# pooledMySQL v4.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 where someColumn = ?\", [\"someValue\"])\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": "4.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": "88486f5d72262b4eb2e409a95e77f14bb68ae7b5353240f9438b99b121852d31",
                "md5": "a95e216e91afa8a349ab4f6c897ee865",
                "sha256": "7651176ffb74fd83bad2a3ce3c17c6aae84a07b36989e864f7a16d01089f4259"
            },
            "downloads": -1,
            "filename": "pooledMySQL-4.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a95e216e91afa8a349ab4f6c897ee865",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 4710,
            "upload_time": "2024-12-10T13:43:23",
            "upload_time_iso_8601": "2024-12-10T13:43:23.679923Z",
            "url": "https://files.pythonhosted.org/packages/88/48/6f5d72262b4eb2e409a95e77f14bb68ae7b5353240f9438b99b121852d31/pooledMySQL-4.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ba9c675ab42a5d0f903a16c359c42d16b318265a62c978f5ec82ee9740d0f22",
                "md5": "5e079170bdcec1fc7a5f97579169b9c3",
                "sha256": "e71e84938231ba2f771c910ba5e8fd116ea9dbea1373202ad3d84024ce015a36"
            },
            "downloads": -1,
            "filename": "pooledmysql-4.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "5e079170bdcec1fc7a5f97579169b9c3",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 4584,
            "upload_time": "2024-12-10T13:43:25",
            "upload_time_iso_8601": "2024-12-10T13:43:25.745980Z",
            "url": "https://files.pythonhosted.org/packages/2b/a9/c675ab42a5d0f903a16c359c42d16b318265a62c978f5ec82ee9740d0f22/pooledmysql-4.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-12-10 13:43:25",
    "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.43748s