try out django
[mlpccg-meta.git] / mlpccg / CardDb.py
index 043bc92..cadbc37 100644 (file)
@@ -2,6 +2,7 @@ import json
 import os
 import urllib
 import logging
+import time
 
 class CardDb:
     set_ids = {
@@ -14,7 +15,7 @@ class CardDb:
 
     set_names = {} # generated
 
-    def __init__(self, json_path='cards.json', extra_path='cards_extra.json'):
+    def __init__(self, json_path='data/cards.json', extra_path='data/cards_extra.json'):
         logging.debug('init card database')
 
         for name, id in CardDb.set_ids.iteritems():
@@ -68,7 +69,7 @@ class CardDb:
         except IOError:
             logging.exception('failed')
 
-    def download_cards_json(self, json_path='cards.json', url='https://dl.dropboxusercontent.com/u/32733446/cards.json'):
+    def download_cards_json(self, json_path='data/cards.json', url='https://dl.dropboxusercontent.com/u/32733446/cards.json'):
         logging.debug('downloading %s from %s', json_path, url)
         try:
             urllib.urlretrieve(url, json_path)