Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

pyokera

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyokera

Python client for the Okera Data Access Service

  • 2.9.0
  • PyPI
  • Socket score

Maintainers
1

pyokera

Python client for RecordService implementations.

Dependencies

Required:

  • Python 3.4+

  • six, bit_array, thriftpy2, urllib3, certifi

.. code:: shell

pip3 install six bit_array thriftpy2 urllib3 certifi

Optional:

  • pandas for conversion to DataFrame objects

Installation

.. code:: shell

pip3 install pyokera

To verify:

.. code:: python

>>> import okera.odas
>>> okera.odas.version()
'##OKERA_RELEASE_VERSION##'

Usage


.. code:: python

    from okera import context
    ctx = context()
    with ctx.connect(host='localhost', port=12050) as conn:
        conn.list_databases()
        pd = conn.scan_as_pandas("okera_sample.sample")
        pd

To enable a connection to a server with token-authentication:

.. code:: python

    from okera import context
    ctx = context()
    ctx.enable_token_auth(token_str='my-token')
    with ctx.connect(host='localhost', port=12050) as conn:
        conn.list_databases()

To enable a connection to a server with kerberos-authentication:

.. code:: python

    from okera import context
    ctx = context()
    # Connecting to server principal 'cerebro/service@REALM'
    ctx.enable_kerberos('cerebro', host_override='service')
    with ctx.connect(host='localhost', port=12050) as conn:
        conn.list_databases()

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc