Skip to content

Instantly share code, notes, and snippets.

View kurozumi's full-sized avatar

kurozumi kurozumi

View GitHub Profile
@kurozumi
kurozumi / rakuten.py
Last active October 11, 2016 07:12
【Python】楽天市場APIを操作する
# coding: utf-8
import urllib.parse
import urllib.request
class Rakuten(object):
response = None
def __init__(self, applicationId=None, format="json"):
@kurozumi
kurozumi / amazon.py
Last active October 11, 2016 11:41
【Python】Product Advertising APIを扱う
# coding: utf-8
from amazon.api import AmazonAPI
from amazon.api import AmazonException, LookupException, AsinNotFound
class AmazonAPIWrapper(object):
"""
pip install python-amazon-simple-product-api
"""
@kurozumi
kurozumi / shopping.py
Last active October 7, 2017 13:09
【Python】Python3でYahoo Shopping APIを使って商品検索をする方法
# coding: utf-8
import urllib.parse
import urllib.request
import xml.etree.ElementTree as ET
class Yahoo(object):