astatine


Nameastatine JSON
Version 0.3.3 PyPI version JSON
download
home_pagehttps://github.com/python-formate/astatine
SummarySome handy helper functions for Python's AST module.
upload_time2023-08-15 10:38:28
maintainer
docs_urlNone
author
requires_python>=3.6
licenseMIT
keywords ast
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
#########
astatine
#########

.. start short_desc

**Some handy helper functions for Python's AST module.**

.. end short_desc


`Astatine <https://en.wikipedia.org/wiki/Astatine>`_ is a chemical element with the symbol At and atomic number 85.
Its name comes from the Greek astatos (ἄστατος), meaning "unstable".
It's a fitting name for Python's ``ast`` module, which has been unstable between releases.


.. start shields

.. list-table::
	:stub-columns: 1
	:widths: 10 90

	* - Docs
	  - |docs| |docs_check|
	* - Tests
	  - |actions_linux| |actions_windows| |actions_macos| |coveralls|
	* - PyPI
	  - |pypi-version| |supported-versions| |supported-implementations| |wheel|
	* - Anaconda
	  - |conda-version| |conda-platform|
	* - Activity
	  - |commits-latest| |commits-since| |maintained| |pypi-downloads|
	* - QA
	  - |codefactor| |actions_flake8| |actions_mypy|
	* - Other
	  - |license| |language| |requires|

.. |docs| image:: https://img.shields.io/readthedocs/astatine/latest?logo=read-the-docs
	:target: https://astatine.readthedocs.io/en/latest
	:alt: Documentation Build Status

.. |docs_check| image:: https://github.com/python-formate/astatine/workflows/Docs%20Check/badge.svg
	:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22Docs+Check%22
	:alt: Docs Check Status

.. |actions_linux| image:: https://github.com/python-formate/astatine/workflows/Linux/badge.svg
	:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22Linux%22
	:alt: Linux Test Status

.. |actions_windows| image:: https://github.com/python-formate/astatine/workflows/Windows/badge.svg
	:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22Windows%22
	:alt: Windows Test Status

.. |actions_macos| image:: https://github.com/python-formate/astatine/workflows/macOS/badge.svg
	:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22macOS%22
	:alt: macOS Test Status

.. |actions_flake8| image:: https://github.com/python-formate/astatine/workflows/Flake8/badge.svg
	:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22Flake8%22
	:alt: Flake8 Status

.. |actions_mypy| image:: https://github.com/python-formate/astatine/workflows/mypy/badge.svg
	:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22mypy%22
	:alt: mypy status

.. |requires| image:: https://dependency-dash.repo-helper.uk/github/python-formate/astatine/badge.svg
	:target: https://dependency-dash.repo-helper.uk/github/python-formate/astatine/
	:alt: Requirements Status

.. |coveralls| image:: https://img.shields.io/coveralls/github/python-formate/astatine/master?logo=coveralls
	:target: https://coveralls.io/github/python-formate/astatine?branch=master
	:alt: Coverage

.. |codefactor| image:: https://img.shields.io/codefactor/grade/github/python-formate/astatine?logo=codefactor
	:target: https://www.codefactor.io/repository/github/python-formate/astatine
	:alt: CodeFactor Grade

.. |pypi-version| image:: https://img.shields.io/pypi/v/astatine
	:target: https://pypi.org/project/astatine/
	:alt: PyPI - Package Version

.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/astatine?logo=python&logoColor=white
	:target: https://pypi.org/project/astatine/
	:alt: PyPI - Supported Python Versions

.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/astatine
	:target: https://pypi.org/project/astatine/
	:alt: PyPI - Supported Implementations

.. |wheel| image:: https://img.shields.io/pypi/wheel/astatine
	:target: https://pypi.org/project/astatine/
	:alt: PyPI - Wheel

.. |conda-version| image:: https://img.shields.io/conda/v/domdfcoding/astatine?logo=anaconda
	:target: https://anaconda.org/domdfcoding/astatine
	:alt: Conda - Package Version

.. |conda-platform| image:: https://img.shields.io/conda/pn/domdfcoding/astatine?label=conda%7Cplatform
	:target: https://anaconda.org/domdfcoding/astatine
	:alt: Conda - Platform

.. |license| image:: https://img.shields.io/github/license/python-formate/astatine
	:target: https://github.com/python-formate/astatine/blob/master/LICENSE
	:alt: License

.. |language| image:: https://img.shields.io/github/languages/top/python-formate/astatine
	:alt: GitHub top language

.. |commits-since| image:: https://img.shields.io/github/commits-since/python-formate/astatine/v0.3.3
	:target: https://github.com/python-formate/astatine/pulse
	:alt: GitHub commits since tagged version

.. |commits-latest| image:: https://img.shields.io/github/last-commit/python-formate/astatine
	:target: https://github.com/python-formate/astatine/commit/master
	:alt: GitHub last commit

.. |maintained| image:: https://img.shields.io/maintenance/yes/2023
	:alt: Maintenance

.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/astatine
	:target: https://pypi.org/project/astatine/
	:alt: PyPI - Downloads

.. end shields

Installation
--------------

.. start installation

``astatine`` can be installed from PyPI or Anaconda.

To install with ``pip``:

.. code-block:: bash

	$ python -m pip install astatine

To install with ``conda``:

	* First add the required channels

	.. code-block:: bash

		$ conda config --add channels https://conda.anaconda.org/conda-forge
		$ conda config --add channels https://conda.anaconda.org/domdfcoding

	* Then install

	.. code-block:: bash

		$ conda install astatine

.. end installation

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/python-formate/astatine",
    "name": "astatine",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.6",
    "maintainer_email": "",
    "keywords": "ast",
    "author": "",
    "author_email": "Dominic Davis-Foster <dominic@davis-foster.co.uk>",
    "download_url": "https://files.pythonhosted.org/packages/a4/8a/544e058e5ed049cffd67006944872216c48e86b9004ceeefbb33a9759d3d/astatine-0.3.3.tar.gz",
    "platform": "Windows",
    "description": "\n#########\nastatine\n#########\n\n.. start short_desc\n\n**Some handy helper functions for Python's AST module.**\n\n.. end short_desc\n\n\n`Astatine <https://en.wikipedia.org/wiki/Astatine>`_ is a chemical element with the symbol At and atomic number 85.\nIts name comes from the Greek astatos (\u1f04\u03c3\u03c4\u03b1\u03c4\u03bf\u03c2), meaning \"unstable\".\nIt's a fitting name for Python's ``ast`` module, which has been unstable between releases.\n\n\n.. start shields\n\n.. list-table::\n\t:stub-columns: 1\n\t:widths: 10 90\n\n\t* - Docs\n\t  - |docs| |docs_check|\n\t* - Tests\n\t  - |actions_linux| |actions_windows| |actions_macos| |coveralls|\n\t* - PyPI\n\t  - |pypi-version| |supported-versions| |supported-implementations| |wheel|\n\t* - Anaconda\n\t  - |conda-version| |conda-platform|\n\t* - Activity\n\t  - |commits-latest| |commits-since| |maintained| |pypi-downloads|\n\t* - QA\n\t  - |codefactor| |actions_flake8| |actions_mypy|\n\t* - Other\n\t  - |license| |language| |requires|\n\n.. |docs| image:: https://img.shields.io/readthedocs/astatine/latest?logo=read-the-docs\n\t:target: https://astatine.readthedocs.io/en/latest\n\t:alt: Documentation Build Status\n\n.. |docs_check| image:: https://github.com/python-formate/astatine/workflows/Docs%20Check/badge.svg\n\t:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22Docs+Check%22\n\t:alt: Docs Check Status\n\n.. |actions_linux| image:: https://github.com/python-formate/astatine/workflows/Linux/badge.svg\n\t:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22Linux%22\n\t:alt: Linux Test Status\n\n.. |actions_windows| image:: https://github.com/python-formate/astatine/workflows/Windows/badge.svg\n\t:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22Windows%22\n\t:alt: Windows Test Status\n\n.. |actions_macos| image:: https://github.com/python-formate/astatine/workflows/macOS/badge.svg\n\t:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22macOS%22\n\t:alt: macOS Test Status\n\n.. |actions_flake8| image:: https://github.com/python-formate/astatine/workflows/Flake8/badge.svg\n\t:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22Flake8%22\n\t:alt: Flake8 Status\n\n.. |actions_mypy| image:: https://github.com/python-formate/astatine/workflows/mypy/badge.svg\n\t:target: https://github.com/python-formate/astatine/actions?query=workflow%3A%22mypy%22\n\t:alt: mypy status\n\n.. |requires| image:: https://dependency-dash.repo-helper.uk/github/python-formate/astatine/badge.svg\n\t:target: https://dependency-dash.repo-helper.uk/github/python-formate/astatine/\n\t:alt: Requirements Status\n\n.. |coveralls| image:: https://img.shields.io/coveralls/github/python-formate/astatine/master?logo=coveralls\n\t:target: https://coveralls.io/github/python-formate/astatine?branch=master\n\t:alt: Coverage\n\n.. |codefactor| image:: https://img.shields.io/codefactor/grade/github/python-formate/astatine?logo=codefactor\n\t:target: https://www.codefactor.io/repository/github/python-formate/astatine\n\t:alt: CodeFactor Grade\n\n.. |pypi-version| image:: https://img.shields.io/pypi/v/astatine\n\t:target: https://pypi.org/project/astatine/\n\t:alt: PyPI - Package Version\n\n.. |supported-versions| image:: https://img.shields.io/pypi/pyversions/astatine?logo=python&logoColor=white\n\t:target: https://pypi.org/project/astatine/\n\t:alt: PyPI - Supported Python Versions\n\n.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/astatine\n\t:target: https://pypi.org/project/astatine/\n\t:alt: PyPI - Supported Implementations\n\n.. |wheel| image:: https://img.shields.io/pypi/wheel/astatine\n\t:target: https://pypi.org/project/astatine/\n\t:alt: PyPI - Wheel\n\n.. |conda-version| image:: https://img.shields.io/conda/v/domdfcoding/astatine?logo=anaconda\n\t:target: https://anaconda.org/domdfcoding/astatine\n\t:alt: Conda - Package Version\n\n.. |conda-platform| image:: https://img.shields.io/conda/pn/domdfcoding/astatine?label=conda%7Cplatform\n\t:target: https://anaconda.org/domdfcoding/astatine\n\t:alt: Conda - Platform\n\n.. |license| image:: https://img.shields.io/github/license/python-formate/astatine\n\t:target: https://github.com/python-formate/astatine/blob/master/LICENSE\n\t:alt: License\n\n.. |language| image:: https://img.shields.io/github/languages/top/python-formate/astatine\n\t:alt: GitHub top language\n\n.. |commits-since| image:: https://img.shields.io/github/commits-since/python-formate/astatine/v0.3.3\n\t:target: https://github.com/python-formate/astatine/pulse\n\t:alt: GitHub commits since tagged version\n\n.. |commits-latest| image:: https://img.shields.io/github/last-commit/python-formate/astatine\n\t:target: https://github.com/python-formate/astatine/commit/master\n\t:alt: GitHub last commit\n\n.. |maintained| image:: https://img.shields.io/maintenance/yes/2023\n\t:alt: Maintenance\n\n.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/astatine\n\t:target: https://pypi.org/project/astatine/\n\t:alt: PyPI - Downloads\n\n.. end shields\n\nInstallation\n--------------\n\n.. start installation\n\n``astatine`` can be installed from PyPI or Anaconda.\n\nTo install with ``pip``:\n\n.. code-block:: bash\n\n\t$ python -m pip install astatine\n\nTo install with ``conda``:\n\n\t* First add the required channels\n\n\t.. code-block:: bash\n\n\t\t$ conda config --add channels https://conda.anaconda.org/conda-forge\n\t\t$ conda config --add channels https://conda.anaconda.org/domdfcoding\n\n\t* Then install\n\n\t.. code-block:: bash\n\n\t\t$ conda install astatine\n\n.. end installation\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Some handy helper functions for Python's AST module.",
    "version": "0.3.3",
    "project_urls": {
        "Documentation": "https://astatine.readthedocs.io/en/latest",
        "Homepage": "https://github.com/python-formate/astatine",
        "Issue Tracker": "https://github.com/python-formate/astatine/issues",
        "Source Code": "https://github.com/python-formate/astatine"
    },
    "split_keywords": [
        "ast"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e7258e5d9b9965f55a1b652c7ea73dceedf4f8cea08d1310aa2d4102202acb8",
                "md5": "ca48c9263d33d3d818e23f5f4a82854e",
                "sha256": "6d8c914f01fbea252cb8f31563f2e766a9ab03c02b9bcc37d18f7d9138828401"
            },
            "downloads": -1,
            "filename": "astatine-0.3.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "ca48c9263d33d3d818e23f5f4a82854e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.6",
            "size": 17376,
            "upload_time": "2023-08-15T10:38:26",
            "upload_time_iso_8601": "2023-08-15T10:38:26.735913Z",
            "url": "https://files.pythonhosted.org/packages/1e/72/58e5d9b9965f55a1b652c7ea73dceedf4f8cea08d1310aa2d4102202acb8/astatine-0.3.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a48a544e058e5ed049cffd67006944872216c48e86b9004ceeefbb33a9759d3d",
                "md5": "459e36973303f67f4f658c624146e467",
                "sha256": "0c58a7844b5890ff16da07dbfeb187341d8324cb4378940f89d795cbebebce08"
            },
            "downloads": -1,
            "filename": "astatine-0.3.3.tar.gz",
            "has_sig": false,
            "md5_digest": "459e36973303f67f4f658c624146e467",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.6",
            "size": 6687,
            "upload_time": "2023-08-15T10:38:28",
            "upload_time_iso_8601": "2023-08-15T10:38:28.151499Z",
            "url": "https://files.pythonhosted.org/packages/a4/8a/544e058e5ed049cffd67006944872216c48e86b9004ceeefbb33a9759d3d/astatine-0.3.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-15 10:38:28",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "python-formate",
    "github_project": "astatine",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "tox": true,
    "lcname": "astatine"
}
        
Elapsed time: 0.15920s