A Python Wrapper for the Citibike API
>>> from pycitibike import Citibike
>>> client = Citibike()
>>> from pycitibike import Citibike
>>> client = Citibike()
>>> client.stations() #Retrieve a list of stations
>>> client.helmets() #Retrieve a list of places for helmets
>>> client.branches() #Retrieve a list of all branches
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request