summaryrefslogtreecommitdiff
path: root/py-fake-service/app/pixelated_user_agent.py
diff options
context:
space:
mode:
authorVictor Shyba <victor.shyba@gmail.com>2014-08-18 09:50:27 -0300
committerVictor Shyba <victor.shyba@gmail.com>2014-08-18 09:50:27 -0300
commitff110f03e4bdf526e61d844e0c8296ad804d511f (patch)
treede718df66d190ff325f8776febdb85ca7382d1da /py-fake-service/app/pixelated_user_agent.py
parent3e3ab15d98bf7ca866e0ff40e6adf43902a5eac3 (diff)
Apply PEP8 automatically
Diffstat (limited to 'py-fake-service/app/pixelated_user_agent.py')
-rw-r--r--py-fake-service/app/pixelated_user_agent.py15
1 files changed, 10 insertions, 5 deletions
diff --git a/py-fake-service/app/pixelated_user_agent.py b/py-fake-service/app/pixelated_user_agent.py
index bae95dee..7b163d7e 100644
--- a/py-fake-service/app/pixelated_user_agent.py
+++ b/py-fake-service/app/pixelated_user_agent.py
@@ -13,6 +13,7 @@ account = None
loaded = False
mail_service = MailService()
+
def respond_json(entity):
response = json.dumps(entity)
return Response(response=response, mimetype="application/json")
@@ -20,7 +21,7 @@ def respond_json(entity):
@app.route('/disabled_features')
def disabled_features():
- return respond_json([])
+ return respond_json([])
@app.route('/mails', methods=['POST'])
@@ -44,7 +45,7 @@ def update_draft():
@app.route('/mails')
def mails():
query = SearchQuery.compile(request.args.get('q', ''))
- page = request.args.get('p', '')
+ page = request.args.get('p', '')
window_size = request.args.get('w', '')
fetched_mails = mail_service.mails(query, page, window_size)
@@ -91,10 +92,12 @@ def mark_mail_as_read(mail_id):
mail_service.mark_as_read(mail_id)
return ""
+
@app.route('/contacts')
def contacts():
contacts_query = request.args.get('q')
- return respond_json({'contacts': mail_service.search_contacts(contacts_query)})
+ return respond_json(
+ {'contacts': mail_service.search_contacts(contacts_query)})
@app.route('/draft_reply_for/<int:mail_id>')
@@ -115,7 +118,9 @@ def load_mailset(mailset):
os.mkdir(mbox_root)
if len(os.listdir(mbox_root)) == 0:
- response = requests.get('https://example.wazokazi.is:8154/go/static/mediumtagged.tar.gz', verify=False)
+ response = requests.get(
+ 'https://example.wazokazi.is:8154/go/static/mediumtagged.tar.gz',
+ verify=False)
mbox_archive_path = os.path.join(mbox_root, 'mediumtagged.tar.gz')
mbox_archive = open(mbox_archive_path, 'w')
mbox_archive.write(response.content)
@@ -134,7 +139,7 @@ def index():
if not loaded:
load_mailset('mediumtagged')
loaded = True
-
+
return app.send_static_file('index.html')