From 40e9825ee0a2ccf7c3e92d4fd6599c1976a240a3 Mon Sep 17 00:00:00 2001 From: Mads Marquart Date: Sun, 24 Feb 2019 23:21:17 +0100 Subject: [PATCH] Add deprecated public `graphql` module --- fbchat/graphql.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 fbchat/graphql.py diff --git a/fbchat/graphql.py b/fbchat/graphql.py new file mode 100644 index 0000000..aeef27c --- /dev/null +++ b/fbchat/graphql.py @@ -0,0 +1,30 @@ +# -*- coding: UTF-8 -*- +"""This file is here to maintain backwards compatability.""" +from __future__ import unicode_literals + +from .models import * +from .utils import * +from ._graphql import ( + FLAGS, + WHITESPACE, + ConcatJSONDecoder, + graphql_color_to_enum, + get_customization_info, + graphql_to_sticker, + graphql_to_attachment, + graphql_to_extensible_attachment, + graphql_to_subattachment, + graphql_to_live_location, + graphql_to_poll, + graphql_to_poll_option, + graphql_to_plan, + graphql_to_quick_reply, + graphql_to_message, + graphql_to_user, + graphql_to_thread, + graphql_to_group, + graphql_to_page, + graphql_queries_to_json, + graphql_response_to_json, + GraphQL, +)