Skip to main content

Store Pandas data frame as ZODB blobs

Project description

Currently experimental.

Usage, assuming you have a ZODB connection already:

import pandas, pheather, transaction

conn.root.iris = Pheather()
transaction.commit()

iris = pandas.read_csv('iris.csv')

conn.root.iris.save(iris)

Then, later in a separate session:

import pheather

iris = conn.root.iris.read()

For folks who are new to ZODB, there’s a helper function for connecting to (and creating) a ZODB file-based or Postgres-based database:

import pheather

# Local files:
conn = pheather.connection('data.fs')

# Postgres database using URL-based connection strings:
conn = pheather.connection('postgresql://localhost/mydb')

Changes

0.1.1 (2017-05-23)

  • Added missing setup dependency (for feather-format :( )

0.1.0 (2017-05-23)

Initial experimental release.

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

pheather-0.1.1.tar.gz (3.2 kB view hashes)

Uploaded Source

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