Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/robotpy/pynetworktables
Pure python implementation of the FRC NetworkTables protocol
https://github.com/robotpy/pynetworktables
frc networktables python robotpy
Last synced: 2 months ago
JSON representation
Pure python implementation of the FRC NetworkTables protocol
- Host: GitHub
- URL: https://github.com/robotpy/pynetworktables
- Owner: robotpy
- License: other
- Created: 2013-01-18T18:43:28.000Z (almost 12 years ago)
- Default Branch: main
- Last Pushed: 2022-01-16T04:55:25.000Z (almost 3 years ago)
- Last Synced: 2024-05-13T01:21:25.783Z (7 months ago)
- Topics: frc, networktables, python, robotpy
- Language: Python
- Homepage:
- Size: 515 KB
- Stars: 60
- Watchers: 11
- Forks: 30
- Open Issues: 11
-
Metadata Files:
- Readme: README.rst
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-frc - pynetworktables - Port to allow access of NetworkTables in Python. (Repositories / Python)
README
RobotPy NetworkTables Project
=============================This is a pure python implementation of the NetworkTables protocol, derived
from the wpilib ntcore C++ implementation. In FRC, the NetworkTables protocol
is used to pass non-Driver Station data to and from the robot across the network.This implementation is intended to be compatible with python 3.5 and later.
All commits to the repository are automatically tested on all supported python
versions using github actions... note:: NetworkTables is a protocol used for robot communication in the
FIRST Robotics Competition, and can be used to talk to
SmartDashboard/SFX. It does not have any security, and should never
be used on untrusted networks... note:: If you require support for Python 2.7, use pynetworktables 2018.2.0
Documentation
-------------For usage, detailed installation information, and other notes, please see
our documentation at http://pynetworktables.readthedocs.ioDon't understand this NetworkTables thing? Check out our `basic overview of
NetworkTables `_.Installation
------------On the RoboRIO, you don't install this directly, but use the RobotPy installer
to install it on your RoboRIO, or it is installed by pip as part of the
pyfrc setup process.On something like a coprocessor, driver station, or laptop, make sure pip is
installed, connect to the internet, and install like so:::
pip install pynetworktables
Support
-------The RobotPy project has a mailing list that you can send emails to for
support: [email protected]. Keep in mind that the maintainers of
RobotPy projects are also members of FRC Teams and do this in their free
time.If you find a bug, please file a bug report using github
https://github.com/robotpy/pynetworktables/issues/newContributing new changes
------------------------RobotPy is an open project that all members of the FIRST community can
easily and quickly contribute to. If you find a bug, or have an idea that you
think others can use:1. `Fork this git repository `_ to your github account
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push -u origin my-new-feature`)
5. Create new Pull Request on githubAuthors & Contributors
======================* Dustin Spicuzza, FRC Team 1418/2423
* Peter Johnson, FRC Team 294