We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After I installed the module with pip install deutsche_bahn_api I imported it with
from deutsche_bahn_api import * api = ApiAuthentication("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET")
Now the program is not able to find the ApiAuthentication class. Same when using:
deutsche_bahn_api.ApiAuthentication(..)
On the other hand if I import this way
import deutsche_bahn_api.api_authentication as dba api = dba.ApiAuthentication("YOUR_CLIENT_ID", "YOUR_CLIENT_SECRET")
Everthing works fine and the class is found.
Can somebody please explain to me why the ApiAuthentication class has to be imported this way?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After I installed the module with pip install deutsche_bahn_api I imported it with
Now the program is not able to find the ApiAuthentication class.
Same when using:
On the other hand if I import this way
Everthing works fine and the class is found.
Can somebody please explain to me why the ApiAuthentication class has to be imported this way?
The text was updated successfully, but these errors were encountered: