vyper


Namevyper JSON
Version 0.3.10 PyPI version JSON
download
home_pagehttps://github.com/vyperlang/vyper
SummaryVyper: the Pythonic Programming Language for the EVM
upload_time2023-10-04 17:17:18
maintainer
docs_urlNone
authorVyper Team
requires_python>=3.10,<4
licenseApache License 2.0
keywords ethereum evm smart contract language
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            **Vyper compiler security audit competition starts 14th September with $150k worth of bounties.** [See the competition on CodeHawks](https://www.codehawks.com/contests/cll5rujmw0001js08menkj7hc) and find [more details in this blog post](https://mirror.xyz/0xBA41A04A14aeaEec79e2D694B21ba5Ab610982f1/WTZ3l3MLhTz9P4avq6JqipN5d4HJNiUY-d8zT0pfmXg).

<img src="https://raw.githubusercontent.com/vyperlang/vyper/master/logo/vyper-logo-transparent.svg?sanitize=true" alt="" width="110">

[![Build Status](https://github.com/vyperlang/vyper/workflows/Test/badge.svg)](https://github.com/vyperlang/vyper/actions/workflows/test.yml)
[![Documentation Status](https://readthedocs.org/projects/vyper/badge/?version=latest)](http://vyper.readthedocs.io/en/latest/?badge=latest "ReadTheDocs")
[![Discord](https://img.shields.io/discord/969926564286459934.svg?label=%23vyper)](https://discord.gg/6tw7PTM7C2)

[![PyPI](https://badge.fury.io/py/vyper.svg)](https://pypi.org/project/vyper "PyPI")
[![Docker](https://img.shields.io/docker/cloud/build/vyperlang/vyper)](https://hub.docker.com/r/vyperlang/vyper "DockerHub")

[![Coverage Status](https://codecov.io/gh/vyperlang/vyper/branch/master/graph/badge.svg)](https://codecov.io/gh/vyperlang/vyper "Codecov")
[![Language grade: Python](https://github.com/vyperlang/vyper/workflows/CodeQL/badge.svg)](https://github.com/vyperlang/vyper/actions/workflows/codeql.yml)

# Getting Started
See [Installing Vyper](http://vyper.readthedocs.io/en/latest/installing-vyper.html) to install vyper.
See [Tools and Resources](https://github.com/vyperlang/vyper/wiki/Vyper-tools-and-resources) for an additional list of framework and tools with vyper support.
See [Documentation](http://vyper.readthedocs.io/en/latest/index.html) for the documentation and overall design goals of the Vyper language.

See [Learn.Vyperlang.org](https://learn.vyperlang.org/) for **learning Vyper by building a Pokémon game**.
See [try.vyperlang.org](https://try.vyperlang.org/) to use Vyper in a hosted jupyter environment!

**Note: Vyper is beta software, use with care**

# Installation
See the [Vyper documentation](https://vyper.readthedocs.io/en/latest/installing-vyper.html)
for build instructions.

# Compiling a contract
To compile a contract, use:
```bash
vyper your_file_name.vy
```
***generate bytecode***

    vyper -f bytecode file-name.vy > file-name.bin

***generate abi***

    vyper -f abi file-name.vy > file-name.abi

There is also an [online compiler](https://vyper.online/) available you can use to experiment with
the language and compile to ``bytecode`` and/or ``IR``.

**Note: While the vyper version of the online compiler is updated on a regular basis it might
be a bit behind the latest version found in the master branch of this repository.**

## Testing (using pytest)

(Complete [installation steps](https://vyper.readthedocs.io/en/latest/installing-vyper.html) first.)

```bash
make dev-init
python setup.py test
```

# Contributing
* See Issues tab, and feel free to submit your own issues
* Add PRs if you discover a solution to an existing issue
* For further discussions and questions, post in [Discussions](https://github.com/vyperlang/vyper/discussions) or talk to us on [Discord](https://discord.gg/6tw7PTM7C2)
* For more information, see [Contributing](http://vyper.readthedocs.io/en/latest/contributing.html)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/vyperlang/vyper",
    "name": "vyper",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.10,<4",
    "maintainer_email": "",
    "keywords": "ethereum evm smart contract language",
    "author": "Vyper Team",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/5b/1b/506e5313b0b39b78f64b1421c2db1da3b7bb5ae95f1939d88327a6670b3f/vyper-0.3.10.tar.gz",
    "platform": null,
    "description": "**Vyper compiler security audit competition starts 14th September with $150k worth of bounties.** [See the competition on CodeHawks](https://www.codehawks.com/contests/cll5rujmw0001js08menkj7hc) and find [more details in this blog post](https://mirror.xyz/0xBA41A04A14aeaEec79e2D694B21ba5Ab610982f1/WTZ3l3MLhTz9P4avq6JqipN5d4HJNiUY-d8zT0pfmXg).\n\n<img src=\"https://raw.githubusercontent.com/vyperlang/vyper/master/logo/vyper-logo-transparent.svg?sanitize=true\" alt=\"\" width=\"110\">\n\n[![Build Status](https://github.com/vyperlang/vyper/workflows/Test/badge.svg)](https://github.com/vyperlang/vyper/actions/workflows/test.yml)\n[![Documentation Status](https://readthedocs.org/projects/vyper/badge/?version=latest)](http://vyper.readthedocs.io/en/latest/?badge=latest \"ReadTheDocs\")\n[![Discord](https://img.shields.io/discord/969926564286459934.svg?label=%23vyper)](https://discord.gg/6tw7PTM7C2)\n\n[![PyPI](https://badge.fury.io/py/vyper.svg)](https://pypi.org/project/vyper \"PyPI\")\n[![Docker](https://img.shields.io/docker/cloud/build/vyperlang/vyper)](https://hub.docker.com/r/vyperlang/vyper \"DockerHub\")\n\n[![Coverage Status](https://codecov.io/gh/vyperlang/vyper/branch/master/graph/badge.svg)](https://codecov.io/gh/vyperlang/vyper \"Codecov\")\n[![Language grade: Python](https://github.com/vyperlang/vyper/workflows/CodeQL/badge.svg)](https://github.com/vyperlang/vyper/actions/workflows/codeql.yml)\n\n# Getting Started\nSee [Installing Vyper](http://vyper.readthedocs.io/en/latest/installing-vyper.html) to install vyper.\nSee [Tools and Resources](https://github.com/vyperlang/vyper/wiki/Vyper-tools-and-resources) for an additional list of framework and tools with vyper support.\nSee [Documentation](http://vyper.readthedocs.io/en/latest/index.html) for the documentation and overall design goals of the Vyper language.\n\nSee [Learn.Vyperlang.org](https://learn.vyperlang.org/) for **learning Vyper by building a Pok\u00e9mon game**.\nSee [try.vyperlang.org](https://try.vyperlang.org/) to use Vyper in a hosted jupyter environment!\n\n**Note: Vyper is beta software, use with care**\n\n# Installation\nSee the [Vyper documentation](https://vyper.readthedocs.io/en/latest/installing-vyper.html)\nfor build instructions.\n\n# Compiling a contract\nTo compile a contract, use:\n```bash\nvyper your_file_name.vy\n```\n***generate bytecode***\n\n    vyper -f bytecode file-name.vy > file-name.bin\n\n***generate abi***\n\n    vyper -f abi file-name.vy > file-name.abi\n\nThere is also an [online compiler](https://vyper.online/) available you can use to experiment with\nthe language and compile to ``bytecode`` and/or ``IR``.\n\n**Note: While the vyper version of the online compiler is updated on a regular basis it might\nbe a bit behind the latest version found in the master branch of this repository.**\n\n## Testing (using pytest)\n\n(Complete [installation steps](https://vyper.readthedocs.io/en/latest/installing-vyper.html) first.)\n\n```bash\nmake dev-init\npython setup.py test\n```\n\n# Contributing\n* See Issues tab, and feel free to submit your own issues\n* Add PRs if you discover a solution to an existing issue\n* For further discussions and questions, post in [Discussions](https://github.com/vyperlang/vyper/discussions) or talk to us on [Discord](https://discord.gg/6tw7PTM7C2)\n* For more information, see [Contributing](http://vyper.readthedocs.io/en/latest/contributing.html)\n",
    "bugtrack_url": null,
    "license": "Apache License 2.0",
    "summary": "Vyper: the Pythonic Programming Language for the EVM",
    "version": "0.3.10",
    "project_urls": {
        "Homepage": "https://github.com/vyperlang/vyper"
    },
    "split_keywords": [
        "ethereum",
        "evm",
        "smart",
        "contract",
        "language"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1a7b4976166c71b4a782a9995d5e595c76855845696e1d50de7b8c87db52eff0",
                "md5": "0f2b981390dc9258ffc3a3a768f1739e",
                "sha256": "05636302341bf89602b19f749fcabc8d184a265d8eea4a45c20b3259780353b0"
            },
            "downloads": -1,
            "filename": "vyper-0.3.10-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0f2b981390dc9258ffc3a3a768f1739e",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10,<4",
            "size": 262282,
            "upload_time": "2023-10-04T17:17:16",
            "upload_time_iso_8601": "2023-10-04T17:17:16.706107Z",
            "url": "https://files.pythonhosted.org/packages/1a/7b/4976166c71b4a782a9995d5e595c76855845696e1d50de7b8c87db52eff0/vyper-0.3.10-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b1b506e5313b0b39b78f64b1421c2db1da3b7bb5ae95f1939d88327a6670b3f",
                "md5": "1e98e2f756dc858c5d658c8d9229566e",
                "sha256": "8dc1f501caab417fb0ce9c68a6944587f0147ec7cc7d3889cf3a45c19466e489"
            },
            "downloads": -1,
            "filename": "vyper-0.3.10.tar.gz",
            "has_sig": false,
            "md5_digest": "1e98e2f756dc858c5d658c8d9229566e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10,<4",
            "size": 1223673,
            "upload_time": "2023-10-04T17:17:18",
            "upload_time_iso_8601": "2023-10-04T17:17:18.263942Z",
            "url": "https://files.pythonhosted.org/packages/5b/1b/506e5313b0b39b78f64b1421c2db1da3b7bb5ae95f1939d88327a6670b3f/vyper-0.3.10.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-04 17:17:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "vyperlang",
    "github_project": "vyper",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "vyper"
}
        
Elapsed time: 0.23655s