Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get auth docs building #194

Merged
merged 2 commits into from
May 5, 2020
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
16 changes: 16 additions & 0 deletions docs/auth/index.rst
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
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -121,3 +121,4 @@ Using `pyvo`
dal/index
registry/index
io/index
auth/index
6 changes: 6 additions & 0 deletions pyvo/auth/__init__.py
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
funbaker marked this conversation as resolved.
Show resolved Hide resolved
from .authurls import AuthURLs
from .credentialstore import CredentialStore
2 changes: 2 additions & 0 deletions pyvo/auth/authsession.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
from .authurls import AuthURLs
from .credentialstore import CredentialStore

__all__ = ["AuthSession"]


class AuthSession:
"""
Expand Down
2 changes: 2 additions & 0 deletions pyvo/auth/authurls.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@

from . import securitymethods

__all__ = ["AuthURLs"]


class AuthURLs():
"""
Expand Down
2 changes: 2 additions & 0 deletions pyvo/auth/credentialstore.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

from . import securitymethods

__all__ = ["CredentialStore"]


class CredentialStore(object):
"""
Expand Down