In [1]:
import yaml
from dateutil.parser import parse
from pyoanda import Client, PRACTICE, TRADE
from pyoanda.exceptions import BadRequest
from datetime import datetime, timedelta
In [2]:
# Get my credencials
with open("config-live.yaml") as f:
config = yaml.load(f.read())
In [3]:
client = Client(
TRADE,
account_id=config["access"]["id"],
access_token=config["access"]["token"]
)
Get 100 days of EUR/GBP history in 5 secs granularity
In [4]:
DAYS = 1000
end = datetime.now()
import csv
with open('data-set-{}-days.csv'.format(DAYS),'w') as f:
fields = ['time', 'lowBid', 'closeBid', 'openAsk', 'closeAsk', 'complete', 'openBid', 'highAsk', 'lowAsk','highBid', 'volume']
writer = csv.DictWriter(f, fieldnames=fields)
writer.writeheader()
for _ in range(DAYS):
f.flush()
for _ in range(2): # 24/12 hours
start = end - timedelta(hours=12)
kwargs = dict(
instrument="EUR_GBP",
candle_format="bidask",
granularity="S5",
count=None,
start=start.strftime("%Y-%m-%dT%H:%M:%S.%f%z"),
end=end.strftime("%Y-%m-%dT%H:%M:%S.%f%z")
)
try:
rows = client.get_instrument_history(**kwargs)["candles"]
writer.writerows(rows)
except BadRequest:
pass
end = start
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
ERROR:pyoanda.client:Bad response: Expecting value: line 1 column 1 (char 0)
Traceback (most recent call last):
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/pyoanda/client.py", line 69, in __call
rjson = resp.json()
File "/Users/tolopalmer/.virtualenvs/forex/lib/python3.5/site-packages/requests/models.py", line 819, in json
return json.loads(self.text, **kwargs)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/__init__.py", line 319, in loads
return _default_decoder.decode(s)
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 339, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/Library/Frameworks/Python.framework/Versions/3.5/lib/python3.5/json/decoder.py", line 357, in raw_decode
raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0)
In [72]:
Out[72]:
228
In [ ]:
In [ ]:
In [ ]:
Content source: elyobo/pyoanda
Similar notebooks: