Order JSON config import
We should also retain order when importing JSON from a URL. Change-Id: I27ffb63de17606893779c7c4c002aee15d7b56e0
This commit is contained in:
parent
98811703f6
commit
ed359e957a
@ -22,7 +22,6 @@ import irc.bot
|
||||
import json
|
||||
import logging.config
|
||||
import os
|
||||
import requests
|
||||
import time
|
||||
import textwrap
|
||||
|
||||
@ -177,7 +176,7 @@ class PTGBot(SASL, SSL, irc.bot.SingleServerIRCBot):
|
||||
url = words[1]
|
||||
self.send(chan, "Loading DB from %s ..." % url)
|
||||
try:
|
||||
self.data.import_json(requests.get(url).json())
|
||||
self.data.import_json(url)
|
||||
self.send(chan, "Done.")
|
||||
except Exception as e:
|
||||
self.send(chan, "Error loading DB: %s" % e)
|
||||
|
@ -19,6 +19,7 @@ import datetime
|
||||
import json
|
||||
import os
|
||||
import random
|
||||
import requests
|
||||
|
||||
|
||||
class PTGDataBase():
|
||||
@ -45,9 +46,9 @@ class PTGDataBase():
|
||||
|
||||
self.save()
|
||||
|
||||
def import_json(self, jsondata):
|
||||
# Update the DB with the data found in the provided JSON
|
||||
self.data.update(jsondata)
|
||||
def import_json(self, url):
|
||||
# Update the DB with the JSON data found at URL
|
||||
self.data.update(requests.get(url).json(object_pairs_hook=OrderedDict))
|
||||
|
||||
# Add tracks mentioned in configuration that are not in track list
|
||||
for room, bookings in self.data['schedule'].items():
|
||||
|
Loading…
x
Reference in New Issue
Block a user