Reference¶
Bring API package.
Bring
¶
Unofficial Bring API interface.
Init function for Bring API.
Source code in bring_api/bring.py
expires_in
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
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 |
|
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
269 270 271 272 273 274 275 276 277 278 279 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 |
|
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
357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 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 |
|
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. |
None
|
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. |
None
|
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. |
None
|
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. |
None
|
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
|
The unique identifier of the list. |
required |
notification_type
|
BringNotificationType
|
The type of notification to be sent. |
required |
item_name
|
str
|
The name of the item. Required if notification_type is URGENT_MESSAGE. |
None
|
activity
|
str | Activity | None
|
The UUID or the Activity object of the activity to react to. Required if notification_type is LIST_ACTIVITY_STREAM_REACTION. |
None
|
receiver
|
str | None
|
The public user UUID of the recipient. Required if notification_type is LIST_ACTIVITY_STREAM_REACTION and activity is referenced by it's uuid. |
None
|
activity_type
|
ActivityType | None
|
Required if notification_type is LIST_ACTIVITY_STREAM_REACTION and activity is referenced by it's uuid. |
None
|
reaction
|
ReactionType | None
|
The type of reaction. Either :MONOCLE:, :THUMBS_UP:, :HEART:, or :DROOLING: Required if notification_type is LIST_ACTIVITY_STREAM_REACTION. |
None
|
Returns:
Type | Description |
---|---|
ClientResponse
|
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, receiver, activity, activity_type, or reaction is invalid. |
Source code in bring_api/bring.py
649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 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 782 783 784 785 |
|
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 |
|
__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
1036 1037 1038 1039 1040 1041 1042 1043 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 |
|
__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
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 |
|
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
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 1296 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 |
|
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
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 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 |
|
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
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 |
|
get_activity
async
¶
Get activity for given list.
Source code in bring_api/bring.py
get_list_users
async
¶
Retrieve members of a shared list.
Source code in bring_api/bring.py
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.
BringActivityResponse
dataclass
¶
Bases: DataClassORJSONMixin
A list activity.
BringAuthResponse
dataclass
¶
Bases: DataClassORJSONMixin
An auth response class.
BringAuthTokenResponse
dataclass
¶
Bases: DataClassORJSONMixin
A refresh token response class.
BringItemsResponse
dataclass
¶
Bases: DataClassORJSONMixin
An items response class.
BringListItemDetails
dataclass
¶
Bases: DataClassORJSONMixin
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
dataclass
¶
Bases: DataClassORJSONMixin
A response class of a list of item details.
BringListResponse
dataclass
¶
Bases: DataClassORJSONMixin
A list response class.
BringNotificationType
¶
Bases: StrEnum
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}! LIST_ACTIVITY_STREAM_REACTION: React with 🧐, 👍🏼, 🤤 or 💜 to activity
BringSyncCurrentUserResponse
dataclass
¶
Bases: DataClassORJSONMixin
A sync current user response class.
BringUserListSettingEntry
dataclass
¶
Bases: DataClassORJSONMixin
A user list settings class. Represents a single list setting.
BringUserSettingsEntry
dataclass
¶
Bases: DataClassORJSONMixin
A user settings class. Represents a single user setting.
BringUserSettingsResponse
dataclass
¶
Bases: DataClassORJSONMixin
A user settings response class.