Skip to content
View Sajadrahimi's full-sized avatar
Block or Report

Block or report Sajadrahimi

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Software-Foundations-Coq Software-Foundations-Coq Public

    Answers to some of exercises from "Software Foundations" by Benjamin C. Pierce

    Coq 1

  2. arvan-vod arvan-vod Public

    A python SDK for ArvanCloud API

    Python 2

  3. pony pony Public

    Forked from ponyorm/pony

    Pony Object Relational Mapper

    Python

  4. Execute a function after sending res... Execute a function after sending response to user.
    1
    from rest_framework.response import Response
    2
    class ResponseThen(Response):
    3
    	def __init__(self, data=None, callback=None, *args, **kwargs):
    4
    		assert callable(callback) or callback is None, "callback parameter must be callable"
    5
    		super(ResponseThen, self).__init__(data, *args, **kwargs)
  5. DRF auth by third-party private key DRF auth by third-party private key
    1
    import logging
    2
    import os
    3
    
                  
    4
    import jwt
    5
    from django.contrib.auth import get_user_model
  6. SHUCK SHUCK Public

    a Social Network for Book Readers.

    JavaScript 2