python-telegram-bot/.github/CONTRIBUTING.rst

257 lines
9.8 KiB
ReStructuredText
Raw Normal View History

2016-05-24 02:54:36 +02:00
How To Contribute
=================
2016-05-24 02:54:36 +02:00
Every open source project lives from the generous help by contributors that sacrifice their time and ``python-telegram-bot`` is no different. To make participation as pleasant as possible, this project adheres to the `Code of Conduct`_ by the Python Software Foundation.
Setting things up
-----------------
2016-05-24 02:54:36 +02:00
1. Fork the ``python-telegram-bot`` repository to your GitHub account.
2. Clone your forked repository of ``python-telegram-bot`` to your computer:
.. code-block:: bash
2016-05-24 02:54:36 +02:00
$ git clone https://github.com/<your username>/python-telegram-bot --recursive
$ cd python-telegram-bot
2016-05-24 02:54:36 +02:00
3. Add a track to the original repository:
.. code-block:: bash
$ git remote add upstream https://github.com/python-telegram-bot/python-telegram-bot
2016-05-24 02:54:36 +02:00
4. Install dependencies:
.. code-block:: bash
$ pip install -r requirements.txt -r requirements-dev.txt
2016-05-24 02:54:36 +02:00
5. Install pre-commit hooks:
.. code-block:: bash
$ pre-commit install
2016-05-24 02:54:36 +02:00
Finding something to do
#######################
2016-05-24 02:54:36 +02:00
If you already know what you'd like to work on, you can skip this section.
If you have an idea for something to do, first check if it's already been filed on the `issue tracker`_. If so, add a comment to the issue saying you'd like to work on it, and we'll help you get started! Otherwise, please file a new issue and assign yourself to it.
Another great way to start contributing is by writing tests. Tests are really important because they help prevent developers from accidentally breaking existing code, allowing them to build cool things faster. If you're interested in helping out, let the development team know by posting to the `Telegram group`_ (use `@admins` to mention the maintainers), and we'll help you get started.
2016-05-24 02:54:36 +02:00
That being said, we want to mention that we are very hesitant about adding new requirements to our projects. If you intend to do this, please state this in an issue and get a verification from one of the maintainers.
2016-05-24 02:54:36 +02:00
Instructions for making a code change
#####################################
2016-05-24 02:54:36 +02:00
The central development branch is ``master``, which should be clean and ready for release at any time. In general, all changes should be done as feature branches based off of ``master``.
Here's how to make a one-off code change.
1. **Choose a descriptive branch name.** It should be lowercase, hyphen-separated, and a noun describing the change (so, ``fuzzy-rules``, but not ``implement-fuzzy-rules``). Also, it shouldn't start with ``hotfix`` or ``release``.
2. **Create a new branch with this name, starting from** ``master``. In other words, run:
.. code-block:: bash
2016-05-24 02:54:36 +02:00
$ git fetch upstream
$ git checkout master
$ git merge upstream/master
$ git checkout -b your-branch-name
2016-05-24 02:54:36 +02:00
3. **Make a commit to your feature branch**. Each commit should be self-contained and have a descriptive commit message that helps other developers understand why the changes were made.
- You can refer to relevant issues in the commit message by writing, e.g., "#105".
- Your code should adhere to the `PEP 8 Style Guide`_, with the exception that we have a maximum line length of 99.
2020-10-06 19:28:40 +02:00
- Provide static typing with signature annotations. The documentation of `MyPy`_ will be a good start, the cheat sheet is `here`_. We also have some custom type aliases in ``telegram.utils.helpers.typing``.
- Document your code. This project uses `sphinx`_ to generate static HTML docs. To build them, first make sure you have the required dependencies:
.. code-block:: bash
$ pip install -r docs/requirements-docs.txt
then run the following from the PTB root directory:
.. code-block:: bash
$ make -C docs html
or, if you don't have ``make`` available (e.g. on Windows):
.. code-block:: bash
$ sphinx-build docs/source docs/build/html
Once the process terminates, you can view the built documentation by opening ``docs/build/html/index.html`` with a browser.
2016-05-24 02:54:36 +02:00
- For consistency, please conform to `Google Python Style Guide`_ and `Google Python Style Docstrings`_.
2016-05-24 02:54:36 +02:00
- The following exceptions to the above (Google's) style guides applies:
- Documenting types of global variables and complex types of class members can be done using the Sphinx docstring convention.
- In addition, PTB uses the `Black`_ coder formatting. Plugins for Black exist for some `popular editors`_. You can use those instead of manually formatting everything.
2016-05-24 02:54:36 +02:00
- Please ensure that the code you write is well-tested.
- Dont break backward compatibility.
- Add yourself to the AUTHORS.rst_ file in an alphabetical fashion.
- Before making a commit ensure that all automated tests still pass:
.. code-block::
$ make test
2016-05-24 02:54:36 +02:00
If you don't have ``make``, do:
.. code-block::
$ pytest -v
To run ``test_official`` (particularly useful if you made API changes), run
.. code-block::
$ export TEST_OFFICIAL=true
prior to running the tests.
2016-05-24 02:54:36 +02:00
- To actually make the commit (this will trigger tests for yapf, lint and pep8 automatically):
.. code-block:: bash
$ git add your-file-changed.py
- yapf may change code formatting, make sure to re-add them to your commit.
2016-05-24 02:54:36 +02:00
.. code-block:: bash
2016-05-24 02:54:36 +02:00
$ git commit -a -m "your-commit-message-here"
2016-05-24 02:54:36 +02:00
- Finally, push it to your GitHub fork, run:
.. code-block:: bash
$ git push origin your-branch-name
2016-05-24 02:54:36 +02:00
4. **When your feature is ready to merge, create a pull request.**
- Go to your fork on GitHub, select your branch from the dropdown menu, and click "New pull request".
- Add a descriptive comment explaining the purpose of the branch (e.g. "Add the new API feature to create inline bot queries."). This will tell the reviewer what the purpose of the branch is.
- Click "Create pull request". An admin will assign a reviewer to your commit.
5. **Address review comments until all reviewers give LGTM ('looks good to me').**
- When your reviewer has reviewed the code, you'll get an email. You'll need to respond in two ways:
- Make a new commit addressing the comments you agree with, and push it to the same branch. Ideally, the commit message would explain what the commit does (e.g. "Fix lint error"), but if there are lots of disparate review comments, it's fine to refer to the original commit message and add something like "(address review comments)".
- In addition, please reply to each comment. Each reply should be either "Done" or a response explaining why the corresponding suggestion wasn't implemented. All comments must be resolved before LGTM can be given.
- Resolve any merge conflicts that arise. To resolve conflicts between 'your-branch-name' (in your fork) and 'master' (in the ``python-telegram-bot`` repository), run:
.. code-block:: bash
2016-05-24 02:54:36 +02:00
$ git checkout your-branch-name
$ git fetch upstream
$ git merge upstream/master
$ ...[fix the conflicts]...
$ ...[make sure the tests pass before committing]...
$ git commit -a
$ git push origin your-branch-name
2016-05-24 02:54:36 +02:00
- If after merging you see local modified files in ``telegram/vendor/`` directory, that you didn't actually touch, that means you need to update submodules with this command:
.. code-block:: bash
$ git submodule update --init --recursive
2016-05-24 02:54:36 +02:00
- At the end, the reviewer will merge the pull request.
6. **Tidy up!** Delete the feature branch from both your local clone and the GitHub repository:
.. code-block:: bash
2016-05-24 02:54:36 +02:00
$ git branch -D your-branch-name
$ git push origin --delete your-branch-name
2016-05-24 02:54:36 +02:00
7. **Celebrate.** Congratulations, you have contributed to ``python-telegram-bot``!
Style commandments
------------------
2016-05-24 02:54:36 +02:00
Assert comparison order
#######################
2016-05-24 02:54:36 +02:00
- assert statements should compare in **actual** == **expected** order.
For example (assuming ``test_call`` is the thing being tested):
.. code-block:: python
# GOOD
assert test_call() == 5
# BAD
assert 5 == test_call()
2016-05-24 02:54:36 +02:00
Properly calling callables
##########################
2016-05-24 02:54:36 +02:00
Methods, functions and classes can specify optional parameters (with default
values) using Python's keyword arg syntax. When providing a value to such a
callable we prefer that the call also uses keyword arg syntax. For example:
2016-05-24 02:54:36 +02:00
.. code-block:: python
2016-05-24 02:54:36 +02:00
# GOOD
f(0, optional=True)
# BAD
f(0, True)
2016-05-24 02:54:36 +02:00
This gives us the flexibility to re-order arguments and more importantly
to add new required arguments. It's also more explicit and easier to read.
Properly defining optional arguments
####################################
It's always good to not initialize optional arguments at class creation,
instead use ``**kwargs`` to get them. It's well known Telegram API can
change without notice, in that case if a new argument is added it won't
break the API classes. For example:
2016-05-24 02:54:36 +02:00
.. code-block:: python
2016-05-24 02:54:36 +02:00
# GOOD
def __init__(self, id, name, last_name=None, **kwargs):
self.last_name = last_name
2016-05-24 02:54:36 +02:00
# BAD
def __init__(self, id, name, last_name=None):
2016-05-24 02:54:36 +02:00
self.last_name = last_name
.. _`Code of Conduct`: https://www.python.org/psf/codeofconduct/
.. _`issue tracker`: https://github.com/python-telegram-bot/python-telegram-bot/issues
.. _`Telegram group`: https://telegram.me/pythontelegrambotgroup
2016-05-24 02:54:36 +02:00
.. _`PEP 8 Style Guide`: https://www.python.org/dev/peps/pep-0008/
.. _`sphinx`: http://sphinx-doc.org
.. _`Google Python Style Guide`: http://google.github.io/styleguide/pyguide.html
.. _`Google Python Style Docstrings`: https://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html
.. _AUTHORS.rst: ../AUTHORS.rst
2020-10-06 19:28:40 +02:00
.. _`MyPy`: https://mypy.readthedocs.io/en/stable/index.html
.. _`here`: https://mypy.readthedocs.io/en/stable/cheat_sheet_py3.html
.. _`Black`: https://black.readthedocs.io/en/stable/index.html
.. _`popular editors`: https://black.readthedocs.io/en/stable/editor_integration.html