Skip to main content

Python wrapper around the solc binary

Project description

# py-solc

[![Build Status](https://travis-ci.org/pipermerriam/py-solc.png)](https://travis-ci.org/pipermerriam/py-solc)
[![PyPi version](https://pypip.in/v/py-solc/badge.png)](https://pypi-hypernode.com/pypi/py-solc)
[![PyPi downloads](https://pypip.in/d/py-solc/badge.png)](https://pypi-hypernode.com/pypi/py-solc)


Python wrapper around the `solc` Solidity compiler.


# Dependency

This library requires the `solc` executable to be present.

solc 0.3.5 or newer is required. [solc installation instructions](http://solidity.readthedocs.io/en/latest/installing-solidity.html)


# Quickstart

Installation

```sh
pip install py-solc
```

```python
>>> from solc import compile_source, compile_files, link_code
>>> compile_source("contract Foo { function Foo() {} }")
{
'Foo': {
'abi': [{'inputs': [], 'type': 'constructor'}],
'code': '0x60606040525b5b600a8060126000396000f360606040526008565b00',
'code_runtime': '0x60606040526008565b00',
'source': None,
'meta': {
'compilerVersion': '0.3.5-9da08ac3',
'language': 'Solidity',
'languageVersion': '0',
},
},
}
>>> compile_files(["/path/to/Foo.sol", "/path/to/Bar.sol"])
{
'Foo': {
'abi': [{'inputs': [], 'type': 'constructor'}],
'code': '0x60606040525b5b600a8060126000396000f360606040526008565b00',
'code_runtime': '0x60606040526008565b00',
'source': None,
'meta': {
'compilerVersion': '0.3.5-9da08ac3',
'language': 'Solidity',
'languageVersion': '0',
},
},
'Bar': {
'abi': [{'inputs': [], 'type': 'constructor'}],
'code': '0x60606040525b5b600a8060126000396000f360606040526008565b00',
'code_runtime': '0x60606040526008565b00',
'source': None,
'meta': {
'compilerVersion': '0.3.5-9da08ac3',
'language': 'Solidity',
'languageVersion': '0',
},
},
}
>>> unlinked_code = "606060405260768060106000396000f3606060405260e060020a6000350463e7f09e058114601a575b005b60187f0c55699c00000000000000000000000000000000000000000000000000000000606090815273__TestA_________________________________90630c55699c906064906000906004818660325a03f41560025750505056"
>>> link_code(unlinked_code, {'TestA': '0xd3cda913deb6f67967b99d67acdfa1712c293601'})
... "606060405260768060106000396000f3606060405260e060020a6000350463e7f09e058114601a575b005b60187f0c55699c00000000000000000000000000000000000000000000000000000000606090815273d3cda913deb6f67967b99d67acdfa1712c29360190630c55699c906064906000906004818660325a03f41560025750505056"
```

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

py-solc-0.4.0.tar.gz (6.0 kB view details)

Uploaded Source

Built Distributions

py_solc-0.4.0-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

py-solc-0.4.0.macosx-10.11-x86_64.tar.gz (4.9 kB view details)

Uploaded Source

File details

Details for the file py-solc-0.4.0.tar.gz.

File metadata

  • Download URL: py-solc-0.4.0.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for py-solc-0.4.0.tar.gz
Algorithm Hash digest
SHA256 fea47556651bc7dbc8fd405a2bac928072080a1f3b05a568cac066925108c50b
MD5 fdc5485c9c270209062a96b241d475dc
BLAKE2b-256 ad3940f59cd88c131ad99bd027be1dd349d909d9327ef9516383feaf7911e533

See more details on using hashes here.

File details

Details for the file py_solc-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for py_solc-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7cc84abab4125b5fcf786b62cc1eba336544da1108355fb7bbd7db1640142d9a
MD5 11e6b66ed7bb4f1184bd31d8acada460
BLAKE2b-256 1ee04b18321443f47368d185956cf32e41e8f2488aaa52b7933e4688f55136f9

See more details on using hashes here.

File details

Details for the file py-solc-0.4.0.macosx-10.11-x86_64.tar.gz.

File metadata

File hashes

Hashes for py-solc-0.4.0.macosx-10.11-x86_64.tar.gz
Algorithm Hash digest
SHA256 d6b1351f60375887362105c97f51935b1d2965e5a279623051e274127d735de8
MD5 1f9ed6951d4a6d2fdeebd9af41e59a53
BLAKE2b-256 6ffef531368c00a6bdcf61f0c0d0d28d3255d1805766a67aef9dd19f89d75d1b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page