| Total Complexity | 1 |
| Total Lines | 6 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | #! /usr/bin/env python |
||
| 9 | 1 | class Tox21Downloader(Downloader): |
|
| 10 | 1 | filenames = ['data_allsdf', 'challenge_testsdf', |
|
| 11 | 'challenge_scoresdf', 'challenge_scoretxt'] |
||
| 12 | 1 | urls = ['https://tripod.nih.gov/tox21/challenge/download?id=tox21_10k_' \ |
|
| 13 | + name for name in filenames] |
||
| 14 | 1 | filenames = ['train.sdf.zip', 'valid.sdf.zip', 'test.sdf.zip', 'test.txt'] |
|
| 15 | |||
| 18 |
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.