SecureMessaging


NameSecureMessaging JSON
Version 1.0.7 PyPI version JSON
download
home_pagehttps://github.com/ethicalhacker7192/SecureMessaging
SummarySecure Messaging
upload_time2023-07-04 01:28:15
maintainer
docs_urlNone
authorGuinea_Pig_Lord
requires_python
licenseMIT
keywords secure messaging
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # SecureMessaging
A module for messaging securely.

Pretty much the same thing as GuineaSend but more lightweight.

More info [here](https://github.com/ethicalhacker7192/OTP-MAC-online)

## INSTALLATION

for pip and pip3:

pip:

    pip install SecureMessaging

pip3:

    pip3 install SecureMessaging

for windows:

    py -m pip install SecureMessaging

for linux (without pip command line tool):

    python3 -m pip install SecureMessaging

## Usage

You may be wondering how to use this module, there are 4 functions that are mainly used:

sending:
    send_message('[your reciever's IP]', "[your message]")

receiving:

    receive_message()

transceiving:

    transceive_message()

fetching the IP of client:

    get_ip_address()
    # this prints your IP, however, here is one that you can use as a varable later for some reason:
    x = get_ip_address()
    # Then in the future
    print(x)


these are the main functions, also I will add a example usage of the entire module here in different ways:

sending:

    import SecureMessaging as sm

    x = sm.get_ip_address()
    print(x)
    sm.send_message('127.0.0.1', x) #you can do anything you want to this example

the reciever side:

    import SecureMessaging as sm

    sm.receive_message()
    
you can do a lot with these functions, you just need to know how to do them.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ethicalhacker7192/SecureMessaging",
    "name": "SecureMessaging",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Secure Messaging",
    "author": "Guinea_Pig_Lord",
    "author_email": "bear@lowrey.us",
    "download_url": "",
    "platform": "any",
    "description": "# SecureMessaging\nA module for messaging securely.\n\nPretty much the same thing as GuineaSend but more lightweight.\n\nMore info [here](https://github.com/ethicalhacker7192/OTP-MAC-online)\n\n## INSTALLATION\n\nfor pip and pip3:\n\npip:\n\n    pip install SecureMessaging\n\npip3:\n\n    pip3 install SecureMessaging\n\nfor windows:\n\n    py -m pip install SecureMessaging\n\nfor linux (without pip command line tool):\n\n    python3 -m pip install SecureMessaging\n\n## Usage\n\nYou may be wondering how to use this module, there are 4 functions that are mainly used:\n\nsending:\n    send_message('[your reciever's IP]', \"[your message]\")\n\nreceiving:\n\n    receive_message()\n\ntransceiving:\n\n    transceive_message()\n\nfetching the IP of client:\n\n    get_ip_address()\n    # this prints your IP, however, here is one that you can use as a varable later for some reason:\n    x = get_ip_address()\n    # Then in the future\n    print(x)\n\n\nthese are the main functions, also I will add a example usage of the entire module here in different ways:\n\nsending:\n\n    import SecureMessaging as sm\n\n    x = sm.get_ip_address()\n    print(x)\n    sm.send_message('127.0.0.1', x) #you can do anything you want to this example\n\nthe reciever side:\n\n    import SecureMessaging as sm\n\n    sm.receive_message()\n    \nyou can do a lot with these functions, you just need to know how to do them.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Secure Messaging",
    "version": "1.0.7",
    "project_urls": {
        "Homepage": "https://github.com/ethicalhacker7192/SecureMessaging"
    },
    "split_keywords": [
        "secure",
        "messaging"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "41d38e2c7602295edd2c54db9335e63a9222a2268668acdf891f89271a701d38",
                "md5": "6b2f4e6edb4f9cec17f9302a8cb85d56",
                "sha256": "d94edeb1f4681e3b9459fa1a72b4e34aa15da0ea1e679166e4757ed13a2e26ca"
            },
            "downloads": -1,
            "filename": "SecureMessaging-1.0.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6b2f4e6edb4f9cec17f9302a8cb85d56",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 5687,
            "upload_time": "2023-07-04T01:28:15",
            "upload_time_iso_8601": "2023-07-04T01:28:15.164402Z",
            "url": "https://files.pythonhosted.org/packages/41/d3/8e2c7602295edd2c54db9335e63a9222a2268668acdf891f89271a701d38/SecureMessaging-1.0.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-07-04 01:28:15",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ethicalhacker7192",
    "github_project": "SecureMessaging",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "securemessaging"
}
        
Elapsed time: 0.08592s