automata-lib


Nameautomata-lib JSON
Version 8.3.0 PyPI version JSON
download
home_pageNone
SummaryA Python library for simulating finite automata, pushdown automata, and Turing machines
upload_time2024-03-23 20:18:14
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseThe MIT License (MIT) Copyright (c) 2016-2024 Caleb Evans Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords automata finite non-deterministic pushdown turing machine state
VCS
bugtrack_url
requirements black build cached_method click coloraide coverage flake8 flake8-black flake8-isort Flake8-pyproject frozendict isort mccabe mypy mypy-extensions networkx nose2 packaging pathspec platformdirs pycodestyle pydot pyflakes pygraphviz pyparsing pyproject_hooks tomli types-frozendict typing_extensions
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Automata

*Copyright 2016-2024 Caleb Evans*  
*Released under the MIT license*

[![PyPI version](https://badge.fury.io/py/automata-lib.svg)](https://badge.fury.io/py/automata-lib)
[![tests](https://github.com/caleb531/automata/actions/workflows/tests.yml/badge.svg)](https://github.com/caleb531/automata/actions/workflows/tests.yml)
[![Coverage Status](https://coveralls.io/repos/caleb531/automata/badge.svg?branch=main)](https://coveralls.io/r/caleb531/automata?branch=main)
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![](https://img.shields.io/badge/python-3.8+-blue.svg)](https://pypi.org/project/automata-lib/)
[![status](https://joss.theoj.org/papers/fe4d8521383598038e38bc0c948718af/status.svg)](https://joss.theoj.org/papers/fe4d8521383598038e38bc0c948718af)

- **Documentation**: https://caleb531.github.io/automata/
- **Migration Guide**: https://caleb531.github.io/automata/migration/
- **API**: https://caleb531.github.io/automata/api/

Automata is a Python 3 library implementing structures and algorithms for manipulating finite automata,
pushdown automata, and Turing machines. The algorithms have been optimized and are capable of
processing large inputs. Visualization logic has also been implemented. This package is suitable for
both researchers wishing to manipulate automata and for instructors teaching courses on theoretical
computer science.

The library requires Python 3.8 or newer.

Huge thanks to [@eliotwrobson][eliotwrobson], [@YtvwlD][YtvwlD],
[@dengl11][dengl11], [@Tagl][Tagl], [@lewiuberg][lewiuberg],
[@CamiloMartinezM][CamiloMartinezM],
[@abhinavsinha‑adrino][abhinavsinha-adrino],
[@EduardoGoulart1][EduardoGoulart1],
[@khoda81][khoda81], and
[@christopher-hampson][christopher-hampson] for their invaluable code contributions to
this project! 🎉

[eliotwrobson]: https://github.com/eliotwrobson
[YtvwlD]: https://github.com/YtvwlD
[dengl11]: https://github.com/dengl11
[Tagl]: https://github.com/Tagl
[lewiuberg]: https://github.com/lewiuberg
[CamiloMartinezM]: https://github.com/CamiloMartinezM
[abhinavsinha-adrino]: https://github.com/abhinavsinha-adrino
[EduardoGoulart1]: https://github.com/EduardoGoulart1
[khoda81]: https://github.com/khoda81
[christopher-hampson]: https://github.com/christopher-hampson

## Installing

You can install the latest version of Automata via pip:

```sh
pip install automata-lib
```

To install the optional visual dependencies, use the `visual` extra:

```sh
pip install 'automata-lib[visual]'
```

## Contributing

Contributions are always welcome! Take a look at the [contributing guide](./CONTRIBUTING.md).

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "automata-lib",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Caleb Evans <caleb@calebevans.me>, \"Eliot W. Robson\" <eliot.robson24@gmail.com>",
    "keywords": "automata, finite, non-deterministic, pushdown, turing, machine, state",
    "author": null,
    "author_email": "Caleb Evans <caleb@calebevans.me>",
    "download_url": "https://files.pythonhosted.org/packages/00/17/88e820e7ad397cc3644107d81124327cf6829683366d460bf209419531b0/automata-lib-8.3.0.tar.gz",
    "platform": null,
    "description": "# Automata\n\n*Copyright 2016-2024 Caleb Evans*  \n*Released under the MIT license*\n\n[![PyPI version](https://badge.fury.io/py/automata-lib.svg)](https://badge.fury.io/py/automata-lib)\n[![tests](https://github.com/caleb531/automata/actions/workflows/tests.yml/badge.svg)](https://github.com/caleb531/automata/actions/workflows/tests.yml)\n[![Coverage Status](https://coveralls.io/repos/caleb531/automata/badge.svg?branch=main)](https://coveralls.io/r/caleb531/automata?branch=main)\n[![Project Status: Active \u2013 The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)\n[![](https://img.shields.io/badge/python-3.8+-blue.svg)](https://pypi.org/project/automata-lib/)\n[![status](https://joss.theoj.org/papers/fe4d8521383598038e38bc0c948718af/status.svg)](https://joss.theoj.org/papers/fe4d8521383598038e38bc0c948718af)\n\n- **Documentation**: https://caleb531.github.io/automata/\n- **Migration Guide**: https://caleb531.github.io/automata/migration/\n- **API**: https://caleb531.github.io/automata/api/\n\nAutomata is a Python 3 library implementing structures and algorithms for manipulating finite automata,\npushdown automata, and Turing machines. The algorithms have been optimized and are capable of\nprocessing large inputs. Visualization logic has also been implemented. This package is suitable for\nboth researchers wishing to manipulate automata and for instructors teaching courses on theoretical\ncomputer science.\n\nThe library requires Python 3.8 or newer.\n\nHuge thanks to [@eliotwrobson][eliotwrobson], [@YtvwlD][YtvwlD],\n[@dengl11][dengl11], [@Tagl][Tagl], [@lewiuberg][lewiuberg],\n[@CamiloMartinezM][CamiloMartinezM],\n[@abhinavsinha\u2011adrino][abhinavsinha-adrino],\n[@EduardoGoulart1][EduardoGoulart1],\n[@khoda81][khoda81], and\n[@christopher-hampson][christopher-hampson] for their invaluable code contributions to\nthis project! \ud83c\udf89\n\n[eliotwrobson]: https://github.com/eliotwrobson\n[YtvwlD]: https://github.com/YtvwlD\n[dengl11]: https://github.com/dengl11\n[Tagl]: https://github.com/Tagl\n[lewiuberg]: https://github.com/lewiuberg\n[CamiloMartinezM]: https://github.com/CamiloMartinezM\n[abhinavsinha-adrino]: https://github.com/abhinavsinha-adrino\n[EduardoGoulart1]: https://github.com/EduardoGoulart1\n[khoda81]: https://github.com/khoda81\n[christopher-hampson]: https://github.com/christopher-hampson\n\n## Installing\n\nYou can install the latest version of Automata via pip:\n\n```sh\npip install automata-lib\n```\n\nTo install the optional visual dependencies, use the `visual` extra:\n\n```sh\npip install 'automata-lib[visual]'\n```\n\n## Contributing\n\nContributions are always welcome! Take a look at the [contributing guide](./CONTRIBUTING.md).\n",
    "bugtrack_url": null,
    "license": "The MIT License (MIT)  Copyright (c) 2016-2024 Caleb Evans  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "A Python library for simulating finite automata, pushdown automata, and Turing machines",
    "version": "8.3.0",
    "project_urls": {
        "changelog": "https://github.com/caleb531/automata/releases",
        "documentation": "https://caleb531.github.io/automata/",
        "homepage": "https://github.com/caleb531/automata",
        "repository": "https://github.com/caleb531/automata"
    },
    "split_keywords": [
        "automata",
        " finite",
        " non-deterministic",
        " pushdown",
        " turing",
        " machine",
        " state"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b79ad17ae37e672c72f1e9fb923c8680453c249f6267297eaad1a89830be8075",
                "md5": "6251b17df19035d82d5fd96fcedabbae",
                "sha256": "5c8d8342bd6516de5ae9eb6f061351dcb42da5011ce95728b566ad857437462c"
            },
            "downloads": -1,
            "filename": "automata_lib-8.3.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6251b17df19035d82d5fd96fcedabbae",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 124349,
            "upload_time": "2024-03-23T20:18:12",
            "upload_time_iso_8601": "2024-03-23T20:18:12.521539Z",
            "url": "https://files.pythonhosted.org/packages/b7/9a/d17ae37e672c72f1e9fb923c8680453c249f6267297eaad1a89830be8075/automata_lib-8.3.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "001788e820e7ad397cc3644107d81124327cf6829683366d460bf209419531b0",
                "md5": "f1b9c4dbb54d43e14f2fbfdfae8be904",
                "sha256": "38d46b89c5e2ef49ce4097a3653e8d077f95e87f1b5b2c5df2b92a3fab8ff383"
            },
            "downloads": -1,
            "filename": "automata-lib-8.3.0.tar.gz",
            "has_sig": false,
            "md5_digest": "f1b9c4dbb54d43e14f2fbfdfae8be904",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 100972,
            "upload_time": "2024-03-23T20:18:14",
            "upload_time_iso_8601": "2024-03-23T20:18:14.115703Z",
            "url": "https://files.pythonhosted.org/packages/00/17/88e820e7ad397cc3644107d81124327cf6829683366d460bf209419531b0/automata-lib-8.3.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-23 20:18:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "caleb531",
    "github_project": "automata",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "black",
            "specs": [
                [
                    "==",
                    "24.2.0"
                ]
            ]
        },
        {
            "name": "build",
            "specs": [
                [
                    "==",
                    "1.0.3"
                ]
            ]
        },
        {
            "name": "cached_method",
            "specs": [
                [
                    "==",
                    "0.1.0"
                ]
            ]
        },
        {
            "name": "click",
            "specs": [
                [
                    "==",
                    "8.1.3"
                ]
            ]
        },
        {
            "name": "coloraide",
            "specs": [
                [
                    "==",
                    "1.8.2"
                ]
            ]
        },
        {
            "name": "coverage",
            "specs": [
                [
                    "==",
                    "7.4.1"
                ]
            ]
        },
        {
            "name": "flake8",
            "specs": [
                [
                    "==",
                    "7.0.0"
                ]
            ]
        },
        {
            "name": "flake8-black",
            "specs": [
                [
                    "==",
                    "0.3.6"
                ]
            ]
        },
        {
            "name": "flake8-isort",
            "specs": [
                [
                    "==",
                    "6.1.1"
                ]
            ]
        },
        {
            "name": "Flake8-pyproject",
            "specs": [
                [
                    "==",
                    "1.2.3"
                ]
            ]
        },
        {
            "name": "frozendict",
            "specs": [
                [
                    "==",
                    "2.3.4"
                ]
            ]
        },
        {
            "name": "isort",
            "specs": [
                [
                    "==",
                    "5.13.2"
                ]
            ]
        },
        {
            "name": "mccabe",
            "specs": [
                [
                    "==",
                    "0.7.0"
                ]
            ]
        },
        {
            "name": "mypy",
            "specs": [
                [
                    "==",
                    "1.8.0"
                ]
            ]
        },
        {
            "name": "mypy-extensions",
            "specs": [
                [
                    "==",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "networkx",
            "specs": [
                [
                    "==",
                    "2.6.2"
                ]
            ]
        },
        {
            "name": "nose2",
            "specs": [
                [
                    "==",
                    "0.14.1"
                ]
            ]
        },
        {
            "name": "packaging",
            "specs": [
                [
                    "==",
                    "23.0"
                ]
            ]
        },
        {
            "name": "pathspec",
            "specs": [
                [
                    "==",
                    "0.11.1"
                ]
            ]
        },
        {
            "name": "platformdirs",
            "specs": [
                [
                    "==",
                    "3.2.0"
                ]
            ]
        },
        {
            "name": "pycodestyle",
            "specs": [
                [
                    "==",
                    "2.11.1"
                ]
            ]
        },
        {
            "name": "pydot",
            "specs": [
                [
                    "==",
                    "1.4.2"
                ]
            ]
        },
        {
            "name": "pyflakes",
            "specs": [
                [
                    "==",
                    "3.2.0"
                ]
            ]
        },
        {
            "name": "pygraphviz",
            "specs": [
                [
                    "==",
                    "1.10"
                ]
            ]
        },
        {
            "name": "pyparsing",
            "specs": [
                [
                    "==",
                    "3.0.9"
                ]
            ]
        },
        {
            "name": "pyproject_hooks",
            "specs": [
                [
                    "==",
                    "1.0.0"
                ]
            ]
        },
        {
            "name": "tomli",
            "specs": [
                [
                    "==",
                    "2.0.1"
                ]
            ]
        },
        {
            "name": "types-frozendict",
            "specs": [
                [
                    "==",
                    "2.0.9"
                ]
            ]
        },
        {
            "name": "typing_extensions",
            "specs": [
                [
                    "==",
                    "4.9.0"
                ]
            ]
        }
    ],
    "lcname": "automata-lib"
}
        
Elapsed time: 0.24001s