Metadata-Version: 1.1
Name: ovh-api-cli
Version: 1.0.4
Summary: A wrapper over OVH's API with killer autocomplete feature.
Home-page: https://api.ovh.com/
Author: Cyril DEMINGEON
Author-email: cyril.demingeon@corp.ovh.com
License: MIT
Description: OVH API CLI
        ===========
        
        | OVH API CLI is a command line tool that allows usage of OVH’s API from
        | within a terminal.
        
        Installation
        ------------
        
        ::
        
            python setup.py install
            source /etc/bash_completion.d/ovhcli
        
        Usage
        -----
        
        Put credentials inside ``~/.ovhcli``
        
        ::
        
             $ echo '{\
                 "AK": "Account_KEY",\
                 "AS": "Account_SECRET",\
                 "CK": "Consumer_KEY"\
             } > ~/.ovhcli
        
        Use tab to trigger the completion
        
        ::
        
             $ ovhcli [TAB]
             $ ovhcli /[TAB][TAB]
             allDom                housing               freefax               directadmin           overTheBox            support
             auth                  installationTemplate  horizonView           office                database              telephony
             ...
             $ ovhcli /me
             me                              bill                            history                         subAccount
             backupCode                      changeEmail                     order                           subscription
             ...
             $ ovhcli /me/contact [TAB][TAB]
             get                             put
             $ ovhcli /me/contact PUT [TAB][TAB]
             --city=                         --line2=                        --province=
             --country=                      --line3=                        --zip=
             --line1=                        --otherDetails=
        
            # some parameters can be automagically listed:
            $ ovhcli /me/contact/\{contactId\} GET --contactId=[TAB][TAB]
            contact1                         contact2                        contact3
Keywords: ovh cli api apiv6
Platform: UNKNOWN
Classifier: Topic :: Utilities
Classifier: Environment :: Console
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
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
