SELECT product_features.feature_id, feature_values.value
FROM product_features
LEFT JOIN feature_values ON feature_values.id = product_features.feature_value_id
WHERE product_features.feature_id IN (1,2,3) AND product_features.product_id = 1
class api:
def __init__(self,api_key,api_secret,wait_for_nonce=False):
pass
def Trade(self, tpair, ttype, trate, tamount):
pass
from btceapipython import api
api_key = "your key"
api_secret = "your secret"
myapi = api(api_key,api_secret)
myapi.Trade(tpair='usd_rur', ttype='buy',trate=55,tamount=1)