Skip to main content

CORD 19 tools and utilities

Project description

COVID-19 Data Tools

Tools for making COVID 19 data slightly easier for everyone!

Installation

pip install cord-19-tools

The Paperset class

This is a class for lazily loading papers from the CORD-19 dataset. Here are the instructions for use:

  1. Download a dataset in tar.gz form from the Download Here section, or using download bash script in this repository (which automatically completes step 2 for you)

  2. Extract it into a directory of your choice (functionality for leaving the tarballs unpacked/online may be added later, this is version 0.0.1), for example:

tar -xvzf comm_use_subset.tar.gz 
  1. Load it into python!
import cotools
from pprint import pprint

# no `/` at the end please!
data = cotools.Paperset("data/comm_use_subset")

# indexes with ints
pprint(data[0])

# and slices!
pprint(data[:2])


print(len(data))

# takes about 5gb in memory
alldata = [x[0] for x in data]

Lets talk for a bit about how it works, and why it doesnt take a gigantic amount of memory. The files are not actually loaded into python until the data is indexed. Upon indexing, the files at those indexes are read into python, resulting in a list of dictionaries.

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

cord-19-tools-0.0.2.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

cord_19_tools-0.0.2-py3-none-any.whl (3.6 kB view hashes)

Uploaded 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