Skip to main content

SDK for consumption of JáCotei Api

Project description

# jacotei-api-sdk-python3

## Exemplos ##

Publicacao de 1000 ofertas

```Python
#!/usr/bin/python3

import json

from jacotei_api_v1 import *
from jacotei_api_v1.api import *
from jacotei_api_v1.model import *
from jacotei_api_v1.client import ApiClient;

apiClient = client.ApiClient({
'client_id':'xxxxx',
'access_token':'xxxx'},
'https://webapisb.jacotei.com.br/publisher/v1')

offers_api = OffersApi.OffersApi(apiClient)
offer_request = OfferRequest.OfferRequest()
offer_request.offers = []

for i in range(0, 1000):
offer = Offer.Offer()
offer.sku = i
offer.available = True;
offer.title = 'Produto '+str(i)
offer.link = 'http://aasdfaf.com/asdflasdf'
offer.images = ['http://aasdfaf.com/asdflasdf.jpg']
offer.categories = ['Categoria','Subcategoria','Sub subcategoria']
price = OfferPrice.OfferPrice()
price.price = 1.99
price.installment = 1
price.installment_value = 1.99
offer.prices = [price]
offer_request.offers .append(offer)

try:
offers_result = offers_api.update_offers_using_post(offers = offer_request)
print (vars(offers_result))
except BaseException as e:
print(e.msg)

```


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

jacotei_api-1.0.0.tar.gz (6.1 kB view hashes)

Uploaded Source

Built Distribution

jacotei_api-1.0.0-py3-none-any.whl (10.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