geekpete / py-coinspot-api

A python library for the Coinspot API.
Other
15 stars 15 forks source link

coinspot.py httplib Python 3 Deprecated #18

Open beerbotboffin opened 3 years ago

beerbotboffin commented 3 years ago

In coinspot.py httplib has been deprecated in Python 3.

Recommend changing from: import hmac import hashlib import httplib import json import yaml import os import sys import logging from time import time, strftime

to: import hmac import hashlib try: import httplib except: import http.client import json import yaml import os import sys import logging from time import time, strftime

Tested working in 3.6.2

geekpete commented 3 years ago

The plan was to migrate to requests library...