byma


Namebyma JSON
Version 0.1.6 PyPI version JSON
download
home_pageNone
SummaryA Numerical Mathematics Packages with an easier and clean user interface.
upload_time2024-04-26 06:00:30
maintainerNone
docs_urlNone
author@b64-Lorenzo (Lorenzo Zambelli)
requires_python>=3.7
licenseNone
keywords python scientific numerical bifurcation
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # ByMa
![PyPI - Version](https://img.shields.io/pypi/v/byma?style=plastic&label=ByMa&labelColor=green&color=blue&link=https%3A%2F%2Fbytemath.gitlab.io%2Fpython%2FByMa%2Findex.html)
[![PyPI Downloads](https://img.shields.io/pypi/dm/label=PyPI%20downloads)](
https://pypi.org/project/byma/)
[![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/label=Conda%20downloads)](https://anaconda.org/conda-forge/byma)
![Libraries.io dependency status for specific release](https://img.shields.io/librariesio/release/pypi/numpy/1.1.1?style=plastic&logo=numpy&label=NumPy&labelColor=blue&link=https%3A%2F%2Fnumpy.org%2F)
![Libraries.io dependency status for specific release](https://img.shields.io/librariesio/release/pypi/scipy/1.0.0?style=plastic&logo=scipy&label=SciPy&labelColor=light%20blue&link=https%3A%2F%2Fscipy.org%2F)
![GitLab Last Commit](https://img.shields.io/gitlab/last-commit/ByteMath%2Fpython%2FByMa?gitlab_url=https%3A%2F%2Fgitlab.com%2FByteMath%2Fpython%2FByMa&style=plastic)
![Static Badge](https://img.shields.io/badge/Docs-Read?style=plastic&label=Read&color=purple&link=https%3A%2F%2Fbytemath.gitlab.io%2Fpython%2FByMa%2Findex.html)



ByMa is a Python package designed to facilitate numerical mathematics tasks by implementing a range of standard methods, from iterative techniques to bifurcation methods. Noted for its simplicity, clarity, and efficiency, ByMa aims to enhance the learning experience for newcomers to numerical mathematics while streamlining the implementation and utilization of popular scientific libraries such as NumPy, SciPy, and Matplotlib.


## Installation

ByMa is best installed in a [virtual environment](https://docs.python.org/3/library/venv.html).
We state the most common steps for creating and using a virtual environment here.
Refer to the documentation for more details.

To create a virtual environment run
```
python3 -m venv /path/to/new/virtual/environment
```

and to activate the virtual environment, run
```
source /path/to/new/virtual/environment/bin/activate
```

After this, we can install ByMa from the pip package by using
```
pip install byma
```

In case the dependencies are not installed, you can run 
```
pip install -e .
```

## Packages

ByMa consists of several subpackages, each serving a distinct purpose:

- **nuby**: Numerical Bifurcation Analysis Tools
- **iteral**: Tools for iterative algorithms
- **pyplot**: Tools for plotting functions
- **interface**: Interface functionalities

## Authors

* Lorenzo Zambelli [website](https://lorenzozambelli.it)

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "byma",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "python, scientific, numerical, bifurcation",
    "author": "@b64-Lorenzo (Lorenzo Zambelli)",
    "author_email": "Lorenzo Zambelli <bytemath@lorenzozambelli.it>",
    "download_url": "https://files.pythonhosted.org/packages/53/a5/18e78e213e198c8dedb720f44954ba8aa1d9170029695764602ed41781a4/byma-0.1.6.tar.gz",
    "platform": null,
    "description": "# ByMa\n![PyPI - Version](https://img.shields.io/pypi/v/byma?style=plastic&label=ByMa&labelColor=green&color=blue&link=https%3A%2F%2Fbytemath.gitlab.io%2Fpython%2FByMa%2Findex.html)\n[![PyPI Downloads](https://img.shields.io/pypi/dm/label=PyPI%20downloads)](\nhttps://pypi.org/project/byma/)\n[![Conda Downloads](https://img.shields.io/conda/dn/conda-forge/label=Conda%20downloads)](https://anaconda.org/conda-forge/byma)\n![Libraries.io dependency status for specific release](https://img.shields.io/librariesio/release/pypi/numpy/1.1.1?style=plastic&logo=numpy&label=NumPy&labelColor=blue&link=https%3A%2F%2Fnumpy.org%2F)\n![Libraries.io dependency status for specific release](https://img.shields.io/librariesio/release/pypi/scipy/1.0.0?style=plastic&logo=scipy&label=SciPy&labelColor=light%20blue&link=https%3A%2F%2Fscipy.org%2F)\n![GitLab Last Commit](https://img.shields.io/gitlab/last-commit/ByteMath%2Fpython%2FByMa?gitlab_url=https%3A%2F%2Fgitlab.com%2FByteMath%2Fpython%2FByMa&style=plastic)\n![Static Badge](https://img.shields.io/badge/Docs-Read?style=plastic&label=Read&color=purple&link=https%3A%2F%2Fbytemath.gitlab.io%2Fpython%2FByMa%2Findex.html)\n\n\n\nByMa is a Python package designed to facilitate numerical mathematics tasks by implementing a range of standard methods, from iterative techniques to bifurcation methods. Noted for its simplicity, clarity, and efficiency, ByMa aims to enhance the learning experience for newcomers to numerical mathematics while streamlining the implementation and utilization of popular scientific libraries such as NumPy, SciPy, and Matplotlib.\n\n\n## Installation\n\nByMa is best installed in a [virtual environment](https://docs.python.org/3/library/venv.html).\nWe state the most common steps for creating and using a virtual environment here.\nRefer to the documentation for more details.\n\nTo create a virtual environment run\n```\npython3 -m venv /path/to/new/virtual/environment\n```\n\nand to activate the virtual environment, run\n```\nsource /path/to/new/virtual/environment/bin/activate\n```\n\nAfter this, we can install ByMa from the pip package by using\n```\npip install byma\n```\n\nIn case the dependencies are not installed, you can run \n```\npip install -e .\n```\n\n## Packages\n\nByMa consists of several subpackages, each serving a distinct purpose:\n\n- **nuby**: Numerical Bifurcation Analysis Tools\n- **iteral**: Tools for iterative algorithms\n- **pyplot**: Tools for plotting functions\n- **interface**: Interface functionalities\n\n## Authors\n\n* Lorenzo Zambelli [website](https://lorenzozambelli.it)\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "A Numerical Mathematics Packages with an easier and clean user interface.",
    "version": "0.1.6",
    "project_urls": {
        "Homepage": "https://gitlab.com/ByteMath/python/byma",
        "documentation": "https://bytemath.gitlab.io/python/ByMa/index.html",
        "download": "https://pypi.org/project/byma/#files",
        "source": "https://gitlab.com/ByteMath/python/ByMa",
        "tracker": "https://gitlab.com/ByteMath/python/ByMa/-/issues"
    },
    "split_keywords": [
        "python",
        " scientific",
        " numerical",
        " bifurcation"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "196ecc6bf6543c7002f0ce4fb15c2a7225f10bd26f5a20f8377b91811481d5cd",
                "md5": "02ccbd5a590cc5d7cbbf7a62f5261046",
                "sha256": "ce62b8e25c6043279a32967f90a735105511fab146f8faa447eb007fdc5479d8"
            },
            "downloads": -1,
            "filename": "byma-0.1.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "02ccbd5a590cc5d7cbbf7a62f5261046",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 22577,
            "upload_time": "2024-04-26T06:00:29",
            "upload_time_iso_8601": "2024-04-26T06:00:29.659813Z",
            "url": "https://files.pythonhosted.org/packages/19/6e/cc6bf6543c7002f0ce4fb15c2a7225f10bd26f5a20f8377b91811481d5cd/byma-0.1.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "53a518e78e213e198c8dedb720f44954ba8aa1d9170029695764602ed41781a4",
                "md5": "820dbb1ca50f2ca923bc345073120130",
                "sha256": "e3fa0239ba24f59080704d92115e2ec6c1bbcf30bbfbbb18476163ef309f0949"
            },
            "downloads": -1,
            "filename": "byma-0.1.6.tar.gz",
            "has_sig": false,
            "md5_digest": "820dbb1ca50f2ca923bc345073120130",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 32022,
            "upload_time": "2024-04-26T06:00:30",
            "upload_time_iso_8601": "2024-04-26T06:00:30.923275Z",
            "url": "https://files.pythonhosted.org/packages/53/a5/18e78e213e198c8dedb720f44954ba8aa1d9170029695764602ed41781a4/byma-0.1.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-26 06:00:30",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "ByteMath",
    "gitlab_project": "python",
    "lcname": "byma"
}
        
Elapsed time: 0.23767s