From 9a6ec8e1657c12f1bd7c9c8b327035e4194ed882 Mon Sep 17 00:00:00 2001 From: Ava Wroten Date: Mon, 24 Feb 2020 10:18:19 -0600 Subject: [PATCH] Removed api caching which fixed random meal fetching --- python-api/api.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/python-api/api.py b/python-api/api.py index 37813b6..ee76dbe 100644 --- a/python-api/api.py +++ b/python-api/api.py @@ -1,11 +1,8 @@ from pycnic.core import WSGI, Handler from key_replacer import KeyReplacer import requests -import requests_cache import json -requests_cache.install_cache() - class Base(Handler): hostname = "https://www.themealdb.com/api/json/v1/1/"