Skip to content

Commit 85afcdf

Browse files
author
Gou Lingyun
committed
update readme for 1.0.12
1 parent cd248e9 commit 85afcdf

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,13 @@ pip install opsparser
2121
## Quick Start
2222

2323
```python
24-
import openseespy.opensees as ops
24+
import openseespy.opensees as old_ops
2525
from opsparser import OpenSeesParser
2626

2727
# first hook all commands before your opensees code
28-
parser = OpenSeesParser(ops)
28+
parser = OpenSeesParser(old_ops)
2929
parser.hook_all(debug = False) # Set debug = True to show parsing process
30+
ops = parser.enhance() # enhanced ops module with IDE hints
3031

3132
# your OpenSeesPy Code
3233
# ...

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "opsparser"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
description = "A lightweight, pure Python implementation of an OpenSeesPy command monitoring tool for capturing, recording, and analyzing OpenSees command execution processes. No third-party dependencies, compatible with all OpenSeesPy versions, with no impact on original performance. Provides flexible API interfaces, supporting custom data processing and event triggering mechanisms."
55
readme = "README.md"
66
requires-python = ">=3.12"

0 commit comments

Comments
 (0)