Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
add no cache headers (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasgermain authored Feb 7, 2023
1 parent 408a4e9 commit c85c386
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ venv/
ENV/
env.bak/
venv.bak/
venv*/

# Spyder project settings
.spyderproject
Expand All @@ -107,4 +108,7 @@ venv.bak/
.mypy_cache/

#idea
.idea/
.idea/

#project custom
script/dump_result
2 changes: 2 additions & 0 deletions pymultimatic/api/connector.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"Accept-Encoding": "gzip",
"Accept": "application/json",
"Vaillant-Mobile-App": "multiMATIC v2.1.45 b389 (Android)",
"Cache-Control": "no-cache",
"Pragma": "no-cache",
}


Expand Down
2 changes: 1 addition & 1 deletion script/dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"dhws": {},
"dhw": {"id": "Control_DHW"},
"emf_devices": {},
"circulation": {},
"circulation": {"id": "Control_DHW"},
"rooms": {},
"system": {},
"system_ventilation": {},
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name="pymultiMATIC",
version="0.7.0b1",
version="0.7.0b2",
description="Python interface with Vaillant multiMATIC",
long_description_content_type="text/markdown",
long_description=long_description,
Expand Down

0 comments on commit c85c386

Please sign in to comment.