Metadata-Version: 1.1
Name: tattrdb
Version: 0.1.2
Summary: Tag and Attribute Database.
Home-page: https://github.com/gmjosack/tattrdb
Author: Gary M. Josack
Author-email: gary@byoteki.com
License: MIT
Download-URL: https://github.com/gmjosack/tattrdb/archive/master.tar.gz
Description: tattrdb
        =======
        
        Description
        ~~~~~~~~~~~
        
        TattrDB is a simple way to add Tags and Attributes to hostnames for use
        as a very generic service management database.
        
        Installation
        ~~~~~~~~~~~~
        
        ::
        
            pip install tattrdb
        
        Database Creation
        ~~~~~~~~~~~~~~~~~
        
        Tattr uses sqlalchemy underneath and those uses a database url to
        connect. Once you've constructed your url you can plugin it into the
        example below:
        
        ::
        
            from tattrdb import models
            models._sync(models.connect("sqlite:///tattr.sqlite"))
        
        Configuration
        ~~~~~~~~~~~~~
        
        Using the same url from the example above you'll need to create a
        configuration file at /etc/tattr.yaml as follows:
        
        ::
        
            db_uri: "sqlite:///tattr.sqlite"
        
        Command-line
        ~~~~~~~~~~~~
        
        Once you've finished installing and configuring tattr you can use the
        tattr command line tool to add/rm/modify hosts/tags/attributes. Tattr
        uses subcommands and each individual subcommand has it's own help
        messages.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
