Skip to content

Instantly share code, notes, and snippets.

View EmmanuelDgz's full-sized avatar

EmmanuelDgz

  • Andromeda
View GitHub Profile
@EmmanuelDgz
EmmanuelDgz / oh-my-zsh-bira-conda-venv.md
Created April 1, 2021 09:06 — forked from Samyak2/oh-my-zsh-bira-conda-venv.md
Adding virtualenv and conda support to Oh My Zsh Bira theme
@EmmanuelDgz
EmmanuelDgz / authentication.py
Created October 30, 2020 11:26 — forked from WayneSan/authentication.py
PyJWT + Django REST framework 2
import jwt
from django.conf import settings
from django.contrib.auth.models import User
from rest_framework import exceptions
from rest_framework.authentication import TokenAuthentication
class JSONWebTokenAuthentication(TokenAuthentication):