You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-15Lines changed: 16 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,19 +15,19 @@ Python 3.7+ required.
15
15
16
16
The Sagemcom F@st series is used by multiple cable companies, where some cable companies did rebrand the router. Examples are the b-box from Proximus, Home Hub from bell and the Smart Hub from BT.
17
17
18
-
| Router Model | Provider(s) | Authentication Method |
> Contributions welcome. If you router model is supported by this package, but not in the list above, please create [an issue](https://github.com/iMicknl/python-sagemcom-api/issues/new) or pull request.
33
33
@@ -96,9 +96,11 @@ asyncio.run(main())
96
96
## Advanced
97
97
98
98
### Determine the EncryptionMethod
99
+
99
100
(not supported yet)
100
101
101
102
### Handle exceptions
103
+
102
104
Some functions may cause an error when an attempt is made to execute it. These exceptions are thrown by the client and need to be [handled in your Python program](https://docs.python.org/3/tutorial/errors.html#handling-exceptions). Best practice is to catch some specific exceptions and handle them gracefully.
103
105
104
106
```python
@@ -123,7 +125,7 @@ except Exception as exception:
123
125
print(exception)
124
126
```
125
127
126
-
### Use your own aiohttp ClientSession
128
+
### Use your own aiohttp ClientSession
127
129
128
130
> ClientSession is the heart and the main entry point for all client API operations. The session contains a cookie storage and connection pool, thus cookies and connections are shared between HTTP requests sent by the same session.
0 commit comments