Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions docs/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,3 @@ A good tip is to write ``from fbchat.models import *`` at the start of your sour
.. automodule:: fbchat.models
:members:
:undoc-members:


.. _api_utils:

Utils
-----

These functions and values are used internally by fbchat, and are subject to change. Do **NOT** rely on these to be backwards compatible!

.. automodule:: fbchat.utils
:members:
3 changes: 1 addition & 2 deletions fbchat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@
from __future__ import unicode_literals

# These imports are far too general, but they're needed for backwards compatbility.
from .utils import *
from .models import *

from ._graphql import graphql_queries_to_json, graphql_response_to_json, GraphQL
from ._client import Client
from ._util import log # TODO: Remove this (from examples too)

__title__ = "fbchat"
__version__ = "1.6.5"
Expand Down
Loading