Official PayPI Partner Library


Keywords
paypi, python
License
MIT
Install
pip install paypi==1.0.8

Documentation

Contributors Forks Stargazers Issues MIT License


Logo

PayPI Python Client

Sell your API, today.
Explore the docs »

Homepage · Report Bug · Request Feature

Table of Contents

About The Project

PayPI Screenshot

PayPI makes API creators' lives easier by handling API keys, user accounts, payments and more. API users have one account to access all APIs using PayPI.

We worry about API authentication and payments so you can focus on making awesome APIs! This library enables you to interact with PayPI from a Python project.

Getting Started

See full documentation here

Install paypi from PyPI:

pip install paypi
# or
python -m pip install paypi

Then import it, create an instance with your private key and use it to authenticate and make charges against users:

from paypi import PayPI

paypi = PayPI("<Your API Secret>")


@app.route("/")
def hello():
    user = paypi.authenticate("<Users Subscription Secret>")

    # do some work...

    user.make_charge("<Charge ID>")
    # charge is now made...

In an asynchronous environment you can also use the asynchronous API calls:

paypi = PayPI("<Your API Secret>")
user = await paypi.authenticate_async("Users Subscription Secret")
await user.make_charge_async("<Charge ID>")

Roadmap

See the open issues for a list of proposed features (and known issues).

Contributing

All contributions are welcome. Please follow this workflow:

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

All rights reserved.

Contact

Alex - alex@paypi.dev
Tom - tom@paypi.dev

Project Link: https://github.com/paypi/paypi-python

Acknowledgements