Metadata-Version: 1.0
Name: solr_cli
Version: 0.1
Summary: Command line client for Apache Solr
Home-page: http://github.com/moliware/solr_cli
Author: Miguel Olivares
Author-email: miguel@moliware.com
License: UNKNOWN
Description: solr_cli
        ========
        
        Command line client for solr
        
        
        Installation
        ------------
        
        From source code: ::
        
          python setup.py install
        
        From pypi: ::
        
          pip install solr_cli
        
        
        Usage
        -----
        
        Execute command line tool
        
        ::
        
          $ solr_cli
          (disconnected)$
        
        
        Connect to a solr instance::
        
          (disconnected)$ connect http://localhost:8983/solr/
          (http://localhost:8983/solr/)$
        
        
        Make a query::
        
          (http://localhost:8983/solr/)$ query *:*
        
          {
            "responseHeader": {
                "status": 0, 
                "QTime": 1, 
                "params": {
                    "q": "*:*", 
                    "wt": "python"
                }
            }, 
            "response": {
                "start": 0, 
                "numFound": 2961305, 
                "docs": [
                    {......}
                ]
            }
          }
        
        Make a query using http parameters::
        
          (http://localhost:8983/solr/)$ uri q=*:*&rows=0
          {
              "responseHeader": {
                  "status": 0, 
                  "QTime": 1, 
                  "params": {
                      "q": "*:*", 
                      "rows": "0", 
                      "wt": "python"
                  }
              }, 
              "response": {
                  "start": 0, 
                  "numFound": 2961474, 
                  "docs": []
              }
          }
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python
Classifier: Environment :: Console
