Skip to main content

Load any file into a pandas DataFrame, with a minimum of configuration, and a focus on bioinformatics

Project description

dataframer

Tries to load any file into a pandas DataFrame, with a minimum of configuration, and a focus on bioinformatics

Example

>>> filename = '/tmp/test.csv'
>>> with open(filename, 'w') as f:
...   f.write('a,b,c\n1,2,3\n4,5,6')
17
>>> from dataframer import dataframer
>>> pair = dataframer.parse(open(filename, 'rb'))
>>> pair[0]
   b  c
a      
1  2  3
4  5  6

Release process

In your branch update VERSION.txt, using semantic versioning: When the PR is merged, the successful Docker build will push a new version to pypi.

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

dataframer-0.0.1.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

dataframer-0.0.1-py2.py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 2 Python 3

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