14 lines
390 B
Python
14 lines
390 B
Python
|
"""
|
||
|
CliWeatherParameters class to extract weather parameters from a defined region in .cli format
|
||
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||
|
Copyright © 2020 Project Author Pilar Monsalvete pilar_monsalvete@yahoo.es
|
||
|
"""
|
||
|
|
||
|
|
||
|
class CliWeatherParameters:
|
||
|
"""
|
||
|
CliWeatherParameters class
|
||
|
"""
|
||
|
def __init__(self, full_path_weather):
|
||
|
self._full_path_weather = full_path_weather
|