Metadata-Version: 2.1
Name: vfo
Version: 0.0.7
Summary: A package for visualization of OpenSees models.
Home-page: https://github.com/u-anurag/vfo
Author: anurag upadhyay
Author-email: iitg.anurag@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: matplotlib
Requires-Dist: pyvista

# vfo (Visualization For OpenSees)
Python Commands to visualize OpenSees models and components.

Install this package with,
```bash
pip install vfo
```

Upgrade the package with,
```bash
python -m pip install --upgrade vfo
```

To use this package, import the commands from **vfo** instead of *openseespy.postprocessing*. For example,

```bash
# import openseespy.postprocessing.Get_Rendering as opsplt
import vfo.vfo as vfo
```

Now, use all the openseespy visualization commands ([Here](https://openseespydoc.readthedocs.io/en/latest/src/plotcmds.html)). For example,

```bash
vfo.plot_model()
```

# USER MANUAL
Check out the ([Wiki](https://github.com/u-anurag/vfo/wiki)) for all the commands available in openseespyvis.


