Issues (942)

skchem/data/datasets/tox21.py (2 issues)

1
#! /usr/bin/env python
0 ignored issues
show
This module should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
2
#
3
# Copyright (C) 2016 Rich Lewis <[email protected]>
4
# License: 3-clause BSD
5
6 1
import logging
7
8 1
from .base import Dataset
9 1
from ..converters.tox21 import Tox21Converter
10 1
from ..downloaders.tox21 import Tox21Downloader
11
12 1
class Tox21(Dataset):
0 ignored issues
show
This class should have a docstring.

The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:

class SomeClass:
    def some_method(self):
        """Do x and return foo."""

If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.

Loading history...
13 1
    filename = 'tox21.h5'
14 1
    downloader = Tox21Downloader
15 1
    converter = Tox21Converter
16
17 1
if __name__ == '__main__':
18
    logging.basicConfig(level=logging.INFO)
19
    Tox21.download()
20