pooledMySQL


NamepooledMySQL JSON
Version 3.0.6 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-11-02 22:57:55
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.6

```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/9b/a5/a3bb51abf72d839f9eb1f468e78db75140786a3dbe7a4749b661041f9364/pooledmysql-3.0.6.tar.gz",
    "platform": null,
    "description": "# pooledMySQL v3.0.6\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.6",
    "project_urls": {
        "Homepage": "https://github.com/BhaskarPanja93/pooledMySQL"
    },
    "split_keywords": [
        "mysql",
        " pool",
        " threadedmysql",
        " pooledmysql",
        " multithreaded",
        " thread",
        " database",
        " sql"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdf2e371d49884a37046e3c6a7205d52bb0ab3be36d38ad941c4bffe56c49fa4",
                "md5": "c483f2ca5eec95c357f67a2047e0d473",
                "sha256": "0e6554c67fd48155b7f47b0cfe946bc838e59ce2ebce134c89d7c5ed3eab204d"
            },
            "downloads": -1,
            "filename": "pooledMySQL-3.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "c483f2ca5eec95c357f67a2047e0d473",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 4928,
            "upload_time": "2024-11-02T22:57:54",
            "upload_time_iso_8601": "2024-11-02T22:57:54.995023Z",
            "url": "https://files.pythonhosted.org/packages/fd/f2/e371d49884a37046e3c6a7205d52bb0ab3be36d38ad941c4bffe56c49fa4/pooledMySQL-3.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ba5a3bb51abf72d839f9eb1f468e78db75140786a3dbe7a4749b661041f9364",
                "md5": "ea2a9c5938eaaaf6e43e0c14e0b196ce",
                "sha256": "06aa3d15f1af42829d4ea4dede8f735c5875b4c00bb1cbe25370d99b6c2a41b5"
            },
            "downloads": -1,
            "filename": "pooledmysql-3.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "ea2a9c5938eaaaf6e43e0c14e0b196ce",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 4771,
            "upload_time": "2024-11-02T22:57:55",
            "upload_time_iso_8601": "2024-11-02T22:57:55.902704Z",
            "url": "https://files.pythonhosted.org/packages/9b/a5/a3bb51abf72d839f9eb1f468e78db75140786a3dbe7a4749b661041f9364/pooledmysql-3.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-02 22:57:55",
    "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.44883s