1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
.. _autodoc:
API Reference (buskill-app)
===========================
This section documents the main BusKill app
Source Code
-----------
This section documents the source code files and their classes/function using ``autodoc``.
You can find the sourcecode that this document refers to in the ``src/`` directory on our `github-app repo on github.com <https://github.com/BusKill/buskill-app/tree/master/src>`_
.. contents::
main.py
-------
.. automodule:: main
:members:
:undoc-members:
buskill.py
----------
.. automodule:: packages.buskill
:members:
:undoc-members:
buskill_cli.py
--------------
.. automodule:: buskill_cli
:members:
:undoc-members:
buskill_gui.py
--------------
.. automodule:: buskill_gui
:members:
:undoc-members:
buskill.kv
----------
This is our main `kivy-specific design language <https://kivy.org/doc/stable/gettingstarted/rules.html>`_ file that describes how to render the GUI, separating code from design.
|