Skip to main content

Mercado Libre API Client (unoffical)

Project description

Mercado Libre Python API Client (unoffical)

This client is developed and maintened by Mercado Radar.

If you have improvements or suggestions, feel free to open a Pull Request on https://github.com/mercadoradar/mercadolibre-client

First Steps

Set your app configuration in environment variables as follows:

MERCADO_LIBRE_APP_CLIENT_ID  
MERCADO_LIBRE_APP_CLIENT_SECRET
MERCADO_LIBRE_REDIRECT_URI  

Authentication

  1. Browse to `http://auth.mercadolibre.com.ar/authorization?response_type=code&client_id={MERCADO_LIBRE_APP_CLIENT_ID}&redirect_uri={MERCADO_LIBRE_REDIRECT_URI}
  2. Pass the query param code to the OAuth().authenticate() method
from mercadolibre.OAuth import OAuth

...

response = OAuth().authenticate(code=code)
  1. This will return you an access_token and refresh_token that should be managed and stored by your application

  2. To private requests you should always include the access_token and refresh_token when initiate the MercadoLibreAPI

self.mercadolibre = MercadoLibreAPI(access_token=access_token,
                                    refresh_token=refresh_token)

self.mercadolibre.Item().get(id="MLB123456789")
  1. The client will try to make the private request with the given access_token.

    • If it fails because of token expired, it will try to update the token for you using the refresh_token provided

    • If it fails again, then it will return error

    • If there is no need to update the access_token it will return tokens = None so you don't need to update nothing

  2. If the client get a new token, it will be returned to you along with the request response as below:

self.mercadolibre = MercadoLibreAPI(access_token=access_token,
                                    refresh_token=refresh_token)

response, tokens = self.mercadolibre.Item().get(id="MLB123456789")

Public Requests

  1. Do not need an access_token and refresh_token
MercadoLibreAPI().Item().get(id="MLB123456789")

Private Requests

Requests that need authentication, mandatory access_token and refresh_token

access_token: string

refresh_token: string

from mercadolibre import MercadoLibreAPI

...

self.mercadolibre = MercadoLibreAPI(access_token=access_token,
                                    refresh_token=refresh_token)

self.mercadolibre.Item().get(id="MLB123456789")

...

Resources

Items

Create Item Item().create(data)

data: dict

 

Get Item By Id: Item().get(id)

id: string

 

Multi-get Items By Id: Item().Item(id)

ids: list of string

 

Get item description: Item().get_description(id)

id: string

 

Update: Item().update(id, data)

id: string

data: dict

 

Update Description: Item().update_description(id, description)

id: string

description: string

 

Orders

Get Order By Id: Order().get(id)

id: string

 

Questions

Get Question By Id: Question().get(id)

id: string

 

Want to contribute?

Feel free to code and open a Pull Request.

Licence

MIT License

Copyright (c) 2021 Mercado Radar

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mercadolibre-client-0.0.1.tar.gz (8.3 kB view hashes)

Uploaded Source

Built Distribution

mercadolibre_client-0.0.1-py3-none-any.whl (9.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page