Skip to content

Latest commit

 

History

History
61 lines (38 loc) · 1.76 KB

CONTRIBUTING.rst

File metadata and controls

61 lines (38 loc) · 1.76 KB

Contributing

1   Setup

  1. Fork it.
  2. Clone it
  3. Create a virtualenv
$ virtualenv develop              # Create virtual environment
$ source develop/bin/activate     # Change default python to virtual one
(develop)$ git clone https://github.com/ab-anand/Zdrive.git
(develop)$ cd Zdrive
(develop)$ pip install -r requirements.txt  # Install requirements for 'Zdrive' in virtual environment

Or, if virtualenv is not installed on your system:

$ wget https://raw.github.com/pypa/virtualenv/master/virtualenv.py
$ python virtualenv.py develop    # Create virtual environment
$ source develop/bin/activate     # Change default python to virtual one
(develop)$ git clone https://github.com/ab-anand/Zdrive.git
(develop)$ cd Zdrive
(develop)$ pip install -r requirements.txt  # Install requirements for 'Zdrive' in virtual environment
  1. Create your feature branch ($ git checkout -b my-new-awesome-feature)
  2. Commit your changes ($ git commit -am 'Added <xyz> feature')

Conform to PEP8 and if everything is running fine, integrate your feature

  1. Push to the branch ($ git push origin my-new-awesome-feature)
  2. Create new Pull Request

Hack away!

2   To do

  • Make pickling of credentials optional
  • Write unittests
  • There are lot of filters for searching a file/folder in Drive. Use the link available in the section below and try implementing anything you find interesting.

3   Useful References