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.
Fork the
python-telegram-bot
repository to your GitHub account.Clone your forked repository of
python-telegram-bot
to your computer:$ git clone https://github.com/<your username>/python-telegram-bot
$ cd python-telegram-bot
Add a track to the original repository:
$ git remote add upstream https://github.com/python-telegram-bot/python-telegram-bot
Install dependencies:
$ pip install -r requirements.txt
$ pip install -r requirements-dev.txt
In order to run tests you need to set the following environment variables:
$ export CHAT_ID=your-chat-id
$ export TOKEN=your-bot-token
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 developers' mailing list, and we'll help you get started.
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.
Choose a descriptive branch name. It should be lowercase, hyphen-separated, and a noun describing the change (so,
fuzzy-rules
, but notimplement-fuzzy-rules
). Also, it shouldn't start withhotfix
orrelease
.Create a new branch with this name, starting from
master
. In other words, run:$ git fetch upstream
$ git checkout master
$ git checkout merge upstream/master
$ git checkout -b your-branch-name
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".
For consistency, please conform to Google Python Style Guide and Google Python Style Docstrings. In addition, code should be formatted consistently with other code around it.
Please ensure that the code you write is well-tested.
Don’t 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:
$ make test
To actually make the commit and push it to your GitHub fork, run:
$ git commit -a -m "your-commit-message-here"
$ git push origin your-branch-name
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.
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:$ 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
At the end, the reviewer will merge the pull request.
Tidy up! Delete the feature branch from your both your local clone and the GitHub repository:
$ git branch -D your-branch-name
$ git push origin --delete your-branch-name
Celebrate. Congratulations, you have contributed to
python-telegram-bot
!