Beispiel #1
0
    def get(self):
        inputData = UrlController.__getParser.parse_args()

        return {
            'urls':
            list(
                map(lambda x: x.json(),
                    Url.find_url_by_keywords(inputData['keywords'])))
        }