mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-20 19:37:58 -05:00
* autopep8 rule-groups E101,W1,W2,W3 * autopep8 with rule group E3 (blank lines) autopep8 --in-place --recursive --max-line-length=200 --exclude="externals" --select="E101,E3,W1,W2,W3" . * tabs and space W191 * autopep8 aggressive
20 lines
412 B
Python
20 lines
412 B
Python
"""
|
|
CPWeb - A collection of commonly used routines to produce CoolProp's online documentation
|
|
=====
|
|
|
|
"""
|
|
from __future__ import division, absolute_import, print_function
|
|
|
|
import codecs
|
|
import csv
|
|
import cStringIO
|
|
|
|
|
|
def get_version():
|
|
return 5.0
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print('You are using version %s of the Python package for creating CoolProp\' online documentation.'%(get_version()))
|
|
print()
|