Install the latest developer version with pip
from github:
pip install git+https://github.com/rrwen/google_streetview
Install from git
cloned source:
- Ensure git is installed
- Clone into current path
- Install via
pip
git clone https://github.com/rrwen/google_streetview cd google_streetview pip install . -I
- Clone into current path
git clone https://github.com/rrwen/google_streetview
- Enter into folder
cd google_streetview
- Ensure unittest is available
- Set your Google API developer key
- Run tests
- Reset config file to defaults
- Please note that this will use up 16 requests from your quota
pip install . -I python -m google_streetview -s key=your_dev_key python -m unittest python -m google_streetview -d
- Ensure sphinx is installed
pip install -U sphinx
- Update the documentation in
docs/
pip install . -I sphinx-build -b html docs/source docs
- Ensure git is installed
- Add all files and commit changes
- Push to github
git add . git commit -a -m "Generic update" git push
- Ensure twine is installed
pip install twine
- Ensure sphinx is installed
pip install -U sphinx
- Run tests and check for OK status
- Delete
dist
directory - Update the version
google_streetview/__init__.py
- Update the documentation in
docs/
- Create source distribution
- Upload to PyPi
pip install . -I python -m google_streetview -s key=your_dev_key python -m unittest python -m google_streetview -d sphinx-build -b html docs/source docs python setup.py sdist twine upload dist/*