Metadata-Version: 1.0
Name: accounts
Version: 0.1.3
Summary: The accounts saves your account of web services.
Home-page: UNKNOWN
Author: Alice1017
Author-email: genocidedragon@gmail.com
License: Copyright (c) 2014 Hayato Tominaga

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Download-URL: http://github.com/alice1017
Description: # accounts - Save your accounts of web services
        
        The **accounts** saves your account of any web services.
        A goal of **accounts** is management services you always checking.
        
        ## positional commands
        
        + **add** \<service\> \<account\>
            + **acounts** add account to registory.
            + service: any web service name, url, domain.
            + account: your account name
            + *If you set the url to \<service\>, accounts set the sevice name to domain name of url.*
            + From **v0.1.2**, accounts has any services information to `/accounts/services` directory,
              If you set the **not-known** service name, accounts get that service's information by **fetching Google Search**.
        
        ```sh
        $ accounts add github alice1017
        accounts saves the github account: alice1017
        $ accounts add http://qiita.com Alice1017
        accounts saves the qiita account: Alice1017
        ```
        
        + **upd** \<service\> \<account\>
            + **accounts** updates account name.
        ```sh
        $ accounts upd github Alice1017
        accounts updates the github account: alie1017 -> Alice1017
        ```
        
        + **del** \<service\>
            + **accounts** deletes the account.
        
        ```sh
        $ accounts del github
        accounts deletes the github account.
        ```
        
        + **login** \<service\>
            + **accounts** opens browser to login service.
            + service: you addesd service name or part of url
            + If you put **"all"** to \<service\>, **accounts** opens all service.
        
        ```sh
        $ accounts login github
        accounts Opening http://github.com to browser.
        ```
        
        + **list** [--service]
            + **accounts** shows the list of accounts.
            + *--service*: shows list of the known services
        
        ```sh
        $ accounts list
         - github: alice1017
         - qiita: Alice1017
        ```
        
        ## install
        
        ```sh
        $ pip install accounts
        ```
        
        or
        
        ```sh
        $ git clone git@github.com:alice1017/accounts.git
        $ cd accounts
        $ python setup.py build install
        ```
        
        
        
Platform: UNKNOWN
