v v
v v

Reputation: 33

How to set up Paypal to connect with python

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

Answers (1)

mootmoot
mootmoot

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

Related Questions