Skip to content

Instantly share code, notes, and snippets.

View MarvinBaral's full-sized avatar
🚀
Making Progress

Marvin Baral MarvinBaral

🚀
Making Progress
View GitHub Profile
@MarvinBaral
MarvinBaral / bitforex_api.py
Last active January 19, 2019 21:20
Bitforex API Call with signed Data
#!/usr/bin/env python2
# See https://github.com/bitforexapi/API_Doc_en/wiki/API-Call-Description
import urllib
import requests, json, time
import hmac, hashlib
def simple_api_call(requestLink, params) : #GET
url = "https://api.bitforex.com" + requestLink
i = 0
for key, value in params.iteritems():