clipShare


NameclipShare JSON
Version 0.1.2 PyPI version JSON
download
home_pagehttps://github.com/avinashkarhana/clipShare
SummarySync clipboard between devices
upload_time2023-12-06 08:24:49
maintainer
docs_urlNone
authorAvinash Karhana
requires_python>=3.6
licenseLGPLv2.1
keywords clipboardsync clipboard sync share encrypted secure clipshare
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # clipShare
[![Publish Python Package to PyPi](https://github.com/avinashkarhana/clipboardSync/actions/workflows/python-publish.yml/badge.svg)](https://github.com/avinashkarhana/clipboardSync/actions/workflows/python-publish.yml)

A single TCP server/client bundle that allows you to sync your clipboard between systems.

## Features
1. Sync clipboard between systems.
2. Has a Web UI. `Server IP:Port` or `ngrok-tunnel-host`
    - To view clipboard on mobile devices.
    - To sync clipboard if not using the Python client.
2. Advertise the server on the local network.
3. Authentication using passcode. (Passcode should be shared via some external safe channel)
5. Scan for servers on the local network.
6. The same script can be used as a server or client.
7. Encrypted communication for clipboard sharing with AES Encryption (Key should be shared via some external safe channel)

## Installation

    pip install clipShare

## Usage

    Usage: 
        clipShare [... OPTIONS]
        

    Options:
        -h, --help                      Show this help message and exit
        -s, --server [SERVER_PORT_NUMER], --server [SERVER_PORT_NUMER]
                                        Run as server on the specified port.
        -c, --client SERVER_IP:SERVER_PORT_NUMBER, --client SERVER_IP:SERVER_PORT_NUMBER
                                        Run as a client, that connects to specified server IP and port.
        -t, --serve-on-ngrok-tunnel     Enable Serve on ngrok tunnel. This option requires ngrok authtoken to be present in {current_dir}/ngrok-auth-token.txt
        -a, --advertise                 Enable Advertising server on the local network.
        -n, --name                      Name of the server to be advertised.
        -p, --passcode                  Passcode for authentication.
        -ep, --encryption-password      Encryption password for data transfer.
        -toh, --tcp-over-https          Enable TCP over HTTPS for ngrok tunnel.
        -d, --debug                     Enable debug mode.

    Examples:
        clipShare -s 5000
        clipShare -s 5000 -d
        clipShare -s 5000 -a
        clipShare -s 5000 -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd
        clipShare -s 5000 -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd -t -a -d
        clipShare -c 192.168.0.1:8080
        clipShare -c -d
        clipShare -c -d -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd
        clipShare -c "abc.com" -toh -d -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd
        clipShare -c "abc.com:120" -d -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd
        clipShare -c -d -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd


## Do you Want to help me to work more on Open-Source Projects like this?
<a href="https://www.buymeacoffee.com/avinashkarhana" target="_blank"><img src="https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png" alt="Buy Me A Coffee" style="height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;" ></a> so that I can get one more sleepless night to work on this kind of stuff.

Or use other sponsoring methods if you like.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/avinashkarhana/clipShare",
    "name": "clipShare",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "clipboardSync clipboard sync share encrypted secure clipShare",
    "author": "Avinash Karhana",
    "author_email": "avinashkarhana1@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/af/41/e8bb12a4462a19883c5ee8ab4183582479cf28c6bdff57b4b32558007efa/clipShare-0.1.2.tar.gz",
    "platform": null,
    "description": "# clipShare\n[![Publish Python Package to PyPi](https://github.com/avinashkarhana/clipboardSync/actions/workflows/python-publish.yml/badge.svg)](https://github.com/avinashkarhana/clipboardSync/actions/workflows/python-publish.yml)\n\nA single TCP server/client bundle that allows you to sync your clipboard between systems.\n\n## Features\n1. Sync clipboard between systems.\n2. Has a Web UI. `Server IP:Port` or `ngrok-tunnel-host`\n    - To view clipboard on mobile devices.\n    - To sync clipboard if not using the Python client.\n2. Advertise the server on the local network.\n3. Authentication using passcode. (Passcode should be shared via some external safe channel)\n5. Scan for servers on the local network.\n6. The same script can be used as a server or client.\n7. Encrypted communication for clipboard sharing with AES Encryption (Key should be shared via some external safe channel)\n\n## Installation\n\n    pip install clipShare\n\n## Usage\n\n    Usage: \n        clipShare [... OPTIONS]\n        \n\n    Options:\n        -h, --help                      Show this help message and exit\n        -s, --server [SERVER_PORT_NUMER], --server [SERVER_PORT_NUMER]\n                                        Run as server on the specified port.\n        -c, --client SERVER_IP:SERVER_PORT_NUMBER, --client SERVER_IP:SERVER_PORT_NUMBER\n                                        Run as a client, that connects to specified server IP and port.\n        -t, --serve-on-ngrok-tunnel     Enable Serve on ngrok tunnel. This option requires ngrok authtoken to be present in {current_dir}/ngrok-auth-token.txt\n        -a, --advertise                 Enable Advertising server on the local network.\n        -n, --name                      Name of the server to be advertised.\n        -p, --passcode                  Passcode for authentication.\n        -ep, --encryption-password      Encryption password for data transfer.\n        -toh, --tcp-over-https          Enable TCP over HTTPS for ngrok tunnel.\n        -d, --debug                     Enable debug mode.\n\n    Examples:\n        clipShare -s 5000\n        clipShare -s 5000 -d\n        clipShare -s 5000 -a\n        clipShare -s 5000 -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd\n        clipShare -s 5000 -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd -t -a -d\n        clipShare -c 192.168.0.1:8080\n        clipShare -c -d\n        clipShare -c -d -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd\n        clipShare -c \"abc.com\" -toh -d -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd\n        clipShare -c \"abc.com:120\" -d -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd\n        clipShare -c -d -p RandomPasscode -ep 5up3rS3cu3_3ncrY9t1on_P45sw0rd\n\n\n## Do you Want to help me to work more on Open-Source Projects like this?\n<a href=\"https://www.buymeacoffee.com/avinashkarhana\" target=\"_blank\"><img src=\"https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png\" alt=\"Buy Me A Coffee\" style=\"height: 41px !important;width: 174px !important;box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;-webkit-box-shadow: 0px 3px 2px 0px rgba(190, 190, 190, 0.5) !important;\" ></a> so that I can get one more sleepless night to work on this kind of stuff.\n\nOr use other sponsoring methods if you like.\n",
    "bugtrack_url": null,
    "license": "LGPLv2.1",
    "summary": "Sync clipboard between devices",
    "version": "0.1.2",
    "project_urls": {
        "Homepage": "https://github.com/avinashkarhana/clipShare"
    },
    "split_keywords": [
        "clipboardsync",
        "clipboard",
        "sync",
        "share",
        "encrypted",
        "secure",
        "clipshare"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "982a1b013b2298f86b1aa7704dea66f381b9a056457b3353edeca6cd006029de",
                "md5": "2c08c8a2f2e8351daafb989d0a0d3ce9",
                "sha256": "750e6952e6987394eb449c771268b5e0afd4d758b9861f12070d98a8500db48d"
            },
            "downloads": -1,
            "filename": "clipShare-0.1.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "2c08c8a2f2e8351daafb989d0a0d3ce9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 145876,
            "upload_time": "2023-12-06T08:24:48",
            "upload_time_iso_8601": "2023-12-06T08:24:48.255931Z",
            "url": "https://files.pythonhosted.org/packages/98/2a/1b013b2298f86b1aa7704dea66f381b9a056457b3353edeca6cd006029de/clipShare-0.1.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af41e8bb12a4462a19883c5ee8ab4183582479cf28c6bdff57b4b32558007efa",
                "md5": "2eda1d6955e190f95be23f032895c780",
                "sha256": "954d193da38cd22da597c584b123871c63f70192ebb4a27b846530c0d67b4bf6"
            },
            "downloads": -1,
            "filename": "clipShare-0.1.2.tar.gz",
            "has_sig": false,
            "md5_digest": "2eda1d6955e190f95be23f032895c780",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 147928,
            "upload_time": "2023-12-06T08:24:49",
            "upload_time_iso_8601": "2023-12-06T08:24:49.533835Z",
            "url": "https://files.pythonhosted.org/packages/af/41/e8bb12a4462a19883c5ee8ab4183582479cf28c6bdff57b4b32558007efa/clipShare-0.1.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-06 08:24:49",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "avinashkarhana",
    "github_project": "clipShare",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "clipshare"
}
        
Elapsed time: 0.18675s