Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robotpy/robotpy-docs
Unified documentation for RobotPy
https://github.com/robotpy/robotpy-docs
documentation frc python robotpy sphinx
Last synced: about 2 months ago
JSON representation
Unified documentation for RobotPy
- Host: GitHub
- URL: https://github.com/robotpy/robotpy-docs
- Owner: robotpy
- License: apache-2.0
- Created: 2016-11-15T17:04:35.000Z (about 8 years ago)
- Default Branch: main
- Last Pushed: 2024-05-21T02:35:57.000Z (8 months ago)
- Last Synced: 2024-05-21T03:43:17.153Z (8 months ago)
- Topics: documentation, frc, python, robotpy, sphinx
- Language: Python
- Size: 306 KB
- Stars: 10
- Watchers: 7
- Forks: 25
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Support: support.rst
Awesome Lists containing this project
README
robotpy-docs
============As RobotPy has expanded into more and more projects and components, it has
become increasingly more difficult to introduce all of the pieces to new
users. This is the foundation for a unified documentation site for all
RobotPy projects, in hopes of reducing that confusion.Now that Python is an officialy supported language, this site still aims to unify the various API documentation for RobotPy projects. However, much of our documentation has been moved to the [WPILib documentation](https://docs.wpilib.org).
All of our documentation is built using Sphinx, and is hosted at
http://robotpy.readthedocs.io/You can learn more about how to write RST-formatted documentation
at http://sphinx-doc.org/rest.html#rst-primerBuild your own copy of the docs
===============================First, you need to install the software needed to build the docs. You can
install it by running the following command in the `docs` directory:pip3 install -r requirements.txt
If you are on OSX/Linux, you can build the docs using this command:
make html
On Windows, you need to run this:
make.bat html
Once this completes, you can open `_build/html/index.html` to view the
generated documentation!