Skip to content

Instantly share code, notes, and snippets.

View MishraKhushbu's full-sized avatar

KHUSHBU KUMARI MishraKhushbu

  • Bangalore
View GitHub Profile
@MishraKhushbu
MishraKhushbu / JSON2XML.py
Last active August 7, 2019 10:50
JSON_TO_XML
import json
def json2xml(str_json): # function to convert json to xml
global my_str_startswith
global my_str_endswith
global mid_str_list
for items in str_json:
@MishraKhushbu
MishraKhushbu / SANDISk_Interview.py
Last active October 3, 2019 11:39
SanDisk Interview
How to access doc string of of function.
Doc string for any function can be accessed using funvtion.__doc__
e.g
>>> def my_func():
... """ i am happy and i only want to use doc string"""
... sum = a+b
... print(sum)
...
>>> my_func.__doc__
@MishraKhushbu
MishraKhushbu / PYTHON_DICTIONARY.py
Created September 5, 2019 05:49
PYTHON_DICTIONARY
Dictionary Methods
Python has a set of built-in methods that you can use on dictionaries.
url : https://www.w3schools.com/python/python_dictionaries.asp
Method Description
clear() ===>Removes all the elements from the dictionary e
copy() ====>Returns a copy of the dictionary
fromkeys()===>Returns a dictionary with the specified keys and values
get() ====>Returns the value of the specified key
@MishraKhushbu
MishraKhushbu / ROBOT_FRAMEWORK.py
Last active September 16, 2019 10:16
ROBOT_FRAMEWORK
Why Robot Framework??
It is for acceptance testing like when we know the functionality and to check. at that time it's automation can be done using this framwork.Minimal
programming knowledge is required. It's keyword driven means functions are akready written only arguments needs to be given.
It's clean code which means different sections for each type
for e.g
*****Settings****
*****Test Cases****
*****Keywords******
@MishraKhushbu
MishraKhushbu / CPS.py
Created December 23, 2019 10:39
CISCO POLICY SUITE
In this project I am showing CPS alarm and resync feature.
https://www.cisco.com/c/en/us/td/docs/wireless/quantum-policy-suite/R19-4-0/CPS19-4-0SNMPAlarmsandClearingProceduresGuide/CPS13-0-0SNMPAlarmsandClearingProceduresGuide_chapter_01.html
@MishraKhushbu
MishraKhushbu / mock_response_server.py
Created June 3, 2020 11:06
Web Page To Display Directory Structure in sha format
from bottle import *
import os
import File_Folder_Flask
# Server startup message
@route("/", methods=['POST', 'GET'])
def home():
return (
"Welcome! To the homepage")