File tree 3 files changed +6
-7
lines changed
3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -43,8 +43,6 @@ def _get_token(self):
43
43
}
44
44
global BASE_URI
45
45
46
- if self ._provider == "Eau Olivet" :
47
- BASE_URI = 'https://www.eau-olivet.fr'
48
46
url = BASE_URI + API_ENDPOINT_LOGIN
49
47
50
48
response = requests .get (url , headers = headers , timeout = self ._timeout )
@@ -55,7 +53,6 @@ def _get_token(self):
55
53
headers ['Cookie' ] += "; "
56
54
headers ['Cookie' ] += key + "=" + response .cookies [key ]
57
55
58
- phrase = re .compile ('_csrf_token" value="(.*)"/>' )
59
56
phrase = re .compile ('csrfToken\\ \\ u0022\\ \\ u003A\\ \\ u0022(.*)\\ \\ u0022,\\ \\ u0022targetUrl' )
60
57
result = phrase .search (response .content .decode ('utf-8' ))
61
58
self ._token = result .group (1 )
Original file line number Diff line number Diff line change 1
1
requests
2
- re
3
- datetime
2
+ re
Original file line number Diff line number Diff line change 15
15
16
16
setup (
17
17
name = 'pysuez' ,
18
- version = '0.1.20 ' ,
18
+ version = '0.1.31 ' ,
19
19
description = 'Get your water consumption data from your Suez account (www.toutsurmoneau.fr or www.eau-olivet.fr)' ,
20
20
long_description = long_description ,
21
21
author = 'Farid N27' ,
22
22
23
23
url = 'https://github.com/ooii/pySuez' ,
24
- download_url = 'https://github.com/ooii/pySuez/releases/tag/0.1.18 ' ,
24
+ download_url = 'https://github.com/ooii/pySuez/releases/tag/0.1.31 ' ,
25
25
package_data = {'' : ['LICENSE' ]},
26
26
include_package_data = True ,
27
27
packages = find_packages (),
36
36
'Programming Language :: Python :: 3.4' ,
37
37
'Programming Language :: Python :: 3.5' ,
38
38
'Programming Language :: Python :: 3.6' ,
39
+ 'Programming Language :: Python :: 3.7' ,
40
+ 'Programming Language :: Python :: 3.8' ,
41
+ 'Programming Language :: Python :: 3.9' ,
39
42
]
40
43
)
You can’t perform that action at this time.
0 commit comments