-
Notifications
You must be signed in to change notification settings - Fork 0
getting started
Infinity Science Works edited this page Jun 27, 2022
·
8 revisions

pysvl is currently only on pypi
use command
pip install pysvl
to install pysvl ( see pypi )
pysvl has three submodules, namely
-
this module is loaded when you import pysvl
this is the main moduleimport pysvl
-
this module is loaded when you import pysvl.realtime
this module is used for fast calculationsimport pysvl.realtime
-
this module is loaded when you import pysvl.vehicle
this module has preset flight data and other data related to rockets and space vehiclesimport pysvl.vehicle
to know version of your pysvl library, run this code
import pysvl
print(pysvl.__version__)
or use to get version as string
pysvl.__version__
to update your pysvl library, run this command
pip install pysvl --upgrade