Metadata-Version: 2.1
Name: pysimlink
Version: 1.0.0
Summary: Compile, run, and interact with Simulink models natively in Python!
Home-page: https://github.com/lharri73/PySimlink
Author: Landon Harris
Author-email: lharri73@vols.utk.edu
License: GPLv3
Project-URL: Documentation, https://lharri73.github.io/PySimlink/
Project-URL: Source, https://github.com/lharri73/PySimlink
Keywords: Simulink
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Code Generators
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE.txt

# PySimlink

**PySimlink** is a python package that automatically compiles Simulink codegen files 
into a simple interface that you can interact with in Python!

With this package, you can:
- Interact with the internals of your Simulink model
- Run the model in "accelerator mode"
- Send and receive data in the form of numpy arrays
- Run multiple instances of the same model

All without requiring a MATLAB runtime on the target machine! No C/C++ programming required!

To get started, you either need a copy of the generated model you want to simulate or, to generate
the code yourself, you need the Simulink Coder. There are some limitations, namely that your model *must* use a fixed step solver 
(a requirement of the grt target). 

Check out the [docs](https://lharri73.github.io/PySimlink/src/quickstart.html) to get started! 

