Skip to content

Instantly share code, notes, and snippets.

View katkamrachana's full-sized avatar

Rachana Katkam katkamrachana

View GitHub Profile
@katkamrachana
katkamrachana / Big List of Real Estate APIs.md
Created December 29, 2020 07:16 — forked from patpohler/Big List of Real Estate APIs.md
Evolving list of Real Estate APIs by Category

Big List of Real Estate APIs

Listings / Property Data

####Rets Rabbit http://www.retsrabbit.com

Rets Rabbit removes the nightmare of importing thousands of real estate listings and photos from RETS or ListHub and gives you an easy to use import and Web API server so you can focus on building your listing search powered website or app.

@katkamrachana
katkamrachana / py_data_structures.py
Created September 8, 2018 23:39
Demonstration of Data Structures in Python
# Python3
list_obj = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144]
print("List: ", list_obj)
print("Element at 2nd index : ", list_obj[2])
# Expected Output: 1
print("From 0th index and before 5th index: ", list_obj[0:5])
# Expected Output: [0, 1, 1, 2, 3]
print("From 3rd index and before 4th index: ", list_obj[3:4])
@katkamrachana
katkamrachana / module_card_styles.css
Created January 29, 2018 10:26
module card styles
$module-card-font-size: 12.5px;
$module-card-line-height: 1.4;
$module-card-lines-to-show: 3;
.module_card {
display: table;
height: 290px;
width: 526px;
cursor: pointer;
margin: 10px;
@katkamrachana
katkamrachana / grp_dashboard.py
Created January 18, 2018 10:17
group-dashboard
@get_execution_time
def group_dashboard(request, group_id=None):
try:
group_obj = ""
# shelf_list = {}
# shelves = []
alternate_template = ""
profile_pic_image = None
@katkamrachana
katkamrachana / README-Template.md
Last active February 13, 2018 10:10 — forked from PurpleBooth/README-Template.md
A template to make good README.md

ChirayuAestheticDental

A service based web for Dr. Rajlaxmi Katkam Ghone, Spl in Aesthetic Dentistry(New York), B.D.S(Mumbai).

Deployment

Heroku

Built With

@katkamrachana
katkamrachana / bobp-python.md
Created August 9, 2017 10:04 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
list_obj = [[1,2,[3]],4]
result = []
def flatten_list(input_ele, list_obj=[]):
if isinstance(input_ele, list):
flatten_list(input_ele, list_obj)
else:
list_obj.append(input_ele)