1 | #! /usr/bin/env python |
||
0 ignored issues
–
show
|
|||
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.physprop import PhysPropConverter |
|
10 | 1 | from ..downloaders.physprop import PhysPropDownloader |
|
11 | |||
12 | 1 | class PhysProp(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. ![]() |
|||
13 | 1 | filename = 'physprop.h5' |
|
14 | 1 | downloader = PhysPropDownloader |
|
15 | 1 | converter = PhysPropConverter |
|
16 | |||
17 | 1 | if __name__ == '__main__': |
|
18 | logging.basicConfig(level=logging.INFO) |
||
19 | PhysProp.download() |
||
20 |
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.