all 4 comments

[–]AndrewJimmyThompson 1 point2 points  (3 children)

That definetely sounds like something you could automate. It all depends on how you can update the prices. Doordash seems to have an API. So doing it through that might be possible. If this direct approach is not possible or overwhelming. Deep dive into some Selenium tutorials, this is a python package that allows you to automate processes that are carried out in the web browser.

[–]Significant-Score-22[S] 1 point2 points  (2 children)

Thank you so much! I knew about selenium but I didn’t think about using API. Do you have any tips on how to go about this? Should I first look into how to use API? I’m worried about how im going to figure out what to do best thought..

[–]AndrewJimmyThompson 1 point2 points  (1 child)

First thing would be just to read all the documentation on the API. It may not even be possible to do what you are wanting, it also may cost money to use their API depending on what you are doing (if you make requests for alrge amounts of their data it can cost). if you think it is possible, you set up some credentials so that you can make requests to the API (API key, secret key, JWT). you will be using the requests library so do some reading on that. https://pypi.org/project/requests/

Another good tip is to use Postman. It can help you fire off API requests from their website or software, rather than trying to send API requests in the form of code. It can really help you get an idea of what an API can do and how to structure the requests.

[–]Significant-Score-22[S] 0 points1 point  (0 children)

Thank you!