dominos icon indicating copy to clipboard operation
dominos copied to clipboard

dominos.co.uk python library

Results 6 dominos issues
Sort by recently updated
recently updated
newest added

This is very slow. When I Run The Following: from dominos import Client, FULFILMENT_METHOD, VARIANT api = Client(session) store = api.get_nearest_store('AB12 000') It never completes the code.

Trying to run your example from REAME: Python 3.6.3 (default, Oct 3 2017, 21:45:48) [GCC 7.2.0] on linux ``` >>> from dominos.api import Client >>> api = Client() Traceback (most...

I have corrected some of the mistakes such as correct naming of variables and function params in your code documentation. You also need to import FULFILMENT_METHOD enumeration for the code...

Added support for adding/removing pizza toppings. Also fixed a code problem where the menu would only parse the Sides category from the domino's API. It now iterates over all categories.

**This code calls two api functions - api.add_item_to_basket and menu.get_item_by_name. Instead it is recommended to store intermediate values into separate variables: potato_wedges = menu.get_item_by_name('Original Cheese & Tomato') api.add_item_to_basket(item=potato_wedges, vairant=VARIANT.PERSONAL)** **vairant...

Bumps [requests](https://github.com/psf/requests) from 2.21.0 to 2.31.0. Release notes Sourced from requests's releases. v2.31.0 2.31.0 (2023-05-22) Security Versions of Requests between v2.3.0 and v2.30.0 are vulnerable to potential forwarding of Proxy-Authorization...

dependencies