Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b89e1f2

Browse files
committed
Improving README
1 parent d25e05d commit b89e1f2

File tree

1 file changed

+56
-3
lines changed

1 file changed

+56
-3
lines changed

README.md

Lines changed: 56 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,57 @@
1-
auth0-py
2-
========
1+
##auth0-py
2+
3+
Example of integrating a Python Web App with Auth0.
4+
5+
## Install
6+
7+
### Getting virtualenv
8+
9+
Install virtualenv (this step can be done using `easy_install` too):
10+
11+
```sh
12+
pip install virtualenv
13+
```
14+
15+
Create an environment:
16+
17+
```sh
18+
virtualenv auth0env
19+
```
20+
21+
### Installing dependencies
22+
23+
Activate your virtualenv environment:
24+
25+
```sh
26+
source auth0env/bin/activate
27+
```
28+
29+
Install dependencies:
30+
31+
```sh
32+
pip install webob webapp2 paste
33+
```
34+
35+
## Usage
36+
37+
Run the sample app:
38+
```sh
39+
python sample.py
40+
```
41+
42+
## What is Auth0?
43+
44+
Auth0 helps you to:
45+
46+
* Add authentication with [multiple authentication sources](https://docs.auth0.com/identityproviders), either social like **Google, Facebook, Microsoft Account, LinkedIn, GitHub, Twitter, Box, Salesforce, amont others**, or enterprise identity systems like **Windows Azure AD, Google Apps, Active Directory, ADFS or any SAML Identity Provider**.
47+
* Add authentication through more traditional **[username/password databases](https://docs.auth0.com/mysql-connection-tutorial)**.
48+
* Add support for **[linking different user accounts](https://docs.auth0.com/link-accounts)** with the same user.
49+
* Support for generating signed [Json Web Tokens](https://docs.auth0.com/jwt) to call your APIs and **flow the user identity** securely.
50+
* Analytics of how, when and where users are logging in.
51+
* Pull data from other sources and add it to the user profile, through [JavaScript rules](https://docs.auth0.com/rules).
52+
53+
## Create a free account in Auth0
54+
55+
1. Go to [Auth0](https://auth0.com) and click Sign Up.
56+
2. Use Google, GitHub or Microsoft Account to login.
357

4-
Python SDK

0 commit comments

Comments
 (0)