Metadata-Version: 2.0
Name: django-rholang-editor
Version: 0.1.1
Summary: django rholang editor app based on ace editor
Home-page: https://github.com/zsluedem/django-rholang-editor
Author: zsluedem
Author-email: zsluedem06@gmail.com
License: Simplified BSD
Description-Content-Type: UNKNOWN
Keywords: rholang
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Requires-Dist: Django
Requires-Dist: django-js-asset (==1.0.0)

# django_rholang_editor

## Introduction

[Rholang](https://developer.rchain.coop/) is a new language for writing smart contracts that run on the RChain virtual machine.
You can find more in the [Rholang tutorial](https://developer.rchain.coop/tutorial) 

##Usage

```python
from django.forms import Form
from django_rholang_editor.fields import RholangTextFormField

class EditorForm(Form):
    rho = RholangTextFormField()
```


## Install

1.install using pip
```bash
pip install django-rholang-editor
```

2.Update `INSTALLED_APPS`:
```python
INSTALLED_APPS = (
    # ...
    'django_ace',
)
```


