1 | #! /usr/bin/env python |
||
2 | # |
||
3 | # Copyright (C) 2016 Rich Lewis <[email protected]> |
||
4 | # License: 3-clause BSD |
||
5 | |||
6 | 1 | """ |
|
7 | # skchem.data.downloaders.chembl |
||
8 | |||
9 | ChEMBL dataset downloader |
||
10 | """ |
||
11 | |||
12 | 1 | from .base import Downloader |
|
13 | |||
14 | |||
15 | 1 | class ChEMBLDownloader(Downloader): |
|
0 ignored issues
–
show
|
|||
16 | 1 | urls = [] |
|
17 | 1 | filenames = ['chembl_raw.h5'] |
|
18 | |||
19 | 1 | def __init__(self): |
|
20 | raise NotImplementedError |
||
21 | super(ChEMBLDownloader, self).__init__() |
||
0 ignored issues
–
show
|
|||
22 | |||
23 |
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.