We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa820b commit fbb79d7Copy full SHA for fbb79d7
examples/yoti_example_django/yoti_example/views.py
@@ -2,6 +2,12 @@
2
3
from django.views.generic import TemplateView
4
5
+from os.path import join, dirname
6
+from dotenv import load_dotenv
7
+
8
+dotenv_path = join(dirname(__file__), '.env')
9
+load_dotenv(dotenv_path)
10
11
from yoti_python_sdk import Client
12
from .app_settings import (
13
YOTI_APPLICATION_ID,
0 commit comments