bedrockpy


Namebedrockpy JSON
Version 0.1.1.post1 PyPI version JSON
download
home_page
SummaryMinecraft Bedrock Edition Websocket Server
upload_time2022-09-19 17:17:17
maintainer
docs_urlNone
author
requires_python>=3.8
licenseMIT License Copyright (c) 2022 phoenixR Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords bot minecraft websocket
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            *********
bedrockpy
*********

bedrockpy is a library that handles a websocket
connection between your Minecraft world and your
server. This library allows you to create custom
commands and react to several events.


=========
Important
=========

This library is not meant for creating add-ons,
plugins or similar things. If you are however
looking for creating such creations, you might
take a look at `Microsofts official Minecraft
Bedrock documentation
<https://docs.microsoft.com/en-us/minecraft/creator/>`_

This library is meant to combine python knowledge
with Minecraft or execute Python code on systems
that do not provide full add-on support (such as
Bedrock Edition on Consoles).


====================
A very small example
====================

This demonstrates the basic structure of a bot
Don't worry, there is way more to create!

.. code-block:: python3
   
   import bedrock
   
   app = bedrock.Server(
       "localhost", 6464,
       command_prefix = "$"
   )
   
   @app.event
   async def on_ready(ctx):
       print("Ready!")
   
   @app.command()
   async def hello(ctx):
       """say hello"""
       ctx.tell("Hello, World!")
   
   app.run()


`Documentation <https://phoenixr-codes.github.io/bedrockpy/>`_


NOT AN OFFICIAL MINECRAFT PRODUCT.
NOT APPROVED BY OR ASSOCIATED WITH MOJANG.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "bedrockpy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "bot,minecraft,websocket",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/c7/c2/43de72b4c140f69e046c9551b509b012e974dda002298a3ad40d47ff4ee1/bedrockpy-0.1.1.post1.tar.gz",
    "platform": null,
    "description": "*********\nbedrockpy\n*********\n\nbedrockpy is a library that handles a websocket\nconnection between your Minecraft world and your\nserver. This library allows you to create custom\ncommands and react to several events.\n\n\n=========\nImportant\n=========\n\nThis library is not meant for creating add-ons,\nplugins or similar things. If you are however\nlooking for creating such creations, you might\ntake a look at `Microsofts official Minecraft\nBedrock documentation\n<https://docs.microsoft.com/en-us/minecraft/creator/>`_\n\nThis library is meant to combine python knowledge\nwith Minecraft or execute Python code on systems\nthat do not provide full add-on support (such as\nBedrock Edition on Consoles).\n\n\n====================\nA very small example\n====================\n\nThis demonstrates the basic structure of a bot\nDon't worry, there is way more to create!\n\n.. code-block:: python3\n   \n   import bedrock\n   \n   app = bedrock.Server(\n       \"localhost\", 6464,\n       command_prefix = \"$\"\n   )\n   \n   @app.event\n   async def on_ready(ctx):\n       print(\"Ready!\")\n   \n   @app.command()\n   async def hello(ctx):\n       \"\"\"say hello\"\"\"\n       ctx.tell(\"Hello, World!\")\n   \n   app.run()\n\n\n`Documentation <https://phoenixr-codes.github.io/bedrockpy/>`_\n\n\nNOT AN OFFICIAL MINECRAFT PRODUCT.\nNOT APPROVED BY OR ASSOCIATED WITH MOJANG.\n",
    "bugtrack_url": null,
    "license": "MIT License Copyright (c) 2022 phoenixR Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "Minecraft Bedrock Edition Websocket Server",
    "version": "0.1.1.post1",
    "project_urls": {
        "Documentation": "https://phoenixr-codes.github.io/bedrockpy/",
        "Source Code": "https://github.com/phoenixr-codes/bedrockpy/"
    },
    "split_keywords": [
        "bot",
        "minecraft",
        "websocket"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab78f7634815560d4d47cc458e5050279428f17d6e1bd0e4c51e6d6bd7d4c283",
                "md5": "1fb228322a5886a8f1de0f7445cdb5a9",
                "sha256": "ef56c0d714484f4e3d2f371471c2d55f789437915011fd571001a71dac700ae4"
            },
            "downloads": -1,
            "filename": "bedrockpy-0.1.1.post1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "1fb228322a5886a8f1de0f7445cdb5a9",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 14941,
            "upload_time": "2022-09-19T17:17:12",
            "upload_time_iso_8601": "2022-09-19T17:17:12.635396Z",
            "url": "https://files.pythonhosted.org/packages/ab/78/f7634815560d4d47cc458e5050279428f17d6e1bd0e4c51e6d6bd7d4c283/bedrockpy-0.1.1.post1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7c243de72b4c140f69e046c9551b509b012e974dda002298a3ad40d47ff4ee1",
                "md5": "9c83854e6ce63f0ea7212f0d1c5ccdb5",
                "sha256": "6a006144c2156ec97fa895c7eb830219ddbd50d54eb616c208367d5901cb926f"
            },
            "downloads": -1,
            "filename": "bedrockpy-0.1.1.post1.tar.gz",
            "has_sig": false,
            "md5_digest": "9c83854e6ce63f0ea7212f0d1c5ccdb5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 13881,
            "upload_time": "2022-09-19T17:17:17",
            "upload_time_iso_8601": "2022-09-19T17:17:17.349730Z",
            "url": "https://files.pythonhosted.org/packages/c7/c2/43de72b4c140f69e046c9551b509b012e974dda002298a3ad40d47ff4ee1/bedrockpy-0.1.1.post1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-09-19 17:17:17",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "phoenixr-codes",
    "github_project": "bedrockpy",
    "github_not_found": true,
    "lcname": "bedrockpy"
}
        
Elapsed time: 0.07805s