isbnlib has a very small code base, so it is a good project to begin your
adventure in open-source.
NOTE: By contributing you agree with the license terms (LGPL v3) of the project.
- Make sure you have a GitHub account
- Submit a ticket for your issue or idea (help), on https://github.com/xlcnd/isbnlib/issues, (if possible wait for some feedback before any serious commitment... :)
- Fork the repository on GitHub and clone it locally (help).
pip install -r requirements-dev.txt(at your local directory).- Do your code... (remember the code must run on python 2.6, 2.7, 3.3, 3.4, pypy and be OS independent It is easier if you start to write in python 3 and then adapt for python 2) (you will find Travis very handy for testing with this requirement!)
- Write tests for your code using
noseand put then in the directoryisbnlib/test - Pass all tests and with coverage > 90%.
Check the coverage in Coveralls or locally with the command
nosetests --with-coverage --cover-package=isbnlib. - Check if all requirements are fulfilled!
- Push your local changes to GitHub and make there a pull request
(help)
using
devas base branch (by the way, we follow the fork & pull model with this small change).
NOTE: Travis, coverage, flake8 and pylint, have already configuration files adapted to the project.
Your code must be PEP8 compliant
and be concise as possible (use yapf then check it with
flake8 and pylint).
Use doc strings (PEP257) for users and comments (few) as signposts for fellow developers. Make your code as clear as possible.
Don't submit pull requests that are only comments to the code that is already in the repo! Don't expect kindness if you do that :) You can comment and give suggestions on the code at the issues page.
No doc tests! Remember point 6 above.
Don't submit pull requests without checking point 8!
Read the code in a structured way at sourcegraph.
Goto issues/enhancement for possible enhancements to the code. If you have some idea that is not there enter your own. Select some focused issue and enter some comments on how you plan to tackle it.
Take a look at the project isbntools
and see if your code can be written as a pluggin (a new metadata provider) or as
a user script [they are easier!]. For contributions to the core, you cannot use external
libraries (except standard lib), and must be pure python. There is a package prefix
isbntools.contrib where these requirements are not applied
(download a template package).
If you don't have experience with these issues, don't be put off by these requirements, see them as a learning opportunity. Thanks!
- https://guides.github.com/activities/hello-world/
- https://guides.github.com/introduction/flow/index.html
- https://www.youtube.com/watch?v=IeW1Irw45hQ
- https://www.youtube.com/watch?v=U8GBXvdmHT4
- https://www.youtube.com/watch?v=9Blbj1HMROU