Skip to content

Commit 61aad37

Browse files
committed
doc string on header
1 parent 7903aa6 commit 61aad37

File tree

3 files changed

+18
-8
lines changed

3 files changed

+18
-8
lines changed

flask_oauthlib/__init__.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
11
# -*- coding: utf-8 -*-
2+
"""
3+
flask_oauthlib
4+
~~~~~~~~~~~~~~
5+
6+
Flask-OAuthlib is an extension to Flask that allows you to interact with
7+
remote OAuth enabled applications. It is a replacement for Flask-OAuth.
8+
9+
:copyright: (c) 2013 by Hsiaoming Yang.
10+
:license: BSD, see LICENSE for more details.
11+
"""
212

313
from . import info
414

flask_oauthlib/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# coding: utf-8
22
"""
3-
Flask-OAuthlib
4-
--------------
3+
flask_oauthlib.client
4+
~~~~~~~~~~~~~~~~~~~~~
55
6-
Implemnts OAuth1 and OAuth2 support for Flask.
6+
Implemnts OAuth1 and OAuth2 support for Flask.
77
8-
:copyright: (c) 2013 by Hsiaoming Yang.
8+
:copyright: (c) 2013 by Hsiaoming Yang.
99
"""
1010

1111
import urllib2

flask_oauthlib/provider.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# coding: utf-8
22
"""
3-
Flask-OAuthlib
4-
--------------
3+
flask_oauthlib.provider
4+
~~~~~~~~~~~~~~~~~~~~~~~
55
6-
Implemnts OAuth2 provider support for Flask.
6+
Implemnts OAuth2 provider support for Flask.
77
8-
:copyright: (c) 2013 by Hsiaoming Yang.
8+
:copyright: (c) 2013 by Hsiaoming Yang.
99
"""
1010

1111
from oauthlib.oauth2 import Server

0 commit comments

Comments
 (0)