Skip to content

Latest commit

 

History

History
57 lines (46 loc) · 3.16 KB

CONTRIBUTING.md

File metadata and controls

57 lines (46 loc) · 3.16 KB

Contributing

Hello 👋 and thank you for contributing! 🎉

Before you contribute, please take a minute to review the contribution process based on what you want to do.

I got an error or I have a question

Great! We are happy to help. Before you ask your question, please check if your question can be answered from the following 5 steps:

If you did not get your question answered from these 5 steps, then please open a new issue and ask your question! When you explain your problem, please:

  • Enable the tracing feature and include the entire debug trace of your connection process in the issue
  • Provide a minimum reproducible example program to allow other users to recreate and demonstrate the error
  • Add an explanation for what you are trying to accomplish. If you can provide your code (or example code) in the issue, this helps a lot!

I have a suggestion or idea

Great! Please make a new issue an explain your idea, but first do a quick search in old existing issues to see if someone already proposed the same idea.

I want to contribute code

Great! In your pull request (PR), please explain:

  1. What is the problem with the current code
  2. How your changes make it better
  3. Provide some example code that can allow someone else to recreate the problem with the current code and test your solution (if possible to recreate).

I want to contribute documentation

Great! To edit the project documentation, it is recommended that you install Sphinx and build the updated documentation locally before submitting your edits. The Sphinx dependencies can be installed with pip install websocket-client[docs]. To build a new version of the documentation, change directories (or cd) to the docs/ directory and run make clean html. Any build warnings or errors will be displayed in your terminal, and the new documentation will then be available in the docs/build/html/ directory. You may also find the Sphinx documentation style guide useful when editing reStructuredText (reST), which is quite different from Markdown.