Skip to content

Commit

Permalink
[Pythonclient/docs] Add Vehicle, Car client classes, more fixes
Browse files Browse the repository at this point in the history
List members without docstrings also, add viewcode extension
  • Loading branch information
rajat2004 committed Apr 15, 2020
1 parent 4c1c009 commit 2ad3215
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions PythonClient/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
'sphinx.ext.mathjax',
'sphinx.ext.coverage',
'sphinx.ext.napoleon',
'sphinx.ext.viewcode',
'sphinx_rtd_theme'
]

Expand Down
18 changes: 16 additions & 2 deletions PythonClient/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
airsim
=========================================
This page documents `airsim`_, the python package to be used for `Game of Drones: A NeurIPS 2019 Competition`_.
This page documents `airsim`_, the python package to be used for `Microsoft AirSim`_.

.. _`airsim`: https://pypi.org/project/airsim/
.. _`Microsoft AirSim`: https://github.com/microsoft/AirSim
Expand All @@ -16,13 +16,27 @@ This page documents `airsim`_, the python package to be used for `Game of Drones
* :ref:`genindex`
* :ref:`modindex`

.. autoclass:: airsim.client.VehicleClient
:members:
:undoc-members:
:show-inheritance:

.. autoclass:: airsim.client.MultirotorClient
:members:
:undoc-members:
:show-inheritance:

.. autoclass:: airsim.client.CarClient
:members:
:undoc-members:
:show-inheritance:

.. automodule:: airsim.types
:members:
:undoc-members:
:show-inheritance:

.. automodule:: airsim.utils
:members:
:members:
:undoc-members:
:show-inheritance:

0 comments on commit 2ad3215

Please sign in to comment.