Grant Gordon
Grant Gordon
@zedin27 Could you share some code that would let me reproduce your issue? Everything you need to do from `from pizzapi import *` to `Order.add_coupon()` would be very helpful.
@zedin27 I see what's going on - this is a code issue, not a usage issue. In the ```add_coupon()``` function, the ``` item = self.menu.variants[code] ``` is looking for the...
@KidKoder09923 Can't do much without the error. Can you provide the error message, but redact any sensitive information? For example, you can turn a phone number `123-345-5678` to `000-000-0000`.
@iCHAIT Not one that's implemented right now. If you're able to use the website to find your order history, I'd expect that there's an API call you make, but I'm...
@mastermind860 Take a look at https://github.com/gamagori/pizzapi/blob/master/pizzapi/urls.py to get an idea for how the distinction between USA and Canada works. It could be that the India API is entirely different, but...
Worth exploring the open PRs in the to see the internationalization options. https://github.com/RIAEvangelist/node-dominos-pizza-api/issues?utf8=✓&q=is%3Aissue+support+ It might make more sense to parse the address according to what the API is expecting (line1...
I got the API spitting toppings back to me by adding a 'Toppings' dict to the 'Tags' dict on a product, so like: ```order.add_item('12THIN')``` ```order.data['Products'][0]['Tags'][u'Toppings'] = u'Ac=1,B=1,Du=1,Fe=1'``` So, we could...
@aluttik I'm in the learning experience portion of my career - do you mind if I take it over? I live across the street from a Dominos, I've got plenty...
@aluttik The fork has been deleted - I've got all my changes backed up locally. I'll spin up a CONTRIBUTORS.md and give you an appropriate shout-out for all your work...
@mozebdi Sure thing! Here are some ideas off the top of my head, but feel free to do a PR with whatever seems sensible: - Constructor with no args -...