Remove graphql.py
This commit is contained in:
@@ -8,8 +8,9 @@ from __future__ import unicode_literals
|
|||||||
|
|
||||||
# These imports are far too general, but they're needed for backwards compatbility.
|
# These imports are far too general, but they're needed for backwards compatbility.
|
||||||
from .utils import *
|
from .utils import *
|
||||||
from .graphql import *
|
|
||||||
from .models import *
|
from .models import *
|
||||||
|
|
||||||
|
from ._graphql import graphql_queries_to_json, graphql_response_to_json, GraphQL
|
||||||
from ._client import Client
|
from ._client import Client
|
||||||
|
|
||||||
__title__ = "fbchat"
|
__title__ = "fbchat"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
# -*- coding: UTF-8 -*-
|
# -*- coding: UTF-8 -*-
|
||||||
|
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import requests
|
import requests
|
||||||
import urllib
|
import urllib
|
||||||
from uuid import uuid1
|
from uuid import uuid1
|
||||||
@@ -10,7 +10,7 @@ from mimetypes import guess_type
|
|||||||
from collections import OrderedDict
|
from collections import OrderedDict
|
||||||
from ._util import *
|
from ._util import *
|
||||||
from .models import *
|
from .models import *
|
||||||
from .graphql import *
|
from ._graphql import graphql_queries_to_json, graphql_response_to_json, GraphQL
|
||||||
import time
|
import time
|
||||||
import json
|
import json
|
||||||
|
|
||||||
|
@@ -4,5 +4,4 @@ from __future__ import unicode_literals
|
|||||||
|
|
||||||
from .utils import *
|
from .utils import *
|
||||||
from .models import *
|
from .models import *
|
||||||
from .graphql import *
|
|
||||||
from ._client import Client
|
from ._client import Client
|
||||||
|
@@ -1,14 +0,0 @@
|
|||||||
# -*- 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_queries_to_json,
|
|
||||||
graphql_response_to_json,
|
|
||||||
GraphQL,
|
|
||||||
)
|
|
Reference in New Issue
Block a user