ib002


Nameib002 JSON
Version 1.0.0 PyPI version JSON
download
home_page
Summarysorting algorithms
upload_time2023-08-30 12:12:23
maintainer
docs_urlNone
authorMichal Šoltis
requires_python>=3.11,<4.0
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Sorting algorithms

[![Coverage Status](https://coveralls.io/repos/github/slimreaper35/ib002/badge.svg?branch=main)](https://coveralls.io/github/slimreaper35/ib002?branch=main)

- Insert sort
- Bubble sort
- Merge sort
- Selection sort
- Quick sort
- Heap sort
- Counting sort
- Radix sort

## Install

```bash
pip install ib002
```

## Usage

```python
from ib002 import sorting

array = [3, 5, 2, 1, 7, 4, 6]
sorting.insert_sort(array)  # set a breakpoint
print(array)
```

## Development

#### Virtual environment

```bash
pip install --user poetry
poetry config virtualenvs.in-project true
poety shell
poetry install
```

#### Pre-commit

```bash
pre-commit install --hook-type pre-commit
pre-commit install --hook-type commit-msg
pre-commit autoupdate
```

#### Coding standards

- black
- ruff
- mypy
- pytest

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "ib002",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.11,<4.0",
    "maintainer_email": "",
    "keywords": "",
    "author": "Michal \u0160oltis",
    "author_email": "msoltis@redhat.com",
    "download_url": "https://files.pythonhosted.org/packages/15/7e/a96f40ca55d3b4e083cabd4460f9475b586cb134cf72bb96872caf185003/ib002-1.0.0.tar.gz",
    "platform": null,
    "description": "# Sorting algorithms\n\n[![Coverage Status](https://coveralls.io/repos/github/slimreaper35/ib002/badge.svg?branch=main)](https://coveralls.io/github/slimreaper35/ib002?branch=main)\n\n- Insert sort\n- Bubble sort\n- Merge sort\n- Selection sort\n- Quick sort\n- Heap sort\n- Counting sort\n- Radix sort\n\n## Install\n\n```bash\npip install ib002\n```\n\n## Usage\n\n```python\nfrom ib002 import sorting\n\narray = [3, 5, 2, 1, 7, 4, 6]\nsorting.insert_sort(array)  # set a breakpoint\nprint(array)\n```\n\n## Development\n\n#### Virtual environment\n\n```bash\npip install --user poetry\npoetry config virtualenvs.in-project true\npoety shell\npoetry install\n```\n\n#### Pre-commit\n\n```bash\npre-commit install --hook-type pre-commit\npre-commit install --hook-type commit-msg\npre-commit autoupdate\n```\n\n#### Coding standards\n\n- black\n- ruff\n- mypy\n- pytest\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "sorting algorithms",
    "version": "1.0.0",
    "project_urls": null,
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5a1ec96a8f8e541f020c3ed6594bbd994fe8bf0145397dd2324bcf1dd4e40bd",
                "md5": "9befd36f744d973cc1c6cded2336efa8",
                "sha256": "4858110b211f98e99eafdb5c6bc3b68f611e202a9f4e52c8f850576ca6618b2b"
            },
            "downloads": -1,
            "filename": "ib002-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "9befd36f744d973cc1c6cded2336efa8",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.11,<4.0",
            "size": 3932,
            "upload_time": "2023-08-30T12:12:22",
            "upload_time_iso_8601": "2023-08-30T12:12:22.805253Z",
            "url": "https://files.pythonhosted.org/packages/e5/a1/ec96a8f8e541f020c3ed6594bbd994fe8bf0145397dd2324bcf1dd4e40bd/ib002-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "157ea96f40ca55d3b4e083cabd4460f9475b586cb134cf72bb96872caf185003",
                "md5": "4b30cd6fbb3978c5ebca9bc517583108",
                "sha256": "dee87872a4b30957cbe43167f1750c085f42148120c0f0a61902d109b779bb85"
            },
            "downloads": -1,
            "filename": "ib002-1.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "4b30cd6fbb3978c5ebca9bc517583108",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.11,<4.0",
            "size": 3650,
            "upload_time": "2023-08-30T12:12:23",
            "upload_time_iso_8601": "2023-08-30T12:12:23.780402Z",
            "url": "https://files.pythonhosted.org/packages/15/7e/a96f40ca55d3b4e083cabd4460f9475b586cb134cf72bb96872caf185003/ib002-1.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-30 12:12:23",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "ib002"
}
        
Elapsed time: 0.14641s