You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I am using pyapacheatlas to communicate to my Apache Atlas server. I am trying to establish connection using kerberos. Currently there is no class under pyapacheatlas.auth. I found KerberosAuthentication class and its been not showing in this project package.
To Reproduce
Steps to reproduce the behavior:
add following code
from pyapacheatlas.auth import KerberosAuthentication
from pyapacheatlas.core import AtlasClient
Expected behavior
I should be able to establish connection.
However I am getting issue - importError: cannot import name 'Kerberos Authentication' from 'apache atlas.auth'` Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
OS: [e.g. Windows, Mac]
PyApacheAtlas Version (python -m pyapacheatlas --version):
Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered:
Hi, @Rems143 this package does not currently support Kerberos Authentication. You might be thinking of another Apache Atlas python package? This one only support Azure and Basic Auth.
I'd be glad to accept a PR to wrap any Kerberos authentication that you might need!
Hi, @Rems143 this package does not currently support Kerberos Authentication. You might be thinking of another Apache Atlas python package? This one only support Azure and Basic Auth.
I'd be glad to accept a PR to wrap any Kerberos authentication that you might need!
Describe the bug
I am using pyapacheatlas to communicate to my Apache Atlas server. I am trying to establish connection using kerberos. Currently there is no class under pyapacheatlas.auth. I found KerberosAuthentication class and its been not showing in this project package.
To Reproduce
Steps to reproduce the behavior:
add following code
from pyapacheatlas.auth import KerberosAuthentication
from pyapacheatlas.core import AtlasClient
Initialize Kerberos Authentication
auth = KerberosAuthentication()
Create Atlas Client with Kerberos Authentication
client = AtlasClient(endpoint_url=atlas_url, authentication=auth)
Expected behavior
I should be able to establish connection.
However I am getting issue -
importError: cannot import name 'Kerberos Authentication' from 'apache atlas.auth'`
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
python -m pyapacheatlas --version
):Additional context
Add any other context about the problem here.
The text was updated successfully, but these errors were encountered: