Skip to content

Homework done #112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
50 changes: 50 additions & 0 deletions week-0/day-1/piyush_raj_script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
url='https://wallpapercave.com/dark-knight-hd-wallpaper'
durl='https://wallpapercave.com'

echo "Getting content of webpage"
content=$(wget $url -q -o -)

echo "Getting img tags out of webpage"
imgs=($(grep -oE "<img.*/>" <<< $content))
images=()

echo "Creating links"
for i in ${imgs[@]}
do
arr=($(grep 'src=/wp' <<< $i))
len=${#arr[@]}
if ["$len" -ne 0 ]
then
loc=`echo "$i" | cut -d '"' -f 2`
images+=($durl$loc)
fi
done

echo "Making Download directory"
mkdir -p piyush_raj_download

for i in ${images[@]}
do
echo "Downloading image: "$i
wget -P ./piyush_raj_download $i
done

echo "All images downloaded"


















2 changes: 0 additions & 2 deletions week-0/day-3/my_todo_app/.gitignore

This file was deleted.

45 changes: 25 additions & 20 deletions week-0/day-3/my_todo_app/todo_app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,15 @@

from flask import Flask
from flask import request

from flask import render_template

# our fake db
#our fake db
todo_store = {}
todo_store['depo'] = ['Go for run', 'Listen Rock Music']
todo_store['shivang'] = ['Read book', 'Play Fifa', 'Drink Coffee']
todo_store['raj'] = ['Study', 'Brush']
todo_store['sanket'] = ['Sleep', 'Code']
todo_store['aagam'] = ['play cricket', 'have tea']
todo_store['depo']=['Go for run' , 'Listen Rock music']
todo_store['shivang']=['Read' , 'Code']
todo_store['raj']=['Study' , 'Jerkoff']
todo_store['pallav']=['Run', 'Play CS']


def create_app(test_config=None):
# create and configure the app
Expand All @@ -27,46 +26,52 @@ def select_todos(name):
global todo_store
return todo_store[name]

def insert_todo(name, todo):
def insert_todo(name,todo):
global todo_store
current_todos = todo_store[name]
current_todos.append(todo)
todo_store[name] = current_todos
return

def add_todo_by_name(name, todo):
# call DB function
insert_todo(name, todo)
def add_todo_by_name(name,todo):
#call db as model
insert_todo(name,todo)
return

def get_todos_by_name(name):
try:
return select_todos(name)
except:
return None


# http://127.0.0.1:5000/todos?name=duster
@app.route('/todos')
def todos():
print('----------------')
name = request.args.get('name')
print('---------')
print(name)
print('---------')

print('----------------')
person_todo_list = get_todos_by_name(name)
#return todo_view(person_todo_list)
if person_todo_list == None:
return render_template('404.html'), 404
#throw 404
return render_template('404.html'),404
else:
return render_template('todo_view.html',todos=person_todo_list)



@app.route('/add_todos')
def add_todos():
name = request.args.get('name')
todo = request.args.get('todo')
add_todo_by_name(name, todo)
return 'Added Successfully'
print('--------')
print(name,todo)
print('--------')
add_todo_by_name(name,todo)
return 'Added Succesfully'




return app

Binary file removed week-0/day-3/my_todo_app/todo_app/__init__.pyc
Binary file not shown.
Binary file not shown.
3 changes: 1 addition & 2 deletions week-0/day-3/my_todo_app/todo_app/templates/404.html
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
<h3>404</h3>
<h3>Record not found</h3>
<h2>Not Found:Err_404</h2>
5 changes: 2 additions & 3 deletions week-0/day-3/my_todo_app/todo_app/templates/todo_view.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
List of my todos:<br/>

List of todos:<br/>
{% for todo in todos %}
{{todo}}<br/>
{% endfor %}

---- LIST ENDS HERE ---
--LIST ENDS HERE--
76 changes: 76 additions & 0 deletions week-0/day-3/my_todo_app/venv/bin/activate
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
# This file must be used with "source bin/activate" *from bash*
# you cannot run it directly

deactivate () {
# reset old environment variables
if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
PATH="${_OLD_VIRTUAL_PATH:-}"
export PATH
unset _OLD_VIRTUAL_PATH
fi
if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
export PYTHONHOME
unset _OLD_VIRTUAL_PYTHONHOME
fi

# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
hash -r
fi

if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
PS1="${_OLD_VIRTUAL_PS1:-}"
export PS1
unset _OLD_VIRTUAL_PS1
fi

unset VIRTUAL_ENV
if [ ! "$1" = "nondestructive" ] ; then
# Self destruct!
unset -f deactivate
fi
}

# unset irrelevant variables
deactivate nondestructive

VIRTUAL_ENV="/home/piyush-pc/Documents/homework_day3/academy-hackathon/week-0/day-3/my_todo_app/venv"
export VIRTUAL_ENV

_OLD_VIRTUAL_PATH="$PATH"
PATH="$VIRTUAL_ENV/bin:$PATH"
export PATH

# unset PYTHONHOME if set
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
# could use `if (set -u; : $PYTHONHOME) ;` in bash
if [ -n "${PYTHONHOME:-}" ] ; then
_OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
unset PYTHONHOME
fi

if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
_OLD_VIRTUAL_PS1="${PS1:-}"
if [ "x(venv) " != x ] ; then
PS1="(venv) ${PS1:-}"
else
if [ "`basename \"$VIRTUAL_ENV\"`" = "__" ] ; then
# special case for Aspen magic directories
# see http://www.zetadev.com/software/aspen/
PS1="[`basename \`dirname \"$VIRTUAL_ENV\"\``] $PS1"
else
PS1="(`basename \"$VIRTUAL_ENV\"`)$PS1"
fi
fi
export PS1
fi

# This should detect bash and zsh, which have a hash command that must
# be called to get it to forget past commands. Without forgetting
# past commands the $PATH changes we made may not be respected
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
hash -r
fi
37 changes: 37 additions & 0 deletions week-0/day-3/my_todo_app/venv/bin/activate.csh
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# This file must be used with "source bin/activate.csh" *from csh*.
# You cannot run it directly.
# Created by Davide Di Blasi <[email protected]>.
# Ported to Python 3.3 venv by Andrew Svetlov <[email protected]>

alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; test "\!:*" != "nondestructive" && unalias deactivate'

# Unset irrelevant variables.
deactivate nondestructive

setenv VIRTUAL_ENV "/home/piyush-pc/Documents/homework_day3/academy-hackathon/week-0/day-3/my_todo_app/venv"

set _OLD_VIRTUAL_PATH="$PATH"
setenv PATH "$VIRTUAL_ENV/bin:$PATH"


set _OLD_VIRTUAL_PROMPT="$prompt"

if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
if ("venv" != "") then
set env_name = "venv"
else
if (`basename "VIRTUAL_ENV"` == "__") then
# special case for Aspen magic directories
# see http://www.zetadev.com/software/aspen/
set env_name = `basename \`dirname "$VIRTUAL_ENV"\``
else
set env_name = `basename "$VIRTUAL_ENV"`
endif
endif
set prompt = "[$env_name] $prompt"
unset env_name
endif

alias pydoc python -m pydoc

rehash
75 changes: 75 additions & 0 deletions week-0/day-3/my_todo_app/venv/bin/activate.fish
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
# This file must be used with ". bin/activate.fish" *from fish* (http://fishshell.org)
# you cannot run it directly

function deactivate -d "Exit virtualenv and return to normal shell environment"
# reset old environment variables
if test -n "$_OLD_VIRTUAL_PATH"
set -gx PATH $_OLD_VIRTUAL_PATH
set -e _OLD_VIRTUAL_PATH
end
if test -n "$_OLD_VIRTUAL_PYTHONHOME"
set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
set -e _OLD_VIRTUAL_PYTHONHOME
end

if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
functions -e fish_prompt
set -e _OLD_FISH_PROMPT_OVERRIDE
functions -c _old_fish_prompt fish_prompt
functions -e _old_fish_prompt
end

set -e VIRTUAL_ENV
if test "$argv[1]" != "nondestructive"
# Self destruct!
functions -e deactivate
end
end

# unset irrelevant variables
deactivate nondestructive

set -gx VIRTUAL_ENV "/home/piyush-pc/Documents/homework_day3/academy-hackathon/week-0/day-3/my_todo_app/venv"

set -gx _OLD_VIRTUAL_PATH $PATH
set -gx PATH "$VIRTUAL_ENV/bin" $PATH

# unset PYTHONHOME if set
if set -q PYTHONHOME
set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
set -e PYTHONHOME
end

if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
# fish uses a function instead of an env var to generate the prompt.

# save the current fish_prompt function as the function _old_fish_prompt
functions -c fish_prompt _old_fish_prompt

# with the original prompt function renamed, we can override with our own.
function fish_prompt
# Save the return status of the last command
set -l old_status $status

# Prompt override?
if test -n "(venv) "
printf "%s%s" "(venv) " (set_color normal)
else
# ...Otherwise, prepend env
set -l _checkbase (basename "$VIRTUAL_ENV")
if test $_checkbase = "__"
# special case for Aspen magic directories
# see http://www.zetadev.com/software/aspen/
printf "%s[%s]%s " (set_color -b blue white) (basename (dirname "$VIRTUAL_ENV")) (set_color normal)
else
printf "%s(%s)%s" (set_color -b blue white) (basename "$VIRTUAL_ENV") (set_color normal)
end
end

# Restore the return status of the previous command.
echo "exit $old_status" | .
_old_fish_prompt
end

set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
end
11 changes: 11 additions & 0 deletions week-0/day-3/my_todo_app/venv/bin/easy_install
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/home/piyush-pc/Documents/homework_day3/academy-hackathon/week-0/day-3/my_todo_app/venv/bin/python3

# -*- coding: utf-8 -*-
import re
import sys

from setuptools.command.easy_install import main

if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())
11 changes: 11 additions & 0 deletions week-0/day-3/my_todo_app/venv/bin/easy_install-3.6
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/home/piyush-pc/Documents/homework_day3/academy-hackathon/week-0/day-3/my_todo_app/venv/bin/python3

# -*- coding: utf-8 -*-
import re
import sys

from setuptools.command.easy_install import main

if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())
11 changes: 11 additions & 0 deletions week-0/day-3/my_todo_app/venv/bin/flask
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/home/piyush-pc/Documents/homework_day3/academy-hackathon/week-0/day-3/my_todo_app/venv/bin/python3

# -*- coding: utf-8 -*-
import re
import sys

from flask.cli import main

if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())
11 changes: 11 additions & 0 deletions week-0/day-3/my_todo_app/venv/bin/pip
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/home/piyush-pc/Documents/homework_day3/academy-hackathon/week-0/day-3/my_todo_app/venv/bin/python3

# -*- coding: utf-8 -*-
import re
import sys

from pip import main

if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(main())
Loading