Reputation: 33
I'm writing a python script that needs to connect my PayPal account and copy order information.
The paypal API gives examples how to get the orders information https://developer.paypal.com/webapps/developer/docs/api/#retrieve-an-order but it doesn't explain how to connect PayPal using python.
How do I make the initial connect to Paypal?
I tried this code: Paypal Transactionsearch using Python using Python it doesn't work. I can't find any reference for the imports which he uses.
Most of guides that I found are how to integrate PayPal into web site. That is not what i'm after...
Basically I want (final goal) to write a script that does that: http://www.clovercitysells.com/ebook/csv-export.pdf an export of orders by specific criteria to somewhere else (file,DB etc..)
Upvotes: 1
Views: 7180
Reputation: 13166
On the right column of https://developer.paypal.com/docs/api , you see a list of lanugage tab. Just select Python, and there is a link underneath. : https://github.com/paypal/PayPal-Python-SDK
README.md give you step by step guide.
Upvotes: 2