1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Metadata-Version: 2.1
Name: datacache
Version: 1.4.1
Summary: Helpers for transparently downloading datasets
Home-page: https://github.com/openvax/datacache
Author: Alex Rubinsteyn
Author-email: alex.rubinsteyn@unc.edu
License: http://www.apache.org/licenses/LICENSE-2.0.html
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pandas>=0.15.2
Requires-Dist: appdirs>=1.4.0
Requires-Dist: progressbar33>=2.4
Requires-Dist: requests>=2.5.1
Requires-Dist: typechecks>=0.0.2
Requires-Dist: mock
[](https://github.com/openvax/datacache/actions/workflows/tests.yml)
<a href="https://coveralls.io/github/openvax/datacache?branch=master">
<img src="https://coveralls.io/repos/openvax/datacache/badge.svg?branch=master&service=github" alt="Coverage Status" />
</a>
<a href="https://pypi.python.org/pypi/datacache/">
<img src="https://img.shields.io/pypi/v/datacache.svg?maxAge=1000" alt="PyPI" />
</a>
# DataCache
Helpers for transparently downloading datasets
## API
- **fetch_file**(download*url, filename = \_None*, decompress = _False_, subdir = _None_)
- **fetch_and_transform**(transformed*filename, transformer, loader,
source_filename, source_url, subdir = \_None*)
- **fetch_fasta_dict**(download*url, filename = \_None*, subdir = _None_)
- **fetch_fasta_db**(table*name, download_url, fasta_filename = \_None*,
key*column = *'id'_, value_column = _'seq'_, subdir = \_None_)
- **fetch_csv_db**(table*name, download_url, csv_filename = \_None*, subdir = _None_,
\*\*pandas_kwargs)
|