UrlTasker


NameUrlTasker JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/mauricelambert/UrlTasker
SummaryA Python library for defining, templating, and executing configurable asynchronous actions triggered via URLs.
upload_time2025-09-01 04:48:07
maintainerMaurice Lambert
docs_urlNone
authorMaurice Lambert
requires_python>=3.8
licenseGPL-3.0 License
keywords url task async async-tasker asynchronous
VCS
bugtrack_url
requirements PegParser
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ![UrlTasker Logo](https://mauricelambert.github.io/info/python/code/UrlTasker_small.png "UrlTasker logo")

# UrlTasker

## Description

UrlTasker is a flexible Python framework for defining, configuring, and executing asynchronous actions using simple URL. Designed for modern async workflows, it allows developers to expose and trigger actions (HTTP, processus, ect...) configured by simple URL.

## Requirements

This package require:

 - python3
 - python3 Standard Library
 - PegParser

## Installation

### Pip

```bash
python3 -m pip install UrlTasker
```

### Git

```bash
git clone "https://github.com/mauricelambert/UrlTasker.git"
cd "UrlTasker"
python3 -m pip install .
```

### Wget

```bash
wget https://github.com/mauricelambert/UrlTasker/archive/refs/heads/main.zip
unzip main.zip
cd UrlTasker-main
python3 -m pip install .
```

### cURL

```bash
curl -O https://github.com/mauricelambert/UrlTasker/archive/refs/heads/main.zip
unzip main.zip
cd UrlTasker-main
python3 -m pip install .
```

## Usages

### Python script

```python
from UrlTasker import *

run(run_tasks(
    "http://127.0.0.1:8000/",
    "http://127.0.0.1:8000/1",
    "http://127.0.0.1:8000/2",
    "http+POST://test:test@127.0.0.1:8000/2;Filename=toto123?whynot#mydata",
    "script:test.py;test=test&test2=test?test=test#mydata",
    "https+GET+insecure://31.172.239.74/",
    "webscripts://127.0.0.1:8000/show_license.py?codeheader",
    "webscripts://127.0.0.1:8000/test_config.py?select=test&password=test&password=test&--test-date=2025-07-18&test_input=trololo&test_number=45#select%0aarguments%0a",
))

run(get_task("script:test.py;test=test&test2=test?test=test#mydata").run())
```

## Links

 - [Pypi](https://pypi.org/project/UrlTasker)
 - [Github](https://github.com/mauricelambert/UrlTasker)
 - [Documentation](https://mauricelambert.github.io/info/python/code/UrlTasker.html)

## License

Licensed under the [GPL, version 3](https://www.gnu.org/licenses/).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/mauricelambert/UrlTasker",
    "name": "UrlTasker",
    "maintainer": "Maurice Lambert",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Maurice Lambert <mauricelambert434@gmail.com>",
    "keywords": "url, task, async, async-tasker, asynchronous",
    "author": "Maurice Lambert",
    "author_email": "Maurice Lambert <mauricelambert434@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/94/ba/6d496e1f17f241c9f11c43f4eabe28f4976eee4b0575d1fe89ec0a28c658/urltasker-0.0.1.tar.gz",
    "platform": "Windows",
    "description": "![UrlTasker Logo](https://mauricelambert.github.io/info/python/code/UrlTasker_small.png \"UrlTasker logo\")\n\n# UrlTasker\n\n## Description\n\nUrlTasker is a flexible Python framework for defining, configuring, and executing asynchronous actions using simple URL. Designed for modern async workflows, it allows developers to expose and trigger actions (HTTP, processus, ect...) configured by simple URL.\n\n## Requirements\n\nThis package require:\n\n - python3\n - python3 Standard Library\n - PegParser\n\n## Installation\n\n### Pip\n\n```bash\npython3 -m pip install UrlTasker\n```\n\n### Git\n\n```bash\ngit clone \"https://github.com/mauricelambert/UrlTasker.git\"\ncd \"UrlTasker\"\npython3 -m pip install .\n```\n\n### Wget\n\n```bash\nwget https://github.com/mauricelambert/UrlTasker/archive/refs/heads/main.zip\nunzip main.zip\ncd UrlTasker-main\npython3 -m pip install .\n```\n\n### cURL\n\n```bash\ncurl -O https://github.com/mauricelambert/UrlTasker/archive/refs/heads/main.zip\nunzip main.zip\ncd UrlTasker-main\npython3 -m pip install .\n```\n\n## Usages\n\n### Python script\n\n```python\nfrom UrlTasker import *\n\nrun(run_tasks(\n    \"http://127.0.0.1:8000/\",\n    \"http://127.0.0.1:8000/1\",\n    \"http://127.0.0.1:8000/2\",\n    \"http+POST://test:test@127.0.0.1:8000/2;Filename=toto123?whynot#mydata\",\n    \"script:test.py;test=test&test2=test?test=test#mydata\",\n    \"https+GET+insecure://31.172.239.74/\",\n    \"webscripts://127.0.0.1:8000/show_license.py?codeheader\",\n    \"webscripts://127.0.0.1:8000/test_config.py?select=test&password=test&password=test&--test-date=2025-07-18&test_input=trololo&test_number=45#select%0aarguments%0a\",\n))\n\nrun(get_task(\"script:test.py;test=test&test2=test?test=test#mydata\").run())\n```\n\n## Links\n\n - [Pypi](https://pypi.org/project/UrlTasker)\n - [Github](https://github.com/mauricelambert/UrlTasker)\n - [Documentation](https://mauricelambert.github.io/info/python/code/UrlTasker.html)\n\n## License\n\nLicensed under the [GPL, version 3](https://www.gnu.org/licenses/).\n",
    "bugtrack_url": null,
    "license": "GPL-3.0 License",
    "summary": "A Python library for defining, templating, and executing configurable asynchronous actions triggered via URLs.",
    "version": "0.0.1",
    "project_urls": {
        "Documentation": "https://mauricelambert.github.io/info/python/code/UrlTasker.html",
        "Github": "https://github.com/mauricelambert/UrlTasker",
        "Homepage": "https://github.com/mauricelambert/UrlTasker"
    },
    "split_keywords": [
        "url",
        " task",
        " async",
        " async-tasker",
        " asynchronous"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94ba6d496e1f17f241c9f11c43f4eabe28f4976eee4b0575d1fe89ec0a28c658",
                "md5": "00d241a851a5bf31e63a7ae47aa35902",
                "sha256": "60c5d6edca170dec422e4a1c7c63bbb1015d819da183abda0378e09e29cc8f9c"
            },
            "downloads": -1,
            "filename": "urltasker-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "00d241a851a5bf31e63a7ae47aa35902",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 21170,
            "upload_time": "2025-09-01T04:48:07",
            "upload_time_iso_8601": "2025-09-01T04:48:07.902225Z",
            "url": "https://files.pythonhosted.org/packages/94/ba/6d496e1f17f241c9f11c43f4eabe28f4976eee4b0575d1fe89ec0a28c658/urltasker-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-09-01 04:48:07",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "mauricelambert",
    "github_project": "UrlTasker",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "PegParser",
            "specs": []
        }
    ],
    "lcname": "urltasker"
}
        
Elapsed time: 3.01527s