Skip to main content

Python Groonga Client

Project description

About

Python Groonga Client. poyonga support to HTTP and GQTP protocol.

Installation

from pip:

pip install --upgrade poyonga

from easy_install:

easy_install -ZU poyonga

Usage

Basic Usage

>>> from poyonga import Groonga
>>> g = Groonga()
>>> g.protocol
'http'
>>> ret = g.call("status")
>>> ret
<poyonga.result.GroongaResult object at 0x8505ccc>
>>> ret.status
0
>>> ret.body
{u'uptime': 427, u'max_command_version': 2, u'n_queries': 3,
u'cache_hit_rate': 66.6666666666667, u'version': u'1.2.8', u
'alloc_count': 156, u'command_version': 1, u'starttime': 132
8286909, u'default_command_version': 1}
>>>

with eventlet

from poyonga import Groonga
import eventlet

eventlet.monkey_patch()

def fetch(cmd, **kwargs):
    g = Groonga()
    ret = g.call(cmd, **kwargs)
    print ret.status
    print ret.body
    print "*" * 40

cmds = [("status", {}),
        ("log_level", {"level": "warning"}),
        ("table_list", {})
        ("select", {"table": "Site"})]
pool = eventlet.GreenPool()
for cmd, kwargs in cmds:
    pool.spawn_n(fetch, cmd, **kwargs)
pool.waitall()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

poyonga-0.1.2.tar.gz (3.5 kB view details)

Uploaded Source

File details

Details for the file poyonga-0.1.2.tar.gz.

File metadata

  • Download URL: poyonga-0.1.2.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for poyonga-0.1.2.tar.gz
Algorithm Hash digest
SHA256 1f81a6781ed652630d78b6886d07fb83960ba923959ee14caa9d6935f2fd23b0
MD5 1bb26d8de7e6f28caeb9c4ccd065e8b6
BLAKE2b-256 afc85675306f72d92f747effb02bf08a9955eda1731ff0693fcaf52d68447285

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page