retico


Nameretico JSON
Version 0.1.8 PyPI version JSON
download
home_pagehttps://github.com/retico-team/retico
SummaryRetico is an open source framework for building state-of-the-art incremental processing systems.
upload_time2023-04-15 16:44:25
maintainer
docs_urlNone
authorThilo Michael
requires_python>=3.6, <4
license
keywords retico framework incremental dialogue dialog asr speech
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # retico

Retico is an open-source framework for building state-of-the-art incremental processing
systems. This python package contains the functionality of the major supported retico
modules and makes them easily accessible.

## Example

```python
from retico import *
from retico.modules import *


def callback(update_msg):
    for x, ut in update_msg:
        print(f"{ut}: {x.text} ({x.stability}) - {x.final}")


m1 = MicrophoneModule()
m2 = Wav2VecModule()
m3 = TextDispatcherModule()
m4 = GoogleTTSModule("en-US", "en-US-Wavenet-A")
m5 = SpeakerModule()
m6 = CallbackModule(callback)

m1.subscribe(m2)
m2.subscribe(m3)
m3.subscribe(m4)
m4.subscribe(m5)
m2.subscribe(m6)

run(m1)

input()

stop(m1)
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/retico-team/retico",
    "name": "retico",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6, <4",
    "maintainer_email": "",
    "keywords": "retico,framework,incremental,dialogue,dialog,asr,speech",
    "author": "Thilo Michael",
    "author_email": "uhlomuhlo@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/8b/dc/4de3d7ba47f4a69c9d6bc45c64efd3e428138e3c9d43c4f77be4f36854ba/retico-0.1.8.tar.gz",
    "platform": null,
    "description": "# retico\n\nRetico is an open-source framework for building state-of-the-art incremental processing\nsystems. This python package contains the functionality of the major supported retico\nmodules and makes them easily accessible.\n\n## Example\n\n```python\nfrom retico import *\nfrom retico.modules import *\n\n\ndef callback(update_msg):\n    for x, ut in update_msg:\n        print(f\"{ut}: {x.text} ({x.stability}) - {x.final}\")\n\n\nm1 = MicrophoneModule()\nm2 = Wav2VecModule()\nm3 = TextDispatcherModule()\nm4 = GoogleTTSModule(\"en-US\", \"en-US-Wavenet-A\")\nm5 = SpeakerModule()\nm6 = CallbackModule(callback)\n\nm1.subscribe(m2)\nm2.subscribe(m3)\nm3.subscribe(m4)\nm4.subscribe(m5)\nm2.subscribe(m6)\n\nrun(m1)\n\ninput()\n\nstop(m1)\n```\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Retico is an open source framework for building state-of-the-art incremental processing systems.",
    "version": "0.1.8",
    "split_keywords": [
        "retico",
        "framework",
        "incremental",
        "dialogue",
        "dialog",
        "asr",
        "speech"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bdc4de3d7ba47f4a69c9d6bc45c64efd3e428138e3c9d43c4f77be4f36854ba",
                "md5": "74dbff2d00963bceeb1ad42b520aecf9",
                "sha256": "befe31c6b7a7eeb813c122168e0516223653ea4272f5190a3935724d5b473e48"
            },
            "downloads": -1,
            "filename": "retico-0.1.8.tar.gz",
            "has_sig": false,
            "md5_digest": "74dbff2d00963bceeb1ad42b520aecf9",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6, <4",
            "size": 6742,
            "upload_time": "2023-04-15T16:44:25",
            "upload_time_iso_8601": "2023-04-15T16:44:25.929262Z",
            "url": "https://files.pythonhosted.org/packages/8b/dc/4de3d7ba47f4a69c9d6bc45c64efd3e428138e3c9d43c4f77be4f36854ba/retico-0.1.8.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-15 16:44:25",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "retico-team",
    "github_project": "retico",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "retico"
}
        
Elapsed time: 0.05606s