Skip to content

Commit a03ffdc

Browse files
Update and rename README.rst to README.md
1 parent 14905a6 commit a03ffdc

2 files changed

Lines changed: 59 additions & 239 deletions

File tree

README.md

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
# Mercado Pago SDK for Python
2+
3+
[![PyPI](https://img.shields.io/pypi/v/mercadopago.svg)](https://pypi.python.org/pypi/mercadopago)
4+
5+
## 💡 Requirements
6+
7+
Python 2 or major
8+
9+
## 📲 Installation
10+
11+
First time using Mercado Pago? Create your [Mercado Pago account](https://www.mercadopago.com), if you don’t have one already.
12+
13+
**On Python 2.x**
14+
15+
`pip install mercadopago`
16+
17+
**On Python 3.x**
18+
19+
`pip3 install mercadopago`
20+
21+
Copy the access_token in the [credentials](https://www.mercadopago.com/mlb/account/credentials) section of the page and replace YOUR_ACCESS_TOKEN with it.
22+
23+
Thats all, you have Mercado Pago SDK installed.
24+
25+
## 🌟 Getting Started
26+
27+
Simple usage looks like:
28+
29+
::
30+
def index(req, **kwargs):
31+
preference = {
32+
"items": [
33+
{
34+
"title": "Test",
35+
"quantity": 1,
36+
"currency_id": "USD",
37+
"unit_price": 10.4
38+
}
39+
]
40+
}
41+
42+
preferenceResult = mp.create_preference(preference)
43+
44+
## 📚 Documentation
45+
46+
See our Documentation with all APIs you can integrate in our DevSite: [Spanish](https://www.mercadopago.com.ar/developers/es/guides/payments/api/introduction/) / [Portuguese](https://www.mercadopago.com.br/developers/pt/guides/payments/api/introduction/)
47+
48+
Check our official code reference to explore all available functionalities.
49+
50+
## ❤️ Support
51+
52+
If you require technical support, please contact our support team at [developers.mercadopago.com](https://developers.mercadopago.com)
53+
54+
## 🏻 License
55+
56+
```
57+
MIT license. Copyright (c) 2018 - Mercado Pago / Mercado Libre
58+
For more information, see the LICENSE file.
59+
```

README.rst

Lines changed: 0 additions & 239 deletions
This file was deleted.

0 commit comments

Comments
 (0)