https://github.com/apkawa/django-rest-framework-jwt-oauth2
Integration the django-allauth with jwt workflow
https://github.com/apkawa/django-rest-framework-jwt-oauth2
Last synced: about 1 year ago
JSON representation
Integration the django-allauth with jwt workflow
- Host: GitHub
- URL: https://github.com/apkawa/django-rest-framework-jwt-oauth2
- Owner: Apkawa
- License: mit
- Created: 2018-05-17T12:23:23.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-01-06T11:38:03.000Z (over 6 years ago)
- Last Synced: 2025-06-20T09:05:36.558Z (about 1 year ago)
- Language: Python
- Size: 45.9 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/Apkawa/django-rest-framework-jwt-oauth2)
[](https://coveralls.io/github/Apkawa/django-rest-framework-jwt-oauth2)
[](https://codecov.io/gh/Apkawa/django-rest-framework-jwt-oauth2)
[](https://requires.io/github/Apkawa/django-rest-framework-jwt-oauth2/requirements/?branch=master)
[](https://pyup.io/repos/github/Apkawa/django-rest-framework-jwt-oauth2)
[]()
Project for merging different file types, as example easy thumbnail image and unpacking archive in one field
# Installation
```bash
pip install django-rest-framework-jwt-oauth2
```
or from git
```bash
pip install -e git+https://githib.com/Apkawa/django-rest-framework-jwt-oauth2.git#egg=django-rest-framework-jwt-oauth2
```
## Django and python version
| Python
Django | 3.5 | 3.6 | 3.7 | 3.8 |
|:-----------------:|--------------------|--------------------|--------------------|--------------------|
| 1.8 | :x: | :x: | :x: | :x: |
| 1.11 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :x: |
| 2.2 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| 3.0 | :x: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
# Usage
# Contributing
## run example app
```bash
pip install -r requirements-dev.txt
./test/manage.py migrate
./test/manage.py runserver
```
## run tests
```bash
pip install -r requirements-dev.txt
pytest
tox
```
## Update version
```bash
python setup.py bumpversion
```
## publish pypi
```bash
python setup.py publish
```