prezzemolo


Nameprezzemolo JSON
Version 0.0.4 PyPI version JSON
download
home_pagehttps://github.com/eprbell/prezzemolo
SummaryA collection of robust, efficient and small classic algorithms and data structures.
upload_time2023-03-21 05:18:34
maintainer
docs_urlNone
authoreprbell
requires_python
licenseApache License 2.0
keywords utility algorithm data structure tree graph
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <!--- Copyright 2022 eprbell --->

<!--- Licensed under the Apache License, Version 2.0 (the "License"); --->
<!--- you may not use this file except in compliance with the License. --->
<!--- You may obtain a copy of the License at --->

<!---     http://www.apache.org/licenses/LICENSE-2.0 --->

<!--- Unless required by applicable law or agreed to in writing, software --->
<!--- distributed under the License is distributed on an "AS IS" BASIS, --->
<!--- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --->
<!--- See the License for the specific language governing permissions and --->
<!--- limitations under the License. --->

# Prezzemolo v0.0.4
[![Static Analysis / Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/static_analysis.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/static_analysis.yml)
[![Documentation Check / Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/documentation_check.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/documentation_check.yml)
[![Unix Unit Tests / Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/unix_unit_tests.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/unix_unit_tests.yml)
[![Windows Unit Tests / Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/windows_unit_tests.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/windows_unit_tests.yml)
[![CodeQL/Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/codeql-analysis.yml)

## Table of Contents
* **[Introduction](https://github.com/eprbell/prezzemolo/tree/main/README.md#introduction)**
* **[License](https://github.com/eprbell/prezzemolo/tree/main/README.md#license)**
* **[Download](https://github.com/eprbell/prezzemolo/tree/main/README.md#download)**
* **[Installation](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation)**
  * [Ubuntu Linux](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation-on-ubuntu-linux)
  * [macOS](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation-on-macos)
  * [Windows 10](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation-on-windows-10)
  * [Other Unix-like Systems](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation-on-other-unix-like-systems)
* **[Reporting Bugs](https://github.com/eprbell/prezzemolo/tree/main/README.md#reporting-bugs)**
* **[Contributing](https://github.com/eprbell/prezzemolo/tree/main/README.md#contributing)**
* **[Developer Documentation](https://github.com/eprbell/prezzemolo/tree/main/README.md#developer-documentation)**
* **[Frequently Asked Questions](https://github.com/eprbell/prezzemolo/tree/main/README.md#frequently-asked-questions)**
* **[Change Log](https://github.com/eprbell/prezzemolo/tree/main/README.md#change-log)**

## Introduction
Prezzemolo is a collection of classic data structure and algorithms that are useful in many different projects. The goal is to provide components that are robust, efficient and small (in decreasing order of importance). Each component has extensive unit testing to reduce the risk of regression. The project will grow organically as new components are needed in various projects, such as RP2 (the privacy-focused, open-source crypto tax calculator), and others.

**IMPORTANT DISCLAIMERS**:
* Prezzemolo offers no guarantee of correctness (read the [license](https://github.com/eprbell/prezzemolo/tree/main/LICENSE)).

## License
Prezzemolo is released under the terms of Apache License Version 2.0. For more information see [LICENSE](https://github.com/eprbell/prezzemolo/tree/main/LICENSE) or <http://www.apache.org/licenses/LICENSE-2.0>.

## Download
The latest version of Prezzemolo can be downloaded at: <https://pypi.org/project/prezzemolo/>

## Installation
Prezzemolo has been tested on Ubuntu Linux, macOS and Windows 10 but it should work on all systems that have Python version 3.7.0 or greater.

### Installation on Ubuntu Linux
Open a terminal window and enter the following commands:
```
sudo apt-get update
sudo apt-get install python3 python3-pip
```

Then install Prezzemolo:
```
pip install prezzemolo
```
### Installation on macOS
First make sure [Homebrew](https://brew.sh) is installed, then open a terminal window and enter the following commands:
```
brew update
brew install python3
```

Then install Prezzemolo:
```
pip install prezzemolo
```
### Installation on Windows 10
First make sure [Python](https://python.org) 3.7 or greater is installed (in the Python installer window be sure to click on "Add Python to PATH"), then open a PowerShell window and enter the following:
```
pip install prezzemolo
```

### Installation on Other Unix-like Systems
* install python 3.7 or greater
* install pip3
* `pip install prezzemolo`

## Reporting Bugs
Read the [Contributing](https://github.com/eprbell/prezzemolo/tree/main/CONTRIBUTING.md#reporting-bugs) document.

## Contributing
Read the [Contributing](https://github.com/eprbell/prezzemolo/tree/main/CONTRIBUTING.md) document.

## Developer Documentation
Read the [developer documentation](https://github.com/eprbell/prezzemolo/tree/main/README.dev.md).

## Frequently Asked Questions
Read the [user FAQ list](https://github.com/eprbell/prezzemolo/tree/main/docs/user_faq.md) and the [developer FAQ list](https://github.com/eprbell/prezzemolo/tree/main/docs/developer_faq.md).

## Change Log
Read the [Change Log](https://github.com/eprbell/prezzemolo/tree/main/CHANGELOG.md) document.

<!--- Copyright 2022 eprbell --->

<!--- Licensed under the Apache License, Version 2.0 (the "License"); --->
<!--- you may not use this file except in compliance with the License. --->
<!--- You may obtain a copy of the License at --->

<!---     http://www.apache.org/licenses/LICENSE-2.0 --->

<!--- Unless required by applicable law or agreed to in writing, software --->
<!--- distributed under the License is distributed on an "AS IS" BASIS, --->
<!--- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --->
<!--- See the License for the specific language governing permissions and --->
<!--- limitations under the License. --->

# Prezzemolo Change Log

## 0.0.4
* Added Dijkstra to Graph class

## 0.0.3
* Manage py.typed to setup.cfg options.package_data

## 0.0.2
* Added py.typed

## 0.0.1
* First version tracked in change log
* implemented Graph and Vertex classes with respective unit tests
* moved avl_tree.py from RP2
* moved to_string from RP2

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/eprbell/prezzemolo",
    "name": "prezzemolo",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "utility,algorithm,data structure,tree,graph",
    "author": "eprbell",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/58/a3/89a5d43084e44bdecffa7e59be94a72747021629f31939387971c91e79f1/prezzemolo-0.0.4.tar.gz",
    "platform": null,
    "description": "<!--- Copyright 2022 eprbell --->\n\n<!--- Licensed under the Apache License, Version 2.0 (the \"License\"); --->\n<!--- you may not use this file except in compliance with the License. --->\n<!--- You may obtain a copy of the License at --->\n\n<!---     http://www.apache.org/licenses/LICENSE-2.0 --->\n\n<!--- Unless required by applicable law or agreed to in writing, software --->\n<!--- distributed under the License is distributed on an \"AS IS\" BASIS, --->\n<!--- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --->\n<!--- See the License for the specific language governing permissions and --->\n<!--- limitations under the License. --->\n\n# Prezzemolo v0.0.4\n[![Static Analysis / Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/static_analysis.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/static_analysis.yml)\n[![Documentation Check / Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/documentation_check.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/documentation_check.yml)\n[![Unix Unit Tests / Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/unix_unit_tests.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/unix_unit_tests.yml)\n[![Windows Unit Tests / Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/windows_unit_tests.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/windows_unit_tests.yml)\n[![CodeQL/Main Branch](https://github.com/eprbell/prezzemolo/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/eprbell/prezzemolo/actions/workflows/codeql-analysis.yml)\n\n## Table of Contents\n* **[Introduction](https://github.com/eprbell/prezzemolo/tree/main/README.md#introduction)**\n* **[License](https://github.com/eprbell/prezzemolo/tree/main/README.md#license)**\n* **[Download](https://github.com/eprbell/prezzemolo/tree/main/README.md#download)**\n* **[Installation](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation)**\n  * [Ubuntu Linux](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation-on-ubuntu-linux)\n  * [macOS](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation-on-macos)\n  * [Windows 10](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation-on-windows-10)\n  * [Other Unix-like Systems](https://github.com/eprbell/prezzemolo/tree/main/README.md#installation-on-other-unix-like-systems)\n* **[Reporting Bugs](https://github.com/eprbell/prezzemolo/tree/main/README.md#reporting-bugs)**\n* **[Contributing](https://github.com/eprbell/prezzemolo/tree/main/README.md#contributing)**\n* **[Developer Documentation](https://github.com/eprbell/prezzemolo/tree/main/README.md#developer-documentation)**\n* **[Frequently Asked Questions](https://github.com/eprbell/prezzemolo/tree/main/README.md#frequently-asked-questions)**\n* **[Change Log](https://github.com/eprbell/prezzemolo/tree/main/README.md#change-log)**\n\n## Introduction\nPrezzemolo is a collection of classic data structure and algorithms that are useful in many different projects. The goal is to provide components that are robust, efficient and small (in decreasing order of importance). Each component has extensive unit testing to reduce the risk of regression. The project will grow organically as new components are needed in various projects, such as RP2 (the privacy-focused, open-source crypto tax calculator), and others.\n\n**IMPORTANT DISCLAIMERS**:\n* Prezzemolo offers no guarantee of correctness (read the [license](https://github.com/eprbell/prezzemolo/tree/main/LICENSE)).\n\n## License\nPrezzemolo is released under the terms of Apache License Version 2.0. For more information see [LICENSE](https://github.com/eprbell/prezzemolo/tree/main/LICENSE) or <http://www.apache.org/licenses/LICENSE-2.0>.\n\n## Download\nThe latest version of Prezzemolo can be downloaded at: <https://pypi.org/project/prezzemolo/>\n\n## Installation\nPrezzemolo has been tested on Ubuntu Linux, macOS and Windows 10 but it should work on all systems that have Python version 3.7.0 or greater.\n\n### Installation on Ubuntu Linux\nOpen a terminal window and enter the following commands:\n```\nsudo apt-get update\nsudo apt-get install python3 python3-pip\n```\n\nThen install Prezzemolo:\n```\npip install prezzemolo\n```\n### Installation on macOS\nFirst make sure [Homebrew](https://brew.sh) is installed, then open a terminal window and enter the following commands:\n```\nbrew update\nbrew install python3\n```\n\nThen install Prezzemolo:\n```\npip install prezzemolo\n```\n### Installation on Windows 10\nFirst make sure [Python](https://python.org) 3.7 or greater is installed (in the Python installer window be sure to click on \"Add Python to PATH\"), then open a PowerShell window and enter the following:\n```\npip install prezzemolo\n```\n\n### Installation on Other Unix-like Systems\n* install python 3.7 or greater\n* install pip3\n* `pip install prezzemolo`\n\n## Reporting Bugs\nRead the [Contributing](https://github.com/eprbell/prezzemolo/tree/main/CONTRIBUTING.md#reporting-bugs) document.\n\n## Contributing\nRead the [Contributing](https://github.com/eprbell/prezzemolo/tree/main/CONTRIBUTING.md) document.\n\n## Developer Documentation\nRead the [developer documentation](https://github.com/eprbell/prezzemolo/tree/main/README.dev.md).\n\n## Frequently Asked Questions\nRead the [user FAQ list](https://github.com/eprbell/prezzemolo/tree/main/docs/user_faq.md) and the [developer FAQ list](https://github.com/eprbell/prezzemolo/tree/main/docs/developer_faq.md).\n\n## Change Log\nRead the [Change Log](https://github.com/eprbell/prezzemolo/tree/main/CHANGELOG.md) document.\n\n<!--- Copyright 2022 eprbell --->\n\n<!--- Licensed under the Apache License, Version 2.0 (the \"License\"); --->\n<!--- you may not use this file except in compliance with the License. --->\n<!--- You may obtain a copy of the License at --->\n\n<!---     http://www.apache.org/licenses/LICENSE-2.0 --->\n\n<!--- Unless required by applicable law or agreed to in writing, software --->\n<!--- distributed under the License is distributed on an \"AS IS\" BASIS, --->\n<!--- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. --->\n<!--- See the License for the specific language governing permissions and --->\n<!--- limitations under the License. --->\n\n# Prezzemolo Change Log\n\n## 0.0.4\n* Added Dijkstra to Graph class\n\n## 0.0.3\n* Manage py.typed to setup.cfg options.package_data\n\n## 0.0.2\n* Added py.typed\n\n## 0.0.1\n* First version tracked in change log\n* implemented Graph and Vertex classes with respective unit tests\n* moved avl_tree.py from RP2\n* moved to_string from RP2\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "A collection of robust, efficient and small classic algorithms and data structures.",
    "version": "0.0.4",
    "split_keywords": [
        "utility",
        "algorithm",
        "data structure",
        "tree",
        "graph"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df9962410cc5debfd8c9810cf29fdfbfad2695d7bafd268710ef887ec876dedb",
                "md5": "ce71c92a9371713e38b9732ef246a845",
                "sha256": "f6353dbccb0381f08215841338f4f75dcd816613c46ef3f3c8c336402fb43bce"
            },
            "downloads": -1,
            "filename": "prezzemolo-0.0.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ce71c92a9371713e38b9732ef246a845",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 14015,
            "upload_time": "2023-03-21T05:18:32",
            "upload_time_iso_8601": "2023-03-21T05:18:32.561378Z",
            "url": "https://files.pythonhosted.org/packages/df/99/62410cc5debfd8c9810cf29fdfbfad2695d7bafd268710ef887ec876dedb/prezzemolo-0.0.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58a389a5d43084e44bdecffa7e59be94a72747021629f31939387971c91e79f1",
                "md5": "11a1efa744d3cd2106f20040807f17b7",
                "sha256": "d3f48e1e938b4864f3bae8a7c53cc5b3a3ce4a122b9cc51b03de5c85a5a012b5"
            },
            "downloads": -1,
            "filename": "prezzemolo-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "11a1efa744d3cd2106f20040807f17b7",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 19180,
            "upload_time": "2023-03-21T05:18:34",
            "upload_time_iso_8601": "2023-03-21T05:18:34.158909Z",
            "url": "https://files.pythonhosted.org/packages/58/a3/89a5d43084e44bdecffa7e59be94a72747021629f31939387971c91e79f1/prezzemolo-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-21 05:18:34",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "eprbell",
    "github_project": "prezzemolo",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "prezzemolo"
}
        
Elapsed time: 0.04893s