-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Get auth docs building For some reason, the docstrings for the auth classes aren't being built into the docs. Add a link from the main page to get things generated.
- Loading branch information
Showing
6 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
****************** | ||
Auth (`pyvo.auth`) | ||
****************** | ||
This module contains submodules which help handle auth when | ||
communicating with virtual observatory services. | ||
|
||
Reference/API | ||
============= | ||
|
||
.. automodapi:: pyvo.auth | ||
|
||
.. automodapi:: pyvo.auth.authsession | ||
|
||
.. automodapi:: pyvo.auth.authurls | ||
|
||
.. automodapi:: pyvo.auth.credentialstore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,3 +121,4 @@ Using `pyvo` | |
dal/index | ||
registry/index | ||
io/index | ||
auth/index |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
# Licensed under a 3-clause BSD style license - see LICENSE.rst | ||
|
||
__all__ = ["AuthSession", "AuthURLs", "CredentialStore"] | ||
|
||
from .authsession import AuthSession | ||
from .authurls import AuthURLs | ||
from .credentialstore import CredentialStore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,8 @@ | |
|
||
from . import securitymethods | ||
|
||
__all__ = ["AuthURLs"] | ||
|
||
|
||
class AuthURLs(): | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,8 @@ | |
|
||
from . import securitymethods | ||
|
||
__all__ = ["CredentialStore"] | ||
|
||
|
||
class CredentialStore(object): | ||
""" | ||
|