Issues (942)

skchem/data/downloaders/diversity.py (1 issue)

1
#! /usr/bin/env python
2
#
3
# Copyright (C) 2016 Rich Lewis <[email protected]>
4
# License: 3-clause BSD
5
6 1
"""
7
# file title
8
9
Description
10
"""
11
12 1
import os
13 1
from .base import Downloader
14
15 1
class DiversityDownloader(Downloader):
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...
16 1
    urls = ['https://wiki.nci.nih.gov/download/attachments/160989212/Div3_2DStructures_Oct2014.sdf']
17 1
    filenames = ['structures.sdf']
18
19 1
if __name__ == '__main__':
20
    DiversityDownloader.download(os.getcwd())
21