Skip to content

getting started

Infinity Science Works edited this page Jun 27, 2022 · 8 revisions

Getting started with pysvl

Install pysvl

pysvl is currently only on pypi
use command

pip install pysvl

to install pysvl ( see pypi )


brief

pysvl has three submodules, namely

  1. main

    this module is loaded when you import pysvl
    this is the main module

    import pysvl

  2. realtime

    this module is loaded when you import pysvl.realtime
    this module is used for fast calculations

    import pysvl.realtime

  3. vehicle

    this module is loaded when you import pysvl.vehicle
    this module has preset flight data and other data related to rockets and space vehicles

    import pysvl.vehicle


getting version

to know version of your pysvl library, run this code

import pysvl
print(pysvl.__version__)

or use to get version as string

pysvl.__version__


updating pysvl

to update your pysvl library, run this command

pip install pysvl --upgrade

Clone this wiki locally