Metadata-Version: 2.1
Name: cmdbikes
Version: 0.1.7
Summary: Bike sharing at your terminal
Home-page: http://github.com/eskerda/cmdbikes
Author: Lluís Esquerda
Author-email: eskerda@gmail.com
License: UNKNOWN
Keywords: Citybikes bike sharing
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: python-citybikes (>=0.1.3)
Requires-Dist: click
Requires-Dist: colorama
Requires-Dist: geocoder
Requires-Dist: iso3166

cmdbikes
========
Have you ever thought

    Damn, I wish I could check the status of my local bike
    sharing network on a terminal

Well, now with ``cmdbikes`` you can!

.. image:: http://i.imgur.com/3LJqFjp.gif

About
-----
This is a silly client to showcase `python-citybikes`_, a python wrapper for
the `Citybikes API`_. You can learn more about the project at
https://citybik.es.

If your network is not supported, add an issue or a PR on `pybikes`_.

.. _`python-citybikes`: http://github.com/eskerda/python-citybikes
.. _`Citybikes API`: https://api.citybik.es
.. _`pybikes`: http://github.com/eskerda/pybikes
Installation
------------
.. code-block::

    $ pip install cmdbikes

Usage
-------------
.. code-block::

    $ cmdbikes show --help
    Usage: cmdbikes show [OPTIONS] ADDRESS

      Display status of station on a given address.

    Options:
      --geocode / --no-geocode  Geocode station positions into a readable address
      -n INTEGER                Number of stations to show.
      --color / --no-color      Use colors on output
      --json                    Return JSON representation
      --help                    Show this message and exit.

Check the list of supported networks

.. code-block::

    $ cmdbikes ls
    Argentina [2]
    ├ Buenos Aires (Ecobici)
    └ Rosario (Mi bici tu bici)

    Australia [4]
    ├ Melbourne (Melbourne Bike Share)
    ├ Brisbane (CityCycle)
    ├ Curtin University, Perth, WA (Curtin Bike Share)
    └ Melbourne, AU (Monash BikeShare)

    Austria [23]
    ├ Wien (Citybike Wien)
    ├ Wachau (LEIHRADL)
    ...



History
=======
0.1.7 (2018-10-15)
------------------
* Fix issues with google geocoder. Now uses OSM Nominatim: since some stations
  are on OSM, they do not return a house number, which makes addresses
  pointless.

0.1.5 (2017-02-13)
------------------
* Add --json flag for valid JSON output

0.1.3 (2016-11-22)
------------------
* Disable distance checking for network, as it gives out false positives

0.1.0 (2016-11-22)
------------------
* First release


