motu-server


Namemotu-server JSON
Version 0.1.15 PyPI version JSON
download
home_pageNone
SummaryA tornado web server emulating a MOTU AVB interface's datastore API. Enables development of tools to read and manipulate the datastore without requiring an active interface.
upload_time2024-09-16 19:46:28
maintainerNone
docs_urlNone
authorNone
requires_python>=3.11
licenseMIT License Copyright (c) 2024 Chris Johnston 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 motu avb development
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # MOTU AVB Development Server

A tornado web server emulating a MOTU AVB interface's datastore API. Enables development of tools to read and manipulate the datastore without requiring an active interface.

For Datastore API, see [MOTU AVB Datastore API Docs](https://cdn-data.motu.com/downloads/audio/AVB/docs/MOTU%20AVB%20Web%20API.pdf)

For a websocket bridge, see [MOTU AVB Websocket Bridge](https://github.com/ChristopherJohnston/motu_websocket_bridge)

For HTTP request examples, see [requests.http](https://github.com/ChristopherJohnston/motu_server/requests.http)

# Usage

```
import asyncio
from motu_server import server

def main():
    asyncio.run(server.main())

if __name__ == '__main__':
    main()
```

Server is available at http://localhost:8888/datastore

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "motu-server",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.11",
    "maintainer_email": null,
    "keywords": "motu, avb, development",
    "author": null,
    "author_email": "Christopher Johnston <christopher_johnston@me.com>",
    "download_url": null,
    "platform": null,
    "description": "# MOTU AVB Development Server\n\nA tornado web server emulating a MOTU AVB interface's datastore API. Enables development of tools to read and manipulate the datastore without requiring an active interface.\n\nFor Datastore API, see [MOTU AVB Datastore API Docs](https://cdn-data.motu.com/downloads/audio/AVB/docs/MOTU%20AVB%20Web%20API.pdf)\n\nFor a websocket bridge, see [MOTU AVB Websocket Bridge](https://github.com/ChristopherJohnston/motu_websocket_bridge)\n\nFor HTTP request examples, see [requests.http](https://github.com/ChristopherJohnston/motu_server/requests.http)\n\n# Usage\n\n```\nimport asyncio\nfrom motu_server import server\n\ndef main():\n    asyncio.run(server.main())\n\nif __name__ == '__main__':\n    main()\n```\n\nServer is available at http://localhost:8888/datastore\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2024 Chris Johnston  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": "A tornado web server emulating a MOTU AVB interface's datastore API. Enables development of tools to read and manipulate the datastore without requiring an active interface.",
    "version": "0.1.15",
    "project_urls": {
        "Homepage": "https://github.com/ChristopherJohnston/motu_server"
    },
    "split_keywords": [
        "motu",
        " avb",
        " development"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1fdde5c8081e47317229d4be75c07d667f43391848a617a198493f2de1617bb8",
                "md5": "d84df74cc2b1dddc6e24381bdd91baf1",
                "sha256": "c5166d286e21e130921da4154a0df428cb8fdc4171b7f637643e5a03b8a5e0c5"
            },
            "downloads": -1,
            "filename": "motu_server-0.1.15-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d84df74cc2b1dddc6e24381bdd91baf1",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11",
            "size": 9136,
            "upload_time": "2024-09-16T19:46:28",
            "upload_time_iso_8601": "2024-09-16T19:46:28.111515Z",
            "url": "https://files.pythonhosted.org/packages/1f/dd/e5c8081e47317229d4be75c07d667f43391848a617a198493f2de1617bb8/motu_server-0.1.15-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-09-16 19:46:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ChristopherJohnston",
    "github_project": "motu_server",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "motu-server"
}
        
Elapsed time: 0.50994s