mirror of
https://github.com/CoolProp/CoolProp.git
synced 2026-01-21 03:48:08 -05:00
22 lines
414 B
Python
22 lines
414 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()
|