Skip to content

Latest commit

 

History

History
167 lines (118 loc) · 5.4 KB

contributing.md

File metadata and controls

167 lines (118 loc) · 5.4 KB

Help us to help you!

You're Awesome for considering making a contribution to our library!

Markata is still in quite early days and changing often. Please reach out through issues before investing a lot of work in a big change. If your solution can be implemented via hook, please release it as a separate GitHub repo and tag it with markata.

Suggesting a feature

We can't think of everything. If you've got a good idea for a feature, then please let us know!

When suggesting a feature, make sure to:

  • Check the code on GitHub to make sure it's not already hiding in an unreleased version ;)
  • Considered if it's necessary in the library, or is an advanced technique that could be separately explained in an example
  • Check existing issues, open and closed, to make sure it hasn't already been suggested

Filing a bug report

If all else fails then please raise an issue to let us know. Be as detailed as possible, and be ready to answer questions when we get back to you. Make sure you:

  • Tell us your version of markata python -m pip show markata
  • Tell us your version of python python --verson

Submitting a pull request

If you've decided to fix a bug, even something as small as a single-letter typo then great! Anything that improves the code/documentation for all future users is warmly welcomed.

If you decide to work on a requested feature it's best to let us (and everyone else) know what you're working on to avoid any duplciation of effort. You can do this by replying to the original Issue for the request.

If you want to contribute an example; go for it! We might not always be able to accept your code, but there's a lot to be learned from trying anyway and if you're new to GitHub we're willing to guide you on that journey.

When contributing a new example or making a change to a library please keep your code style consistent with ours. We try to stick to the pep8 guidelines for Python (https://www.python.org/dev/peps/pep-0008/).

Do

  • Do run these dev tools to ensure that everything will pass before submitting
    • black
    • flake8
    • isort
    • pytest
  • Do use pep8 style guidelines
  • Do comment your code where necessary
  • Do submit only a single example/feature per pull-request
  • Do include a description of what your example is expected to do
  • Do include your changes in the CHANGELOG.md

Don't

  • Don't include any license information in your examples- our repositories are MIT licensed
  • Don't try to do too much at once- submit one or two examples at a time, and be receptive to feedback
  • Don't submit multiple variations of the same example, demonstrate one thing concisely

Dev Environment Setup

Markata uses hatch for it's build system. It has the same script that runs in GitHub actions defined so you can be confident that it will pass all ci checks before pushing.

First make sure that you have hatch installed.

# I'd reccomend to use pipx with hatch
pipx install hatch

# If pipx is not yoru thing
pip install hatch

# if you want to use pipx, but don't already have it
pip install pipx
pipx install hatch

Then create your hatch development environment.

hatch env create

You can then run test-lint to make sure your changes will pass all checks in ci.

hatch run test-lint

If you want to try out your changes in a repl you can run one of the following commands.

# ipython
hatch run dev:ipython

# ipython with automatically running the following 
# from markata import Markata
# m = Markata()
hatch run dev:ipy

# or just python
hatch run dev:python

If you're submitting an example

Try to do one thing, and do it concisely. Keep it simple. Don't mix too many ideas.

The ideal example should:

  • demonstrate one idea, technique or API as concisely as possible in a single Python script
  • just work when you run it. Although sometimes configuration is necessary
  • be well commented and attempt to teach the user how and why it works
  • document any required configuration, and how to install API keys, dependencies, etc

And don't forget to shout about your example on our forums/twitter so we can signal-boost you and let everyone know how awesome you are!

Licensing

When you submit code to our libraries, you implicitly and irrevocably agree to adopt the associated licenses. You should be able to find this in the file named LICENSE.

We typically use the MIT license; which permits Commercial Use, Modification, Distribution and Private use of our code, and therefore also your contributions. It also provides good compatibility with other licenses, and is intended to make re-use of our code as painless as possible for all parties.

You can learn more about the MIT license at Wikipedia: https://en.wikipedia.org/wiki/MIT_License

Submitting your code

Once you're ready to share your contribution with us you should submit it as a Pull Request.

  • Be ready to receive and embrace constructive feedback.
  • Be prepared for rejection; we can't always accept contributions. If you're unsure, ask first!

Thank you!

If you have any questions, concerns or comments about these guidelines, please get in touch. You can do this by raising an issue against our repository here

Above all else, we hope you enjoy yourself, learn things and make and share great contributions.