Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tothemoon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Taddeüs Kroes
tothemoon
Commits
a9cd57fa
Commit
a9cd57fa
authored
8 years ago
by
Taddeüs Kroes
Browse files
Options
Downloads
Patches
Plain Diff
Add command line arguments to poll script
parent
407be6e0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
api.py
+49
-13
49 additions, 13 deletions
api.py
with
49 additions
and
13 deletions
api.py
+
49
−
13
View file @
a9cd57fa
...
...
@@ -4,35 +4,41 @@ import os
import
atexit
import
time
import
grequests
from
argparse
import
ArgumentParser
from
Queue
import
PriorityQueue
interval
=
3
# poll exchange tickers every
3
seconds
interval
=
2
# poll exchange tickers every
2
seconds
cap_interval
=
60
# poll check market cap every minute
exchanges
=
{
'
https://btc-e.com/api/3/ticker/btc_usd
'
:
(
'
btce
'
,
(
'
btc_usd
'
,
'
last
'
),
'
USD
'
,
interval
)
,
[
'
btce
'
,
(
'
btc_usd
'
,
'
last
'
),
'
USD
'
,
interval
]
,
'
https://api.gdax.com/products/BTC-USD/ticker
'
:
(
'
coinbase
'
,
(
'
price
'
,),
'
USD
'
,
interval
)
,
[
'
coinbase
'
,
(
'
price
'
,),
'
USD
'
,
interval
]
,
'
https://www.bitstamp.net/api/v2/ticker/btcusd/
'
:
(
'
bitstamp
'
,
(
'
last
'
,),
'
USD
'
,
interval
)
,
[
'
bitstamp
'
,
(
'
last
'
,),
'
USD
'
,
interval
]
,
'
https://api.bitfinex.com/v1/pubticker/btcusd
'
:
(
'
bitfinex
'
,
(
'
last_price
'
,),
'
USD
'
,
interval
)
,
[
'
bitfinex
'
,
(
'
last_price
'
,),
'
USD
'
,
interval
]
,
'
https://data.btcchina.com/data/ticker?market=btccny
'
:
(
'
btcchina
'
,
(
'
ticker
'
,
'
last
'
),
'
CNY
'
,
interval
)
,
[
'
btcchina
'
,
(
'
ticker
'
,
'
last
'
),
'
CNY
'
,
interval
]
,
'
http://api.huobi.com/staticmarket/ticker_btc_json.js
'
:
(
'
huobi
'
,
(
'
ticker
'
,
'
last
'
),
'
CNY
'
,
interval
)
,
[
'
huobi
'
,
(
'
ticker
'
,
'
last
'
),
'
CNY
'
,
interval
]
,
'
https://www.okcoin.com/api/v1/ticker.do?symbol=btc_usd
'
:
(
'
okcoin
'
,
(
'
ticker
'
,
'
last
'
),
'
CNY
'
,
interval
)
,
[
'
okcoin
'
,
(
'
ticker
'
,
'
last
'
),
'
CNY
'
,
interval
]
,
'
https://api.kraken.com/0/public/Ticker?pair=XXBTZEUR
'
:
(
'
kraken
'
,
(
'
result
'
,
'
XXBTZEUR
'
,
'
c
'
,
0
),
'
EUR
'
,
interval
)
,
[
'
kraken
'
,
(
'
result
'
,
'
XXBTZEUR
'
,
'
c
'
,
0
),
'
EUR
'
,
interval
]
,
'
https://api.coinmarketcap.com/v1/ticker/bitcoin/
'
:
(
'
coinmarketcap
'
,
(
0
,
'
market_cap_usd
'
),
'
USD
'
,
cap_interval
)
,
[
'
coinmarketcap
'
,
(
0
,
'
market_cap_usd
'
),
'
USD
'
,
cap_interval
]
,
}
queue
=
PriorityQueue
(
len
(
exchanges
))
def
generate_requests
():
assert
queue
.
empty
()
for
url
in
exchanges
.
iterkeys
():
queue
.
put
((
0
,
url
))
while
True
:
scheduled
,
url
=
queue
.
get
()
wait
=
scheduled
-
time
.
time
()
...
...
@@ -43,12 +49,39 @@ def generate_requests():
yield
grequests
.
get
(
url
,
timeout
=
5
)
if
__name__
==
'
__main__
'
:
for
url
in
exchanges
.
iterkeys
():
queue
.
put
((
0
,
url
))
# parse command line options
parser
=
ArgumentParser
(
description
=
'
Poll bitcoin API services.
'
)
parser
.
add_argument
(
'
-d
'
,
'
--dir
'
,
metavar
=
'
PATH
'
,
type
=
str
,
default
=
'
/dev/shm/tothemoon
'
,
help
=
'
directory to save poll results in
'
'
(default dev/shm/tothemoon)
'
)
parser
.
add_argument
(
'
-i
'
,
'
--interval
'
,
metavar
=
'
SECONDS
'
,
type
=
float
,
default
=
interval
,
help
=
'
poll interval per exchange in seconds
'
'
(default %f)
'
%
interval
)
parser
.
add_argument
(
'
-l
'
,
'
--list
'
,
action
=
'
store_true
'
,
default
=
False
,
help
=
'
list exchange info
'
)
args
=
parser
.
parse_args
()
root
=
args
.
dir
for
ex
in
exchanges
.
itervalues
():
if
ex
[
0
]
!=
'
coinmarketcap
'
:
ex
[
3
]
=
args
.
interval
if
args
.
list
:
for
url
,
(
exid
,
indices
,
currency
,
interval
)
in
exchanges
.
iteritems
():
print
exid
print
'
url:
'
,
url
print
'
currency:
'
,
currency
print
'
lookup: response[%s]
'
%
'
][
'
.
join
(
repr
(
i
)
for
i
in
indices
)
print
'
interval:
'
,
interval
,
'
seconds
'
print
'
path: %s/%s
'
%
(
root
,
exid
)
sys
.
exit
(
0
)
root
=
sys
.
argv
[
1
]
if
len
(
sys
.
argv
)
==
2
else
'
/dev/shm/tothemoon
'
create_root
=
not
os
.
path
.
isdir
(
root
)
# clean up created files on exit
def
remove_files
():
for
ex
in
exchanges
.
itervalues
():
path
=
root
+
'
/
'
+
ex
[
0
]
...
...
@@ -60,6 +93,7 @@ if __name__ == '__main__':
atexit
.
register
(
remove_files
)
# create root directory if necessary
if
create_root
:
try
:
os
.
mkdir
(
root
)
...
...
@@ -68,6 +102,8 @@ if __name__ == '__main__':
print
>>
sys
.
stderr
,
e
.
strerror
sys
.
exit
(
1
)
# keep updating URLs from priority queue, adding them back to the queue
# scheduled after their current interval
try
:
for
res
in
grequests
.
imap
(
generate_requests
()):
exid
,
indices
,
currency
,
interval
=
exchanges
[
res
.
request
.
url
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment