aiopypes


Nameaiopypes JSON
Version 1.1.0 PyPI version JSON
download
home_page
SummaryScalable async pipelines in Python, made easy
upload_time2024-01-02 18:46:28
maintainer
docs_urlNone
author
requires_python>=3.10
licenseMIT License Copyright (c) [2023] [Michael Roumanos] 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 asyncio pipeline pipe stream
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![a-i-o-p-y-p-e-s](https://raw.githubusercontent.com/mroumanos/aiopypes/master/docs/_static/logo.png)

<h3 align="center">(pronounced "a-i-o-pipes")</h3>

<div align="center">

[![Status](https://img.shields.io/badge/status-active-success.svg)]()
[![GitHub Issues](https://img.shields.io/github/issues/mroumanos/aiopypes)](https://github.com/mroumanos/aiopypes/issues)
[![GitHub Pull Requests](https://img.shields.io/github/issues-pr/mroumanos/aiopypes)](https://github.com/mroumanos/aiopypes/pulls)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)

</div>

---

<p align="center"> Scalable asyncio pipelines in Python, made easy.
    <br> 
</p>

## 📝 Table of Contents

- [About](#about)
- [Getting Started](#getting_started)
- [Usage](#usage)
- [Built Using](#built_using)
- [TODO](#todo)
- [Contributing](../CONTRIBUTING.md)
- [Authors](#authors)
- [Acknowledgments](#acknowledgement)

## 🧐 About <a name = "about"></a>

This package is designed to make building asynchronous streams that balance and 
scale automatically *easy*. Built on pure Python -- no dependencies -- this 
framework can be used for variable, decoupled, task-based workloads like 
web scraping, database management operations, and more. Scale this out-of-the-box, 
with minimal hardware and coding, to process 10k+/s on production loads.

Simple pipelines
```
import aiopypes

app = aiopypes.App()

@app.task(interval=1.0)
async def every_second():
    return datetime.utcnow()

@app.task()
async def task1(stream):
    async for s in stream:
        print(f"streaming from task1: {s}")
        yield obj

if __name__ == '__main__':

    pipeline = every_second \
               .map(task1)

    pipeline.run()
```

To scaled pipelines
```
import aiopypes
import aiohttp

app = aiopypes.App()

@app.task(interval=0.1)
async def every_second():
    return "http://www.google.com"

@app.task(scaler=aiopypes.scale.TanhTaskScaler()) #  this scales workers automatically to consume incoming requests
async def task1(stream):
    async for s in stream:
        yield await aiohttp.get(s)

async def task2(stream):
    async for s in stream:
        if s.response_code != 200:
            print("failed request: {s}")
        yield

if __name__ == '__main__':

    pipeline = every_second \
               .map(task1)
               .reduce(task2)

    pipeline.run()
```

## 🏁 Getting Started <a name = "getting_started"></a>

Start with a simple pipeline, and build out from there!
```
import aiopypes

app = aiopypes.App()

@app.task(interval=1.0)
async def every_second():
    return datetime.utcnow()

@app.task()
async def task1(stream):
    async for s in stream:
        print(f"streaming from task1: {s}")
        yield obj

if __name__ == '__main__':

    pipeline = every_second \
               .map(task1)

    pipeline.run()
```
For more, see [readthedocs](https://aiopypes.readthedocs.io)

### Prerequisites

`aiopypes` is based on pure Python (3.5+) and does not require other dependencies.

### Installing
Available on PyPi [here](https://pypi.org/project/aiopypes), installed with pip:

```
pip install aiopypes
```

## 🔧 Running the tests <a name = "tests"></a>

To be created!

### Break down into end to end tests

To be created!

### And coding style tests

To be created!

## 🎈 Usage <a name="usage"></a>

Import the library
```
import aiopypes
```

Create an App object
```
app = aiopypes.App()
```

Create a trigger task
```
@app.task(interval=1.0)
async def every_second():
    return 1
```

Create downtream tasks
```
@app.task()
async def task_n(stream):
    async for s in stream:
        # process "s" here
        yield
```

Create + configure the pipeline
```
pipeline = every_second \
            .map(task_n)
```

Run the pipeline
```
pipeline.run()
```

This will run continuously until interrupted.

## ⛏️ Built Using <a name = "built_using"></a>

- [Python](https://www.python.org/)
- [asyncio](https://docs.python.org/3/library/asyncio.html)

## ✔️ TODO <a name = "todo"></a>

- [ ] Extend to multithreads
- [ ] Extend to multiprocess
- [ ] Build visualization server
- [ ] Add pipeline pipe functions (join, head, ...)

## ✍️ Authors <a name = "authors"></a>

- [@mroumanos](https://github.com/mroumanos)
- Contributors: you?

## 🎉 Acknowledgements <a name = "acknowledgement"></a>

- [faust streaming](https://github.com/faust-streaming/faust)

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "aiopypes",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": "",
    "keywords": "asyncio,pipeline,pipe,stream",
    "author": "",
    "author_email": "mroumanos <mroumanos@pm.me>",
    "download_url": "https://files.pythonhosted.org/packages/e8/9a/f85df50e58d88520ee7e47b9db8e661ed2543beddfc406a6e6646d2d9d2e/aiopypes-1.1.0.tar.gz",
    "platform": null,
    "description": "![a-i-o-p-y-p-e-s](https://raw.githubusercontent.com/mroumanos/aiopypes/master/docs/_static/logo.png)\n\n<h3 align=\"center\">(pronounced \"a-i-o-pipes\")</h3>\n\n<div align=\"center\">\n\n[![Status](https://img.shields.io/badge/status-active-success.svg)]()\n[![GitHub Issues](https://img.shields.io/github/issues/mroumanos/aiopypes)](https://github.com/mroumanos/aiopypes/issues)\n[![GitHub Pull Requests](https://img.shields.io/github/issues-pr/mroumanos/aiopypes)](https://github.com/mroumanos/aiopypes/pulls)\n[![License](https://img.shields.io/badge/license-MIT-blue.svg)](/LICENSE)\n\n</div>\n\n---\n\n<p align=\"center\"> Scalable asyncio pipelines in Python, made easy.\n    <br> \n</p>\n\n## \ud83d\udcdd Table of Contents\n\n- [About](#about)\n- [Getting Started](#getting_started)\n- [Usage](#usage)\n- [Built Using](#built_using)\n- [TODO](#todo)\n- [Contributing](../CONTRIBUTING.md)\n- [Authors](#authors)\n- [Acknowledgments](#acknowledgement)\n\n## \ud83e\uddd0 About <a name = \"about\"></a>\n\nThis package is designed to make building asynchronous streams that balance and \nscale automatically *easy*. Built on pure Python -- no dependencies -- this \nframework can be used for variable, decoupled, task-based workloads like \nweb scraping, database management operations, and more. Scale this out-of-the-box, \nwith minimal hardware and coding, to process 10k+/s on production loads.\n\nSimple pipelines\n```\nimport aiopypes\n\napp = aiopypes.App()\n\n@app.task(interval=1.0)\nasync def every_second():\n    return datetime.utcnow()\n\n@app.task()\nasync def task1(stream):\n    async for s in stream:\n        print(f\"streaming from task1: {s}\")\n        yield obj\n\nif __name__ == '__main__':\n\n    pipeline = every_second \\\n               .map(task1)\n\n    pipeline.run()\n```\n\nTo scaled pipelines\n```\nimport aiopypes\nimport aiohttp\n\napp = aiopypes.App()\n\n@app.task(interval=0.1)\nasync def every_second():\n    return \"http://www.google.com\"\n\n@app.task(scaler=aiopypes.scale.TanhTaskScaler()) #  this scales workers automatically to consume incoming requests\nasync def task1(stream):\n    async for s in stream:\n        yield await aiohttp.get(s)\n\nasync def task2(stream):\n    async for s in stream:\n        if s.response_code != 200:\n            print(\"failed request: {s}\")\n        yield\n\nif __name__ == '__main__':\n\n    pipeline = every_second \\\n               .map(task1)\n               .reduce(task2)\n\n    pipeline.run()\n```\n\n## \ud83c\udfc1 Getting Started <a name = \"getting_started\"></a>\n\nStart with a simple pipeline, and build out from there!\n```\nimport aiopypes\n\napp = aiopypes.App()\n\n@app.task(interval=1.0)\nasync def every_second():\n    return datetime.utcnow()\n\n@app.task()\nasync def task1(stream):\n    async for s in stream:\n        print(f\"streaming from task1: {s}\")\n        yield obj\n\nif __name__ == '__main__':\n\n    pipeline = every_second \\\n               .map(task1)\n\n    pipeline.run()\n```\nFor more, see [readthedocs](https://aiopypes.readthedocs.io)\n\n### Prerequisites\n\n`aiopypes` is based on pure Python (3.5+) and does not require other dependencies.\n\n### Installing\nAvailable on PyPi [here](https://pypi.org/project/aiopypes), installed with pip:\n\n```\npip install aiopypes\n```\n\n## \ud83d\udd27 Running the tests <a name = \"tests\"></a>\n\nTo be created!\n\n### Break down into end to end tests\n\nTo be created!\n\n### And coding style tests\n\nTo be created!\n\n## \ud83c\udf88 Usage <a name=\"usage\"></a>\n\nImport the library\n```\nimport aiopypes\n```\n\nCreate an App object\n```\napp = aiopypes.App()\n```\n\nCreate a trigger task\n```\n@app.task(interval=1.0)\nasync def every_second():\n    return 1\n```\n\nCreate downtream tasks\n```\n@app.task()\nasync def task_n(stream):\n    async for s in stream:\n        # process \"s\" here\n        yield\n```\n\nCreate + configure the pipeline\n```\npipeline = every_second \\\n            .map(task_n)\n```\n\nRun the pipeline\n```\npipeline.run()\n```\n\nThis will run continuously until interrupted.\n\n## \u26cf\ufe0f Built Using <a name = \"built_using\"></a>\n\n- [Python](https://www.python.org/)\n- [asyncio](https://docs.python.org/3/library/asyncio.html)\n\n## \u2714\ufe0f TODO <a name = \"todo\"></a>\n\n- [ ] Extend to multithreads\n- [ ] Extend to multiprocess\n- [ ] Build visualization server\n- [ ] Add pipeline pipe functions (join, head, ...)\n\n## \u270d\ufe0f Authors <a name = \"authors\"></a>\n\n- [@mroumanos](https://github.com/mroumanos)\n- Contributors: you?\n\n## \ud83c\udf89 Acknowledgements <a name = \"acknowledgement\"></a>\n\n- [faust streaming](https://github.com/faust-streaming/faust)\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) [2023] [Michael Roumanos]  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": "Scalable async pipelines in Python, made easy",
    "version": "1.1.0",
    "project_urls": {
        "Documentation": "https://aiopypes.readthedocs.io",
        "Homepage": "https://github.com/mroumanos/aiopypes",
        "Repository": "https://github.com/mroumanos/aiopypes.git"
    },
    "split_keywords": [
        "asyncio",
        "pipeline",
        "pipe",
        "stream"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f323f57c171bff60709a6d7ea329ceb6d772cd66ec5076d389a36e48d2d1391",
                "md5": "d92ef500513afd2945b0485008971a2f",
                "sha256": "202ec76a0f869df80cd78c42b9e838453e07eab39eb248743ef5c634471c9074"
            },
            "downloads": -1,
            "filename": "aiopypes-1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d92ef500513afd2945b0485008971a2f",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 14305,
            "upload_time": "2024-01-02T18:46:27",
            "upload_time_iso_8601": "2024-01-02T18:46:27.187883Z",
            "url": "https://files.pythonhosted.org/packages/1f/32/3f57c171bff60709a6d7ea329ceb6d772cd66ec5076d389a36e48d2d1391/aiopypes-1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e89af85df50e58d88520ee7e47b9db8e661ed2543beddfc406a6e6646d2d9d2e",
                "md5": "ec9aeb7a3f608cc039ce79c7b8ff5359",
                "sha256": "62eaad0417842b18d169e12732c34caac034612c7f6969e4845e93107cde7e73"
            },
            "downloads": -1,
            "filename": "aiopypes-1.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "ec9aeb7a3f608cc039ce79c7b8ff5359",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 14934,
            "upload_time": "2024-01-02T18:46:28",
            "upload_time_iso_8601": "2024-01-02T18:46:28.909784Z",
            "url": "https://files.pythonhosted.org/packages/e8/9a/f85df50e58d88520ee7e47b9db8e661ed2543beddfc406a6e6646d2d9d2e/aiopypes-1.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-02 18:46:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mroumanos",
    "github_project": "aiopypes",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "lcname": "aiopypes"
}
        
Elapsed time: 0.16748s