My first ever program after hello world, lol.
I have managed to cobble the following together, and it works for my current purposes. But its very, very slow indeed.
I think that's because the program is looking at every single deal, and checks each record against the deal id.
Probably, the answer is to search for the deal, and only return that data. How do I go about changing the code to do this kind of search (that is, for the deal ID) and then only return that data?
Sorry for such an embarrassingly naive question!
from pypedriver import Client
pipedrive = Client('Pipedrive_API_key')
print('enter deal id')
input_deal_id = input()
print('deal id is set to ' + input_deal_id )
deals = pipedrive.Deal.fetch_all()
for deal in deals:
if str(deal.id) == str(input_deal_id):
print(deal.title, deal.id, deal.value, deal.currency)