-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPaxful_Main.py
59 lines (37 loc) · 1.07 KB
/
Paxful_Main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -*- coding: utf-8 -*-
"""
Created on Wed Jul 18 14:55:21 2018
@author: Matt
File: Paxful_Main
"""
from Paxful_Scraper import *
from Paxful_DB import *
create_BTC_price_table()
"""
upperBound = 21353150
lowerBound = '21000152'
while (upperBound <= 22753150):
print("hello")
lowerBound = api_call(upperBound, lowerBound)
push_to_dataframe()
push_to_csv()
create_table()
print('done!')
upperBound += 50000
"""
"""
To-do:
Importing:
Import Bitcoin Price Data into Database for correct dates
Import Economic data into Database
Querying:
Visualization:
Do some basic visualization of queries
Number of transactions over time
Do I need to put day date as new column?
histogram of currency types
pie chart of payment methods within USD
Get graph to show human-readable date, not unix
"""
"""
"""