Skip to content
View AnkDos's full-sized avatar
🎯
Focusing
🎯
Focusing
  • Niyo
  • Banglore,India

Organizations

@OpenGenus @projectclubgit
Block or Report

Block or report AnkDos

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

  1. Random_Album_API Random_Album_API Public

    API to suggest a random album from a list of Rolling Stone's 500 Greatest Albums to showcase how we can structure our code using flask blueprint , writing class based view for a better organized co…

    Python

  2. drf-request-model drf-request-model Public

    A request model decorator to validate the request at DRF APIView , aim is to write a library that can be configured to validate any type of request .

    Python

  3. TicTacToe_P2P TicTacToe_P2P Public

    An online Tic Tac Toe game that can be played player to player by using websockets

    JavaScript

  4. petite_validator.py petite_validator.py
    1
    #Created By AnkDos(https://github.com/AnkDos)
    2
    #A decorator to validate function argument
    3
    
                  
    4
    def validate_inputs(func):
    5
        def validate(*args):
  5. A ruby program to parse AISSCE resul... A ruby program to parse AISSCE resullt of a range of roll number.
    1
    # Created by Ankur (https://github.com/ankdos)
    2
    
                  
    3
    require 'mechanize'                                # Importing the required library 
    4
    
                  
    5
    mechanize     = Mechanize.new                      # Creating the mechanize instance
  6. Flatten a dictonary , nested diction... Flatten a dictonary , nested dictionary into plain dictonary
    1
    def flatten(data):
    2
        flatten_dict = {}
    3
        def flat(data_, key, pkey=''):
    4
            if isinstance(data_, dict):
    5
                if data_ == dict():