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
This SDK allows a web developer to quickly add Duo's interactive, self-service, two-factor authentication to any Python web login form. Both Python 2 and Python 3 are supported.
10
+
This SDK allows a web developer to quickly add Duo's interactive, self-service, two-factor authentication to any Python3 web login form. Only Python 3 is supported.
11
11
12
12
What's here:
13
13
*`duo_universal` - The Python Duo SDK for interacting with the Duo Universal Prompt
@@ -17,7 +17,7 @@ What's here:
17
17
## Getting Started
18
18
To use the SDK in your existing development environment, install it from pypi (https://pypi.org/project/duo_universal).
19
19
```
20
-
pip install duo_universal
20
+
pip3 install duo_universal
21
21
```
22
22
Once it's installed, see our developer documentation at https://duo.com/docs/duoweb and `demo/app.py` in this repo for guidance on integrating Duo 2FA into your web application.
23
23
@@ -26,37 +26,29 @@ To contribute, fork this repo and make a pull request with your changes when the
26
26
27
27
If you're not already working from a dedicated development environment, it's recommended a virtual environment is used. Assuming a virtual environment named `env`, create and activate the environment:
0 commit comments