API wrapper for MercadoLibre written in Python
Project description
mercadolibre-python
mercadolibre is an API wrapper for MercadoLibre written in python
Installing
pip install mercadolibre-python
Usage
from mercadolibre.client import Client
client = Client('CLIENT_ID', 'CLIENT_SECRET', site='MCO')
Get authorization url
url = client.authorization_url('REDIRECT_URL')
Exchange the code for an access token
token = client.exchange_code('REDIRECT_URL', 'CODE')
Set the token
client.set_token('TOKEN')
Refresh the token
new_token = client.refresh_token()
Get account information
response = client.me()
Get account information for an user
response = client.get_user('USER_ID')
Get user address
response = client.get_user_address('USER_ID')
Get accepted payment methods for an user
response = client.get_user_accepted_payment_methods('USER_ID')
Get application information
response = client.get_application('APPLICATION_ID')
Get user brands
response = client.get_user_brands('USER_ID')
Get project information
response = client.get_project('PROJECT_ID')
Get sites
response = client.get_sites(')
Get listing types
response = client.get_listing_types('SITE_ID')
Get listing exposures
response = client.get_listing_exposures('SITE_ID')
Get categories
response = client.get_categories('SITE_ID')
Get category
response = client.get_category('CATEGORY_ID')
Get category attributes
response = client.get_category_attributes('CATEGORY_ID')
Get countries
response = client.get_countries()
Get country
response = client.get_country('COUNTRY_ID')
Get state
response = client.get_state('STATE_ID')
Get city
response = client.get_city('CITY_ID')
Get currencies
response = client.get_currencies()
Get currency
response = client.get_currency('CURRENCY_ID')
List item
item = {'title': 'Test item - Moto G 4th Gen', 'condition': 'used', 'category_id': 'MCO174749', 'price': 10,
'currency_id': 'COP',
'available_quantity': 1, 'buying_mode': 'buy_it_now', 'listing_type_id': 'free', 'warranty': '24 months',
'video_id': 'zQF96f01duA',
'pictures': ['https://mxmoto.vteximg.com.br/arquivos/ids/156297-600-600/92849LYESAF5_1_1.png']}
response = client.list_item(**item)
Requirements
- requests
Tests
python tests/test_client.py
Contributing
We are always grateful for any kind of contribution including but not limited to bug reports, code enhancements, bug fixes, and even functionality suggestions.
You can report any bug you find or suggest new functionality with a new issue.
If you want to add yourself some functionality to the wrapper:
- Fork it ( https://github.com/GearPlug/mercadolibre-python )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Adds my new feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mercadolibre_python-0.2.2.tar.gz
.
File metadata
- Download URL: mercadolibre_python-0.2.2.tar.gz
- Upload date:
- Size: 5.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d70ae12693eda75bc865c6380bb856efa474bdafd9e3bc9d54b9b3fe2ac0cae1 |
|
MD5 | 1a32f4d0ecf66b55559eef4a596363df |
|
BLAKE2b-256 | 848b8dfc2f01bf65bb579c9840606c30cb49b7a22d97705b52da2b9fe5e061f4 |
File details
Details for the file mercadolibre_python-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: mercadolibre_python-0.2.2-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5798f538fde87d1fa51391728263386ac8dcff19b679f5ebec5afb4b8525e105 |
|
MD5 | 12b9dab5553e3b0adfaa5113a4f21305 |
|
BLAKE2b-256 | a2b999a45189c2b1c78624862ffcd7e0bd6b3cc3948ed41a8f52bd0d58949171 |