simple-disk-queue


Namesimple-disk-queue JSON
Version 0.0.3 PyPI version JSON
download
home_pagehttps://github.com/zlin7/python-simple_disk_queue
SummaryCreate a disk-based queue
upload_time2024-06-02 04:53:51
maintainerNone
docs_urlNone
authorZhen Lin
requires_pythonNone
licenseMIT
keywords job scheduler disk-based queue disk queue scheduler
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# Installation

`pip install .` or `pip install simple-disk-queue`

**By default, a folder called `.cache/simple_disk_queue` is created under your home directory, and will be used to store queues.**
If you want to change it, see "Global Settings" below.

# Quick Start

An example can be found in `examples/test.py`.
We can first call `init_queue()` to initialize the jobs, and then run `sdq.DiskQueue.run('test')` in different processes.

## 0.0.3
==================
1. bug fix


## 0.0.2
==================
1. Use reference so we minimize the critical time
2. Added documentation and verbose mode


## 0.0.1
==================

1. Core functionality: Add jobs to a queue and run jobs from a queue.


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/zlin7/python-simple_disk_queue",
    "name": "simple-disk-queue",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "Job Scheduler, Disk-based Queue, Disk Queue Scheduler",
    "author": "Zhen Lin",
    "author_email": "zhenlin4@illinois.edu",
    "download_url": "https://files.pythonhosted.org/packages/ed/57/b19ac24954a7c75f24449ec239642d55e070f50c40ef228d839841f02edd/simple_disk_queue-0.0.3.tar.gz",
    "platform": null,
    "description": "\n# Installation\n\n`pip install .` or `pip install simple-disk-queue`\n\n**By default, a folder called `.cache/simple_disk_queue` is created under your home directory, and will be used to store queues.**\nIf you want to change it, see \"Global Settings\" below.\n\n# Quick Start\n\nAn example can be found in `examples/test.py`.\nWe can first call `init_queue()` to initialize the jobs, and then run `sdq.DiskQueue.run('test')` in different processes.\n\n## 0.0.3\n==================\n1. bug fix\n\n\n## 0.0.2\n==================\n1. Use reference so we minimize the critical time\n2. Added documentation and verbose mode\n\n\n## 0.0.1\n==================\n\n1. Core functionality: Add jobs to a queue and run jobs from a queue.\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Create a disk-based queue",
    "version": "0.0.3",
    "project_urls": {
        "Homepage": "https://github.com/zlin7/python-simple_disk_queue"
    },
    "split_keywords": [
        "job scheduler",
        " disk-based queue",
        " disk queue scheduler"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2097ac80aca4e4fc21fc7a59103bcaa2e6022511fdae50064cf659f241e8ab30",
                "md5": "0e866ef819f82b34d52fac1898375e8e",
                "sha256": "bf9d2bf19651e92fd497f34991110a21a60c426c5a96c5888f6124fd62a296a9"
            },
            "downloads": -1,
            "filename": "simple_disk_queue-0.0.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0e866ef819f82b34d52fac1898375e8e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 5610,
            "upload_time": "2024-06-02T04:53:50",
            "upload_time_iso_8601": "2024-06-02T04:53:50.494956Z",
            "url": "https://files.pythonhosted.org/packages/20/97/ac80aca4e4fc21fc7a59103bcaa2e6022511fdae50064cf659f241e8ab30/simple_disk_queue-0.0.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ed57b19ac24954a7c75f24449ec239642d55e070f50c40ef228d839841f02edd",
                "md5": "90302695da8a4732a179319a4a3b65f2",
                "sha256": "e1730c37ffcf165cfc8c6772a849e85601ab752a4cbaa5a4bb18b10c7e335c51"
            },
            "downloads": -1,
            "filename": "simple_disk_queue-0.0.3.tar.gz",
            "has_sig": false,
            "md5_digest": "90302695da8a4732a179319a4a3b65f2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4655,
            "upload_time": "2024-06-02T04:53:51",
            "upload_time_iso_8601": "2024-06-02T04:53:51.423559Z",
            "url": "https://files.pythonhosted.org/packages/ed/57/b19ac24954a7c75f24449ec239642d55e070f50c40ef228d839841f02edd/simple_disk_queue-0.0.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-06-02 04:53:51",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "zlin7",
    "github_project": "python-simple_disk_queue",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "simple-disk-queue"
}
        
Elapsed time: 4.78341s