Skip to content

Instantly share code, notes, and snippets.

View harunurkst's full-sized avatar

Harun Ur Rashid harunurkst

View GitHub Profile
@harunurkst
harunurkst / async_push.py
Created April 25, 2019 10:35
asynchronous way to send dummy push. (Test function to get timing)
import time
import asyncio
import logging
async def send_push(user_id):
"""
demo function to send notification
"""
print("Start: "+str(user_id))
@harunurkst
harunurkst / pushme.py
Created April 25, 2019 10:31
basic function to test time counting.
import time
def send_push(user_id):
"""
demo function to send notification
"""
print("Start: "+str(user_id))
time.sleep(1) # sleep 1 second when sending notification.
print("Complete: "+str(user_id))
@harunurkst
harunurkst / custom_exception.py
Last active May 12, 2019 06:35
Custom exception handler for Django rest framework
from rest_framework.exceptions import ErrorDetail
def format_code(code_name):
"""Format django error code to Circle Error code"""
if code_name == 'blank':
return "BLANK_FIELD"
elif code_name == 'invalid':
return "INVALID_DATA"
elif code_name == 'required':
@harunurkst
harunurkst / timestamp_field.py
Created April 1, 2019 05:16
Custom serializer field to convert human readable date to timestamp
class TimeStampField(serializers.Field):
"""
A custom serializer field to convert human readable date (2019-04-01) to timestamp(1554094095)
"""
def to_representation(self, value):
"""
Convert timestamp to human readable time,
this function is called when api called to serialize data.
:param value: timestamp data
:return: 'YY-mm-dd' (i.e 2019-04-01)
@harunurkst
harunurkst / dump_db
Created January 20, 2019 05:59
dump postgresql database from server to local
# step -1
# backup db in server folder
pg_dump -U postgres your_dbname > name_you_want_to_save.sql
# Step -2
# Copy from server to local
scp -P 2205 [email protected]:location/of/your/server/sql/file.sql .
# replace ip, port, user with your origin data
# replace /location/of/your/... with your sql file in server
@harunurkst
harunurkst / range
Created March 15, 2015 20:52
A python program to get first, last value and difference value from user and print start to stop with step
#get input from user
start=int(raw_input("Enter stat number:"))
diff =int(raw_input("enter difference:"))
last=int(raw_input("enter last num:"))
#for loop with range function to get value
for i in range(start,last,diff):
print i