KSockets


NameKSockets JSON
Version 1.0.1 PyPI version JSON
download
home_pageNone
SummaryA very simple python sockets
upload_time2024-10-22 14:09:03
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseNone
keywords python sockets networking communication
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # KSockets
Make sockets super simple!

## KSockets
KSockets is a super simple socket integration on python. It ensures reliable TCP communication without having to do many specific setups.

## Installation
As it had not been published yet to PYPi installation is not possible

## Usage
Client:
```py
from KSockets import SimpleClient
client = SimpleClient(("127.0.0.1",3001))
client.connect()
```
Server: 
```py
from KSockets import SimpleServer
server = SimpleServer(chunks=8196)
server.create_server()
server.listen()
```

## Support
Contact support@kinuseka.us for any queries

## License
/* Copyright (C) Kinuseka, - All Rights Reserved
 * Unauthorized copying of this file, via any medium is strictly prohibited
 * Proprietary and confidential
 * Written by Milbert Jr. Macarambon <mmacarambon@kinuseka.us>, January 2024
 */


            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "KSockets",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": null,
    "keywords": "python, sockets, networking, communication",
    "author": null,
    "author_email": "Milbert Jr Macarambon <support@kinuseka.us>",
    "download_url": "https://files.pythonhosted.org/packages/51/52/92bd62ecad26b7cec047abb4395e08ff1b9d440f17e97b62b624fd0bf9d2/ksockets-1.0.1.tar.gz",
    "platform": null,
    "description": "# KSockets\r\nMake sockets super simple!\r\n\r\n## KSockets\r\nKSockets is a super simple socket integration on python. It ensures reliable TCP communication without having to do many specific setups.\r\n\r\n## Installation\r\nAs it had not been published yet to PYPi installation is not possible\r\n\r\n## Usage\r\nClient:\r\n```py\r\nfrom KSockets import SimpleClient\r\nclient = SimpleClient((\"127.0.0.1\",3001))\r\nclient.connect()\r\n```\r\nServer: \r\n```py\r\nfrom KSockets import SimpleServer\r\nserver = SimpleServer(chunks=8196)\r\nserver.create_server()\r\nserver.listen()\r\n```\r\n\r\n## Support\r\nContact support@kinuseka.us for any queries\r\n\r\n## License\r\n/* Copyright (C) Kinuseka, - All Rights Reserved\r\n * Unauthorized copying of this file, via any medium is strictly prohibited\r\n * Proprietary and confidential\r\n * Written by Milbert Jr. Macarambon <mmacarambon@kinuseka.us>, January 2024\r\n */\r\n\r\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A very simple python sockets",
    "version": "1.0.1",
    "project_urls": {
        "homepage": "https://gitlab.com/mcaffeine/SimpleSocket"
    },
    "split_keywords": [
        "python",
        " sockets",
        " networking",
        " communication"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6f7ff7f3c9f8e6ddf439b46a018f6590170031ea158e83ba7fc1c61ea0ff454d",
                "md5": "75186e9fa1b8fd9c70a0ba992ba9d169",
                "sha256": "6d98914fb1b16f07c90a3a22206923c4a05a02f155f793625b557f271f4c4542"
            },
            "downloads": -1,
            "filename": "KSockets-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "75186e9fa1b8fd9c70a0ba992ba9d169",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 16264,
            "upload_time": "2024-10-22T14:09:00",
            "upload_time_iso_8601": "2024-10-22T14:09:00.475966Z",
            "url": "https://files.pythonhosted.org/packages/6f/7f/f7f3c9f8e6ddf439b46a018f6590170031ea158e83ba7fc1c61ea0ff454d/KSockets-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "515292bd62ecad26b7cec047abb4395e08ff1b9d440f17e97b62b624fd0bf9d2",
                "md5": "8928dff86a609b847b87b59078d453f4",
                "sha256": "6bf0a9a3637bef3ea977805918cdd41d996cc38cd3acae35a808b81283a6980d"
            },
            "downloads": -1,
            "filename": "ksockets-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8928dff86a609b847b87b59078d453f4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 13043,
            "upload_time": "2024-10-22T14:09:03",
            "upload_time_iso_8601": "2024-10-22T14:09:03.011267Z",
            "url": "https://files.pythonhosted.org/packages/51/52/92bd62ecad26b7cec047abb4395e08ff1b9d440f17e97b62b624fd0bf9d2/ksockets-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-22 14:09:03",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "mcaffeine",
    "gitlab_project": "SimpleSocket",
    "lcname": "ksockets"
}
        
Elapsed time: 4.98747s