Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
junzis
GitHub Repository: junzis/openap
Path: blob/master/test/test_prop.py
532 views
1
from pprint import pprint
2
from openap import prop
3
4
ac = prop.aircraft("A320")
5
6
pprint(ac)
7
8
eng = prop.engine("CFM56-5B4")
9
10
pprint(eng)
11
12