Reference¶
Bring API package.
Bring
¶
Unofficial Bring API interface.
Init function for Bring API.
Source code in bring_api/bring.py
expires_in: int
property
writable
¶
Refresh token expiration.
login
async
¶
Try to login.
Returns:
Type | Description |
---|---|
Response
|
The server response object. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringParseException
|
If the parsing of the request response fails. |
BringAuthException
|
If the login fails due invalid credentials. You should check your email and password. |
Source code in bring_api/bring.py
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 |
|
reload_user_list_settings
async
¶
reload_article_translations
async
¶
Reload the article translations.
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
load_lists
async
¶
Load all shopping lists.
Returns:
Type | Description |
---|---|
BringListResponse
|
The JSON response. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringParseException
|
If the parsing of the request response fails. |
BringAuthException
|
If the request fails due to invalid or expired authorization token. |
Source code in bring_api/bring.py
get_list
async
¶
Get all items from a shopping list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_uuid
|
str
|
A list uuid returned by load_lists() |
required |
Returns:
Type | Description |
---|---|
BringItemsResponse
|
The JSON response. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringParseException
|
If the parsing of the request response fails. |
BringAuthException
|
If the request fails due to invalid or expired authorization token. |
Source code in bring_api/bring.py
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 |
|
get_all_item_details
async
¶
Get all details from a shopping list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_uuid
|
str
|
A list uuid returned by load_lists() |
required |
Returns:
Type | Description |
---|---|
BringListItemsDetailsResponse
|
The JSON response. A list of item details. Caution: This is NOT a list of the items currently marked as 'to buy'. See get_list() for that. This contains the items that where customized by changing their default icon, category or uploading an image. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringParseException
|
If the parsing of the request response fails. |
BringAuthException
|
If the request fails due to invalid or expired authorization token. |
Source code in bring_api/bring.py
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 |
|
save_item
async
¶
Save an item to a shopping list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_uuid
|
str
|
A list uuid returned by load_lists() |
required |
item_name
|
str
|
The name of the item you want to save. |
required |
specification
|
str
|
The details you want to add to the item. |
''
|
item_uuid
|
str
|
The uuid for the item to add. If a unique identifier is required it is recommended to generate a random uuid4. |
''
|
Returns:
Type | Description |
---|---|
Response
|
The server response object. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
Source code in bring_api/bring.py
update_item
async
¶
Update an existing list item.
Caution: Do not update item_name
. Providing item_uuid
makes it
possible to update a specific item in case there are multiple
items with the same name. If uuid is not specified, the newest
item with the given item_name
will be updated.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_uuid
|
str
|
A list uuid returned by load_lists() |
required |
item_name
|
str
|
The name of the item you want to update. |
required |
specification
|
str
|
The details you want to update on the item. |
''
|
item_uuid
|
str
|
The uuid of the item to update. |
''
|
Returns:
Type | Description |
---|---|
Response
|
The server response object. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
Source code in bring_api/bring.py
remove_item
async
¶
Remove an item from a shopping list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_uuid
|
str
|
A list uuid returned by load_lists() |
required |
item_name
|
str
|
The name of the item you want to remove. |
required |
item_uuid
|
str
|
The uuid of the item you want to remove. The item to remove can be remove by only referencing its uuid and setting item_name to any nonempty string. |
''
|
Returns:
Type | Description |
---|---|
Response
|
The server response object. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
Source code in bring_api/bring.py
complete_item
async
¶
Complete an item from a shopping list. This will add it to recent items.
If it was not on the list, it will still be added to recent items.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_uuid
|
str
|
A list uuid returned by load_lists() |
required |
item_name
|
str
|
The name of the item you want to complete. |
required |
specification
|
str
|
The details you want to update on the item. |
''
|
item_uuid
|
str
|
The uuid of the item you want to complete. |
''
|
Returns:
Type | Description |
---|---|
Response
|
The server response object. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
Source code in bring_api/bring.py
notify
async
¶
Send a push notification to all other members of a shared list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_uuid
|
str
|
A list uuid returned by loadLists() |
required |
notification_type
|
BringNotificationType
|
The type of notification to be sent |
required |
item_name
|
str
|
The item_name must be included when notication_type is BringNotificationType.URGENT_MESSAGE |
None
|
Returns:
Type | Description |
---|---|
Response
|
The server response object. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringAuthException
|
If the request fails due to invalid or expired authorization token. |
TypeError
|
if the notification_type parameter is invalid. |
ValueError
|
If the value for item_name is invalid. |
Source code in bring_api/bring.py
679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 |
|
does_user_exist
async
¶
Check if e-mail is valid and user exists.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
mail
|
str
|
An e-mail address. |
None
|
Returns:
Type | Description |
---|---|
bool
|
True if user exists. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringEMailInvalidException
|
If the email is invalid. |
BringUserUnknownException
|
If the user is does not exist |
Source code in bring_api/bring.py
__load_article_translations_from_file
¶
Read localization ressource files from disk.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
locale
|
str
|
A locale string |
required |
Returns:
Type | Description |
---|---|
dict[str, str]:
|
A translation table as a dict |
Source code in bring_api/bring.py
__load_article_translations
async
¶
Load all required translation dictionaries into memory.
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringParseException
|
If the parsing of the request response fails. |
Returns:
Type | Description |
---|---|
dict
|
dict of downloaded dictionaries |
Source code in bring_api/bring.py
865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 |
|
__translate
¶
Translate a catalog item from or to a language.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
item_id
|
str
|
Item name. |
required |
to_locale
|
str
|
locale to translate to. |
None
|
from_locale
|
str
|
locale to translate from. |
None
|
Returns:
Type | Description |
---|---|
str
|
Translated Item name. |
Raises:
Type | Description |
---|---|
BringTranslationException
|
If the translation fails. |
Source code in bring_api/bring.py
__load_user_list_settings
async
¶
Load user list settings into memory.
Raises:
Type | Description |
---|---|
BringTranslationException
|
If the user list settings could not be loaded. |
Returns:
Type | Description |
---|---|
dict[str, dict[str, str]]
|
A dict of settings of the users lists |
Source code in bring_api/bring.py
get_all_user_settings
async
¶
Load all user settings and user list settings.
Returns:
Type | Description |
---|---|
BringUserSettingsResponse
|
The JSON response. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringParseException
|
If the parsing of the request response fails. |
BringAuthException
|
If the request fails due to invalid or expired authorization token. |
Source code in bring_api/bring.py
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 |
|
__locale
¶
Get list or user locale.
Returns:
Type | Description |
---|---|
str
|
The locale from userlistsettings or user. |
Raises:
Type | Description |
---|---|
BringTranslationException
|
If list locale could not be determined from the userlistsettings or user. |
Source code in bring_api/bring.py
map_user_language_to_locale
¶
Map user language to a supported locale.
The userLocale returned from the user account settings is not necessarily one of the 20 locales used by the Bring App but rather what the user has set as language on their phone and the country where they are located. Usually the locale for the lists is always returned from the bringusersettings API endpoint. One exception exists, when user onboarding happens through the webApp, then the locale for the automatically created initial list is not set. For other lists this does not happen, as it is not possible to create more lists in the webApp, only in the mobile apps.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
user_locale
|
dict
|
user locale as a dict containing |
required |
Returns:
Type | Description |
---|---|
str
|
The locale corresponding to the users language. |
Source code in bring_api/bring.py
get_user_account
async
¶
Get current user account.
Returns:
Type | Description |
---|---|
BringSyncCurrentUserResponse
|
The JSON response. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringParseException
|
If the parsing of the request response fails. |
BringAuthException
|
If the request fails due to invalid or expired authorization token. |
Source code in bring_api/bring.py
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 |
|
batch_update_list
async
¶
Batch update items on a shopping list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_uuid
|
str
|
The listUuid of the list to make the changes to |
required |
items
|
BringItem or List of BringItem
|
Item(s) to add, complete or remove from the list |
required |
operation
|
BringItemOperation
|
The Operation (ADD, COMPLETE, REMOVE) to perform for the supplied items on the list. Parameter can be ommited, and the BringItem key 'operation' can be set to TO_PURCHASE, TO_RECENTLY or REMOVE. Defaults to BringItemOperation.ADD if operation is neither passed as parameter nor is set in the BringItem. |
None
|
Returns:
Type | Description |
---|---|
Response
|
The server response object. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringParseException
|
If the parsing of the request response fails. |
BringAuthException
|
If the request fails due to invalid or expired authorization token. |
Source code in bring_api/bring.py
1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 |
|
retrieve_new_access_token
async
¶
Refresh the access token.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
refresh_token
|
str
|
The refresh token to use to retrieve a new access token |
None
|
Returns:
Type | Description |
---|---|
BringAuthTokenRespone
|
The JSON response. |
Raises:
Type | Description |
---|---|
BringRequestException
|
If the request fails. |
BringAuthException
|
If the request fails due to invalid or expired refresh token. |
Source code in bring_api/bring.py
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 |
|
set_list_article_language
async
¶
Set the article language for a specified list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
list_uuid
|
str
|
The unique identifier for the list. |
required |
language
|
str
|
The language to set for the list articles. |
required |
Returns:
Type | Description |
---|---|
ClientResponse
|
The server response object. |
Raises:
Type | Description |
---|---|
ValueError
|
If the specified language is not supported. |
BringRequestException
|
If the request fails. |
BringAuthException
|
If the request fails due to invalid or expired authorization token. |
Source code in bring_api/bring.py
1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 |
|
BringAuthException
¶
Bases: BringException
When an authentication error is encountered.
BringEMailInvalidException
¶
Bases: BringException
When checkemail returns emailValid false .
BringParseException
¶
Bases: BringException
When parsing the response of a request fails.
BringRequestException
¶
Bases: BringException
When the HTTP request fails.
BringTranslationException
¶
Bases: BringException
When translating an article fails.
BringUserUnknownException
¶
Bases: BringException
When checkemail returns userExists false.
BringListItemDetails
¶
Bases: TypedDict
An item details class.
Includes several details of an item in the context of a list. Caution: This does not have to be an item that is currently marked as 'to buy'.
BringListItemsDetailsResponse
¶
Bases: list[BringListItemDetails]
A response class of a list of item details.
BringNotificationType
¶
Bases: Enum
Notification type.
GOING_SHOPPING: "I'm going shopping! - Last chance for adjustments" CHANGED_LIST: "List changed - Check it out" SHOPPING_DONE: "Shopping done - you can relax" URGENT_MESSAGE: "Breaking news - Please get {itemName}!