Skip to content

Commit cf7410c

Browse files
committed
Merge branch 'new-master'
2 parents 11daad4 + f50a05b commit cf7410c

17 files changed

+28
-11
lines changed

INSTALL.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
To install
2+
3+
python setup.py install

bookViewer.py renamed to bin/bookViewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from six.moves import cPickle
77
from collections import deque
88

9-
from bookViewerBook import BookViewerBook
9+
from pylimitbook.bookViewerBook import BookViewerBook
1010

1111
class BookViewer(object):
1212
def __init__(self):

create_graphing_data.py renamed to bin/create_graphing_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import csv
1111
from math import isnan
1212

13-
from researchBook import ResearchBook
13+
from pylimitbook.researchBook import ResearchBook
1414

1515
CREATE_ON_NBBO_CHANGE_ONLY = True # only output generate lines if the top of the book changes?
1616
timeseries = []
File renamed without changes.

parse.py renamed to bin/limitbook-parse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import sys
44
from six.moves import cStringIO
5-
from book import Book
5+
from pylimitbook.book import Book
66
from builtins import input
77

88
if __name__ == '__main__':

tseries.py renamed to bin/limitbook-tseries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from pandas import *
88

9-
from researchBook import ResearchBook
9+
from pylimitbook.researchBook import ResearchBook
1010

1111
timeseries = {}
1212

File renamed without changes.
File renamed without changes.

pylimitbook/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
#empty file for python

book.py renamed to pylimitbook/book.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
from collections import deque
44

5-
from tick import Bid, Ask, Trade
6-
from tree import Tree
5+
from pylimitbook.tick import Bid, Ask, Trade
6+
from pylimitbook.tree import Tree
77
from builtins import input
88
from six.moves import cStringIO as StringIO
99

0 commit comments

Comments
 (0)