Git Product home page Git Product logo

bluepandas's Introduction

BluePandas build release

A Python library to read files in Azure Blob Storage as Pandas DataFrames

Installation

The latest version is available on PyPI:

pip install bluepandas

Example

The library reads an environment variable containing the connection string to your blob storage account. The variable must be named AZ_<STORAGE-ACCOUNT-NAME> and set to your connection string, which is obtained from the Azure Portal by navigating to you storage account under settings/access keys as shown below

http://i67.tinypic.com/25sljxt.png

Reading a data frame

import bluepandas

df = bluepandas.read_csv("wasbs://<container-name>@<storage-account-name>.blob.core.windows.net/path/to/your.csv")

This returns a BluePandas data frame, which subclasses the pandas data frame, but allows you to write to Blob Storage using the write_csv() method.

Writing a data frame

import bluepandas

# Import the iris dataset
from sklearn import datasets

values = datasets.load_iris()['data']
columns = datasets.load_iris()['feature_names']

df = bluepandas.DataFrame(values, columns=columns)

df.to_csv("wasbs://<container-name>@<storage-account-name>.blob.core.windows.net/path/to/iris.csv", index=False)

Converting a pandas data frame to a BluePandas data frame

import pandas as pd
import bluepandas

df = pd.DataFrame([(1,2,3),(4,5,6)], columns=['A','B','C'])

# BluePandas data frame
bpd_df = bluepandas.DataFrame(df.values, columns=df.columns)

bluepandas's People

Contributors

nihil0 avatar azure-pipelines[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.