James Bowler

Results 29 comments of James Bowler

To get around the API limit I have changed this. ``` # requester.py import requests import time def requester(url): time.sleep(3) return requests.get('https://blockchain.info/rawaddr/' + url).text ``` and .... ``` # orbit.py...

This is what I am doing for the level 3 order book. Built a rate limiter for the API calls, I use this for other stuff too, but it works...

Thought I would just comment to say Hello and let you know some people are watching the project. Unfortunately, I do not think this project is still active (someone correct...

Prob an unsupported pandas version with deprecated functions On Thu, 20 Dec 2018, 06:26 StudyQuant I am using python 3.7 > > from collections import deque > import datetime >...

Seems to be a common problem with Windows. https://www.google.co.uk/search?ei=x31oWpiYKMOAgQbA9LL4AQ&q=cannot+find+command+%27git%27+windows&oq=Cannot+find+command+%27git%27+wind&gs_l=psy-ab.3.0.0j0i22i30k1.1207.3211.0.4421.11.9.2.0.0.0.175.966.4j4.8.0....0...1c.1.64.psy-ab..1.7.669...0i20i263k1j33i160k1.0.GdA1tOAc9Lw

Are you looking at this part? ``` start = None end = None if self.start_date is not None: start = df.index.searchsorted(self.start_date) if self.end_date is not None: end = df.index.searchsorted(self.end_date) ```

can you provide the full trace back please?

To make it easier to read please format your message. ```python This is easy ``` Aren't you just passing a string to the parser somewhere?