API documentation
Main object for getting the PECO outage counter data.
BadJSONError
Bases: Exception
Raised when the JSON is invalid.
Source code in src/peco/__init__.py
258 259 260 261 262 |
|
HttpError
Bases: Exception
Raised when an error during HTTP request occurs.
Source code in src/peco/__init__.py
251 252 253 254 255 |
|
IncompatibleMeterError
Bases: MeterError
Raised when the meter is not compatible with the API.
Source code in src/peco/__init__.py
269 270 271 272 273 |
|
InvalidCountyError
Bases: ValueError
Raised when the county is invalid.
Source code in src/peco/__init__.py
244 245 246 247 248 |
|
MeterError
Bases: Exception
Generic meter error.
Source code in src/peco/__init__.py
265 266 |
|
PecoOutageApi
Main object for getting the PECO outage counter data.
Source code in src/peco/__init__.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
|
__init__() -> None
Initialize the PECO outage counter object.
Source code in src/peco/__init__.py
27 28 |
|
get_map_alerts(websession: aiohttp.ClientSession | None = None) -> AlertResults
async
Get the alerts that show on the outage map.
Source code in src/peco/__init__.py
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
|
get_outage_count(county: str, websession: aiohttp.ClientSession | None = None) -> OutageResults
async
Get the outage count for the given county.
Source code in src/peco/__init__.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
|
get_outage_totals(websession: aiohttp.ClientSession | None = None) -> OutageResults
async
Get the outage totals for the given county and mode.
Source code in src/peco/__init__.py
116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 |
|
get_request(url: str, websession: aiohttp.ClientSession | None = None) -> dict[str, Any]
async
staticmethod
Make a GET request to the API.
Source code in src/peco/__init__.py
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
|
meter_check(phone_number: str, websession: aiohttp.ClientSession | None = None) -> bool
async
Check if power is being delivered to the house.
Source code in src/peco/__init__.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 |
|
post_request(url: str, data: dict[str, Any], websession: aiohttp.ClientSession | None = None) -> dict[str, Any]
async
staticmethod
Make a POST request to the API.
Source code in src/peco/__init__.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
|
UnresponsiveMeterError
Bases: MeterError
Raised when the meter is not responding.
Source code in src/peco/__init__.py
276 277 278 279 280 |
|