Skip to content

Commit a30c1e1

Browse files
committed
removed eau et olivet exception following PR#18
1 parent 9010270 commit a30c1e1

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

pysuez/client.py

-3
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,6 @@ def _get_token(self):
4343
}
4444
global BASE_URI
4545

46-
if self._provider == "Eau Olivet":
47-
BASE_URI = 'https://www.eau-olivet.fr'
4846
url = BASE_URI+API_ENDPOINT_LOGIN
4947

5048
response = requests.get(url, headers=headers, timeout=self._timeout)
@@ -55,7 +53,6 @@ def _get_token(self):
5553
headers['Cookie'] += "; "
5654
headers['Cookie'] += key + "=" + response.cookies[key]
5755

58-
phrase = re.compile('_csrf_token" value="(.*)"/>')
5956
phrase = re.compile('csrfToken\\\\u0022\\\\u003A\\\\u0022(.*)\\\\u0022,\\\\u0022targetUrl')
6057
result = phrase.search(response.content.decode('utf-8'))
6158
self._token = result.group(1)

requirements.txt

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
requests
2-
re
3-
datetime
2+
re

setup.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@
1515

1616
setup(
1717
name='pysuez',
18-
version='0.1.20',
18+
version='0.1.31',
1919
description='Get your water consumption data from your Suez account (www.toutsurmoneau.fr or www.eau-olivet.fr)',
2020
long_description=long_description,
2121
author='Farid N27',
2222
author_email='[email protected]',
2323
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',
2525
package_data={'': ['LICENSE']},
2626
include_package_data=True,
2727
packages=find_packages(),
@@ -36,5 +36,8 @@
3636
'Programming Language :: Python :: 3.4',
3737
'Programming Language :: Python :: 3.5',
3838
'Programming Language :: Python :: 3.6',
39+
'Programming Language :: Python :: 3.7',
40+
'Programming Language :: Python :: 3.8',
41+
'Programming Language :: Python :: 3.9',
3942
]
4043
)

0 commit comments

Comments
 (0)