Metadata-Version: 1.1
Name: metrique
Version: 0.2.5-6
Summary: Metrique - Client Libraries
Home-page: https://github.com/drpoovilleorg/metrique
Author: Chris Ward
Author-email: cward@redhat.com
License: GPLv3
Download-URL: https://github.com/drpoovilleorg/metrique/archive/master.zip
Description: .. image:: ../metriqued/metriqued/static/img/metrique_logo.png
        
        Metrique Client
        ===============
        
        **Author:** "Chris Ward" <cward@redhat.com>
        
        **Sources:** https://github.com/drpoovilleorg/metrique
        
        
        Install
        ~~~~~~~
        
        **Make sure you have read the `General Install Guide <https://github.com/drpoovilleorg/metrique/tree/master/README.rst>`_.**
        
        Install metrique::
        
            pip install metrique
        
        To start using `metrique`, in ipython notebook, for example::
        
            $> ipython notebook --pylab=inline
            ...
            >>> from metrique import pyclient
        
        Then, to load a new pyclient instance for querying::
        
            >>> m = pyclient(host='http://127.0.0.1')
        
        Ping the server to ensure your connected. If all 
        is well, metriqe server should pong your ping!::
        
            >>> m.ping()
                PONG ($METRIQUED_HOSTNAME)
        
        Now you can start exploring what data already exists 
        on the host::
        
            >>> m.list_cubes()
            ...
            >>> m.list_cube_fields('cube_name_here')
            ...
        
        And assuming you have a metriqued host to connect to,
        with data in already, you can get to work!::
        
            >>> q = m.find('gitrepo_commit', 'author, committer_ts') 
            >>> q.groupby(['author']).size().plot(kind='barh')
                <matplotlib.axes.AxesSubplot at 0x6f77ad0>
        
        
        **If you plan to extract data (optional)**, see
        `metriquec <https://github.com/drpoovilleorg/metrique/tree/master/src/metriquec>`_ to install metriques default cubes.
        
        
        Known Issues
        ------------
        
        Import Warnings
        ~~~~~~~~~~~~~~~
        When running (eg) `from metrique import pyclient` for the
        first time in a session, you might see a warning like::
        
            Module bson was already imported from ...
        
        This warning can be safely **ignored**. It's only a warning.
        
        Configuration
        ~~~~~~~~~~~~~
        When loading a server instance, if you get an error about loading
        `http_api.json`, run `metrique-setup`
        
Keywords: data,mining,information,mongo,etl,analysis,search,query
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Topic :: Database
Classifier: Topic :: Office/Business
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Utilities
Requires: gnupg (==1.2.3)
Requires: metriqueu (>=0.2.5)
Requires: pandas (==0.12.0)
Requires: plotrique (>=0.2.5)
Requires: requests (==2.0.1)
Provides: metrique
