This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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': |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import asyncio | |
import logging | |
async def send_push(user_id): | |
""" | |
demo function to send notification | |
""" | |
print("Start: "+str(user_id)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def djangoview(request, language1, language2): | |
async def main(language1, language2): | |
loop = asyncio.get_event_loop() | |
r = sr.Recognizer() | |
with sr.AudioFile(path.join(os.getcwd(), "audio.wav")) as source: | |
audio = r.record(source) | |
def reco_ibm(lang): | |
return(r.recognize_ibm(audio, key, secret language=lang, show_all=True)) | |
future1 = loop.run_in_executor(None, reco_ibm, str(language1)) | |
future2 = loop.run_in_executor(None, reco_ibm, str(language2)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends 'base.html' %} | |
{% block content %} | |
<div class="container"> | |
<div class="dashboard-block"> | |
<h2 class="dashboard-info-title">Profile Info</h2> | |
<form method="POST" action="{% url 'userprofile:create-profile' %}" enctype="multipart/form-data">{% csrf_token %} | |
{% for field in form %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# run bash in docker image | |
# docker run -it <image-name> bash | |
# if entrypoint defined | |
docker run -it --entrypoint bash jifcastback_djangoapp | |
# create superuser in docer container django app | |
sudo docker-compose run --entrypoint="python manage.py createsuperuser" djangoapp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.db import connections, OperationalError | |
# Drop all tables from a given database | |
""" | |
python manage.py runscript clean_database_tables | |
""" | |
def run(): |
OlderNewer