Skip to main content
jrc 简介
=======

一个Python 语言开发的,基于
`textX <https://github.com/igordejanovic/textX>`__ 和
`jinja <https://github.com/pallets/jinja>`__ 的 DSL 编译器

Installation
============

.. code:: python

pip install jrc


目录结构说明
============

.. code::

├── demo jrc 插件示例 demo 目录
│   └── pipeline pipeline demo 目录
│   ├── input 待编译DSL文件目录
│   ├── output 编译输出的文件目录
│   ├── parser DSL 语法解析文件目录
│   └── template DSL 模板文件目录
├── doc jrc 文档目录
├── jrc jrc 引擎所在的目录
├── requirements.txt jrc 项目依赖文件列表
├── setup.py setup 文件
├── LICENSE LICENSE 文件
├── MANIFEST.in MANIFEST 文件
├── README.md README 文件
└── test 单元测试目录

快速入门
============

新建文件夹,做为应用根目录

.. code::

mkdir zion_demo
cd zion_demo

创建应用描述文件

.. code::

appinfo.ini

编写配置文件

.. code::

[appinfo]
app_name = zion_demo # 应用名
app_version = 1.0.0 # 应用版本号
parser = python_tx # DSL 语法解析文件, 默认支持 'python_tx', 'json_tx', 'pipeline_tx', 可自定义,指定自己的tx文件路径
input_path = input # 待编译 DSL 文件存放路径
output_path = output # 编译后输出文件存放路径
output_prefix = JR_ # 编译后输出文件前缀
output_ext = html # 编译后输出文件后缀
template_path = template # 模板文件路径
extension = jrc:ZionExtension # 使用的扩展类,默认支持 'jrc:ZionExtension', 'jrc:JsonExtension', 'jrc:PipelineExtension', 可自定义,指定自己的扩展类, 格式 {module_name}:{class_name}

创建对应的文件夹

.. code::

mkdir input output template

创建模板文件

.. code::

...

创建 DSL 文件

.. code::

submit_demo.py

编写 DSL 文件

.. code::

from ..lib.textbox import *
from ..lib.submit import *

mer_id = Textbox()
mer_id.caption = "商户号"
mer_id.id = "mer_id"
mer_id.disabled = "true"

op_id = Textbox()
op_id.caption = "操作员号"
op_id.id = "login_operator_id"
op_id.disabled = "true"

test_info_1 = Textbox()
test_info_1.caption = "测试信息一"
test_info_1.id = "test_info_1"

test_info_2 = Textbox()
test_info_2.caption = "测试信息二"
test_info_2.id = "test_info_2"

test_info_3 = Textbox()
test_info_3.caption = "测试信息三"
test_info_3.id = "test_info_3"

btn_submit = Submit()
btn_submit.text = "提交信息"
btn_submit.callback = "showApiMsg"
btn_submit.func = "post"
btn_submit.url = "http://127.0.0.1/submit_demo"

编译 DSL 文件

.. code::

jrc compile

Download files

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

Source Distribution

jrc-0.1.6.tar.gz (10.4 kB view details)

Uploaded Source

File details

Details for the file jrc-0.1.6.tar.gz.

File metadata

  • Download URL: jrc-0.1.6.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.19.1 setuptools/40.4.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.3

File hashes

Hashes for jrc-0.1.6.tar.gz
Algorithm Hash digest
SHA256 5463138f12f54854b46ebff65a4c7b9fbc5f7893d1a524c08f36f1985979a518
MD5 77e69166fcc40162fc1394daf6c458a5
BLAKE2b-256 47cb97e9d46ed6a67c3c5b3e5702f2629123e9b0161a11ff7efb11390557d88c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page