File tree Expand file tree Collapse file tree 4 files changed +16
-7
lines changed Expand file tree Collapse file tree 4 files changed +16
-7
lines changed Original file line number Diff line number Diff line change 89
89
# - name: Update intraday
90
90
# run: python scripts/update_intraday.py
91
91
92
+ - name : Update indices
93
+ run : python scripts/update_indices.py
94
+
92
95
- name : Update unemployment
93
96
run : python scripts/update_unrate.py
94
97
Original file line number Diff line number Diff line change 1
1
import os
2
+ import sys
2
3
from multiprocessing import Process
3
- from hyperdrive .DataSource import Polygon , Alpaca
4
- from hyperdrive .Constants import PathFinder
5
- import hyperdrive .Constants as C
4
+ sys .path .append ('hyperdrive' )
5
+ from DataSource import Polygon , Alpaca # noqa autopep8
6
+ from Constants import PathFinder # noqa autopep8
7
+ import Constants as C # noqa autopep8
6
8
7
9
alpc = Alpaca (paper = C .TEST )
8
10
poly = Polygon (os .environ ['POLYGON' ])
Original file line number Diff line number Diff line change 1
- from hyperdrive .DataSource import Indices
1
+ import sys
2
+ sys .path .append ('hyperdrive' )
3
+ from DataSource import Indices # noqa autopep8
2
4
3
5
idc = Indices ()
4
6
Original file line number Diff line number Diff line change 1
1
import os
2
+ import sys
2
3
from multiprocessing import Process , Value
3
- from hyperdrive .DataSource import Polygon , Alpaca
4
- from hyperdrive .Constants import PathFinder
5
- import hyperdrive .Constants as C
4
+ sys .path .append ('hyperdrive' )
5
+ from DataSource import Polygon , Alpaca # noqa autopep8
6
+ from Constants import PathFinder # noqa autopep8
7
+ import Constants as C # noqa autopep8
6
8
7
9
counter = Value ('i' , 0 )
8
10
alpc = Alpaca (paper = C .TEST )
You can’t perform that action at this time.
0 commit comments