Metadata-Version: 2.1
Name: tessng
Version: 4.0.6
Summary: TESS NG 4.0 Secondary Development (Python Version)
Home-page: http://jidatraffic.com:82/
Author: Jida Transportation
Author-email: 948117072@qq.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Education :: Computer Aided Instruction (CAI)
Classifier: Topic :: Games/Entertainment :: Simulation
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6, !=3.7.*, <3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: shiboken2
Requires-Dist: PySide2

## 1. 功能 Function
TessNg使用户可以通过编写 Python 代码来与国产微观交通仿真软件TESS NG 进行交互，从而实现仿真软件的能力扩张与功能定制。**使用TessNg 包无需下载TESS NG 软件**。

TessNg enables users to interact with the Chinese micro traffic simulation software TESS NG by writing Python code, thereby expanding the capabilities and customizing the functions of the simulation software. **TessNg package does not require downloading TESS NG software**.

## 2. 版本 Version
Python的版本要求为**3.6**或**3.8**，运行环境为Windows，TESS NG 的版本为**V4**。

The version requirement for Python is **3.6** or **3.8**, the running environment is Windows, and the version for TESS NG is **V4**.

## 3. 安装 Install
请使用以下命令安装 tessng 包：

You can use the following command to install the tessng package

```bash
pip install tessng
```

## 4. 使用 Usage
可以使用以下代码生成TESS NG 基础案例的代码文件：

You can generate a code file for a TESS NG basic case using the following code:

```python
import tessng
tessng.get_demo_files()
```

执行该代码将生成6个文件：main.py、MyPlugin.py、MyGUI.py、MyNet.py 、MySimulator.py和Tessng.pyi，运行main.py，并使用 key 激活软件（第一次运行时），即可启动TESS NG。

Executing this code will generate 6 files: main.py, MyPlugin.py, MyGUI.py, MyNet.py, MySimulator.py and Tessng.pyi. Run main.py and activate the software with the key (first run) to start TESS NG.

更多使用说明请参考济达交通官方网站：http://jidatraffic.com:82/

For more usage instructions, please refer to the official website of Jida Transportation: http://jidatraffic.com:82/.
