Contributing

Contributions of any kind are greatly appreciated!

Feedback & Discussion

The Issue Tracker is the best place to post any feature ideas, requests and bug reports. This way, everyone has the opportunity to keep informed of changes and join the discussion on future plans.

Contributing Code

If you are able to contribute changes yourself, just fork the source code on GitHub, make changes and file a pull request. All contributions are welcome, no matter how big or small.

Quick Guide to Contributing

  1. Fork the ImageDataExtractor repository on GitHub, then clone your fork to your local machine:

    git clone https://github.com/<your-username>/imagedataextractor.git
    
  2. Install the requirements, as outlined in Installation

  3. Create a new branch for your changes:

    git checkout -b <name-for-branch>
    
  4. Make your changes or additions.

  5. Commit your changes and push to your fork on GitHub:

    git add .
    git commit -m "<description-of-changes>"
    git push origin <name-for-branch>
    
  6. Submit a pull request. Then we can discuss your changes and merge them into the main ImageDataExtractor repository.

Tips