Contents
- Fork it.
- Clone it
- 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
- Create your feature branch (
$ git checkout -b my-new-awesome-feature
) - Commit your changes (
$ git commit -am 'Added <xyz> feature'
)
Conform to PEP8 and if everything is running fine, integrate your feature
- Push to the branch (
$ git push origin my-new-awesome-feature
) - Create new Pull Request
Hack away!
- 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.