aboutsummaryrefslogtreecommitdiffstats
path: root/jsonfactory.py
diff options
context:
space:
mode:
authorjantuomi <jans.tuomi@gmail.com>2016-07-19 14:50:22 +0300
committerjantuomi <jans.tuomi@gmail.com>2016-07-19 14:50:22 +0300
commit9d94a01b631676b54f680c2571ae4dbba9ccd037 (patch)
tree2cac58eba2cd5d29ae0c2192efc5ca365dde7f74 /jsonfactory.py
parent080cfd6cfe946e243239af201dea8466abaee020 (diff)
Restructure project
Diffstat (limited to 'jsonfactory.py')
-rw-r--r--jsonfactory.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/jsonfactory.py b/jsonfactory.py
deleted file mode 100644
index c57b430..0000000
--- a/jsonfactory.py
+++ /dev/null
@@ -1,27 +0,0 @@
-import json
-
-
-class JSONFactory(object):
- """Factory class to create JSON messages to be sent to the shoutbox API"""
- running_id = 1
-
- @staticmethod
- def make_object(text, user, timestamp, ip):
- """
- Create a JSON object from the passed parameters and
- add a running id
- """
- message = json.dumps({
- "id": JSONFactory.running_id,
- "text": text,
- "user": user,
- "timestamp": timestamp,
- "ip": ip
- })
- JSONFactory.running_id += 1
- return message
-
- @staticmethod
- def make_array(object_list):
- """Create a JSON array from a list of JSON objects"""
- return "[\n" + ",\n".join(object_list) + "\n]"