Skip to content

Commit ae1bae0

Browse files
author
Lenar Gasimov
committed
feat: added complete day 62
Created a website in Flask that locates coffee spots with strong wifi, based on your Google location.
1 parent 60491ba commit ae1bae0

12 files changed

+335
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,4 @@ I'll be using this repo as a way for myself to access them as, if and when I nee
8080
- [Day 59](day59): Upgraded Blog with Bootstrap
8181
- [Day 60](day60): HTML Forms with Flask
8282
- [Day 61](day61): Building Advanced Forms with WTForms
83+
- [Day 62](day62): Flask, WTForms, Bootstrap and CSV - Coffee & Wifi Project

day62/README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Day 62
2+
3+
Created a website in Flask that locates coffee spots with strong wifi, based on your Google location.
4+
5+
## Coffee & Wifi Project
6+
7+
![wifi](wifi.gif)

day62/coffee-and-wifi/cafe-data.csv

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Cafe Name,Location,Open,Close,Coffee,Wifi,Power
2+
Lighthaus,https://goo.gl/maps/2EvhB4oq4gyUXKXx9,11AM, 3:30PM,☕☕☕☕️,💪💪,🔌🔌🔌
3+
Esters,https://goo.gl/maps/13Tjc36HuPWLELaSA,8AM,3PM,☕☕☕☕,💪💪💪,🔌
4+
Ginger & White,https://goo.gl/maps/DqMx2g5LiAqv3pJQ9,7:30AM,5:30PM,☕☕☕,✘,🔌
5+
Mare Street Market,https://goo.gl/maps/ALR8iBiNN6tVfuAA8,8AM,1PM,☕☕,💪💪💪,🔌🔌🔌
6+
Lenar's cafee,https://goo.gl/maps/qYMMHTsGVfdEuAcD8,7:00am,11:00pm,☕☕☕☕☕,💪💪💪💪💪,🔌🔌🔌🔌🔌

day62/coffee-and-wifi/main.py

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
from flask import Flask, render_template, redirect, url_for
2+
from flask_bootstrap import Bootstrap
3+
from flask_wtf import FlaskForm
4+
from wtforms import StringField, SubmitField, SelectField
5+
from wtforms.validators import DataRequired, URL
6+
import csv
7+
8+
app = Flask(__name__)
9+
app.config['SECRET_KEY'] = '8BYkEfBA6O6donzWlSihBXox7C0sKR6b'
10+
Bootstrap(app)
11+
12+
13+
class CafeForm(FlaskForm):
14+
cafe = StringField('Cafe name', validators=[DataRequired()])
15+
location = StringField("Cafe Location on Google Maps (URL)", validators=[DataRequired(), URL()])
16+
open = StringField("Opening Time e.g. 8AM", validators=[DataRequired()])
17+
close = StringField("Closing Time e.g. 5:30PM", validators=[DataRequired()])
18+
coffee_rating = SelectField("Coffee Rating", choices=["☕️", "☕☕", "☕☕☕", "☕☕☕☕", "☕☕☕☕☕"], validators=[DataRequired()])
19+
wifi_rating = SelectField("Wifi Strength Rating", choices=["✘", "💪", "💪💪", "💪💪💪", "💪💪💪💪", "💪💪💪💪💪"], validators=[DataRequired()])
20+
power_rating = SelectField("Power Socket Availability", choices=["✘", "🔌", "🔌🔌", "🔌🔌🔌", "🔌🔌🔌🔌", "🔌🔌🔌🔌🔌"], validators=[DataRequired()])
21+
submit = SubmitField('Submit')
22+
23+
24+
@app.route("/")
25+
def home():
26+
return render_template("index.html")
27+
28+
29+
@app.route('/add', methods=["GET", "POST"])
30+
def add_cafe():
31+
form = CafeForm()
32+
if form.validate_on_submit():
33+
with open("cafe-data.csv", mode="a") as csv_file:
34+
csv_file.write(f"\n{form.cafe.data},"
35+
f"{form.location.data},"
36+
f"{form.open.data},"
37+
f"{form.close.data},"
38+
f"{form.coffee_rating.data},"
39+
f"{form.wifi_rating.data},"
40+
f"{form.power_rating.data}")
41+
return redirect(url_for('cafes'))
42+
return render_template('add.html', form=form)
43+
44+
45+
@app.route('/cafes')
46+
def cafes():
47+
with open('cafe-data.csv', newline='') as csv_file:
48+
csv_data = csv.reader(csv_file, delimiter=',')
49+
list_of_rows = []
50+
for row in csv_data:
51+
list_of_rows.append(row)
52+
return render_template('cafes.html', cafes=list_of_rows)
53+
54+
55+
if __name__ == '__main__':
56+
app.run(debug=True)

day62/coffee-and-wifi/poetry.lock

+129
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

day62/coffee-and-wifi/pyproject.toml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[tool]
2+
[tool.poetry]
3+
authors = ["Your Name <[email protected]>"]
4+
name = "root"
5+
version = "0.0.0"
6+
description="flask template"
7+
[tool.poetry.dependencies]
8+
flask = "==1.0.2"
9+
python = "^3.8"
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
click==7.1.2
2+
dominate==2.5.2
3+
Flask==1.1.2
4+
Flask-Bootstrap==3.3.7.1
5+
Flask-WTF==0.14.3
6+
itsdangerous==1.1.0
7+
Jinja2==2.11.2
8+
MarkupSafe==1.1.1
9+
visitor==0.1.3
10+
Werkzeug==1.0.1
11+
WTForms==2.3.3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
/* to override Bootstrap styles for some things */
2+
3+
body {
4+
background-color: #333;
5+
color: white;
6+
}
7+
8+
a {
9+
color: #ffc107;
10+
}
11+
12+
.jumbotron {
13+
display: flex;
14+
align-items: center;
15+
margin: 0;
16+
height: 100vh;
17+
color: white;
18+
background-color: #333;
19+
}
20+
21+
.space-above {
22+
margin-top: 20px;
23+
padding-top: 20px;
24+
}
+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{% extends 'bootstrap/base.html' %}
2+
{% import "bootstrap/wtf.html" as wtf %}
3+
4+
{% block styles %}
5+
{{ super() }}
6+
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
7+
{% endblock %}
8+
9+
10+
{% block title %}Add A New Cafe{% endblock %}
11+
12+
13+
{% block content %}
14+
<div class="container">
15+
<div class="row">
16+
<div class="col-sm-12 col-md-8">
17+
18+
<h1>Add a new cafe into the database</h1>
19+
20+
{{ wtf.quick_form(form, novalidate=True) }}
21+
22+
<p class="space-above"><a href="{{ url_for('cafes') }}">See all cafes</a></p>
23+
24+
</div>
25+
</div>
26+
</div>
27+
28+
{% endblock %}
+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{% extends 'bootstrap/base.html' %}
2+
3+
{% block styles %}
4+
{{ super() }}
5+
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
6+
{% endblock %}
7+
8+
9+
{% block title %}All Cafes{% endblock %}
10+
11+
12+
{% block content %}
13+
14+
<div class="container">
15+
<div class="row">
16+
<div class="col-sm-12">
17+
18+
<h1>All Cafes</h1>
19+
20+
<table class="table">
21+
22+
{% for row in cafes %}
23+
<tr>
24+
{% for item in row %}
25+
{% if item[0:4] == "http" %}
26+
<td><a href="{{ item }}">Maps Link</a></td>
27+
{% else %}
28+
<td>{{ item }}</td>
29+
{% endif %}
30+
{% endfor %}
31+
</tr>
32+
{% endfor %}
33+
</table>
34+
<p><a href="{{ url_for('home') }}">Return to index page</a></p>
35+
36+
</div>
37+
</div>
38+
</div>
39+
40+
{% endblock %}
+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{% extends 'bootstrap/base.html' %}
2+
3+
{% block styles %}
4+
5+
{{ super() }}
6+
<link rel="stylesheet" href="{{ url_for('static', filename='css/styles.css') }}">
7+
{% endblock %}
8+
9+
10+
{% block title %}Coffee and Wifi{% endblock %}
11+
12+
13+
{% block content %}
14+
<div class="jumbotron text-center">
15+
<div class="container">
16+
<h1 class="display-4">☕️ Coffee & Wifi 💻</h1>
17+
<p class="lead">Want to work in a cafe but need power and wifi?</p>
18+
<hr class="my-4">
19+
<p>You've found the right place! Checkout my collection of cafes with data on power socket availability, wifi speed and coffee quality.</p>
20+
<a class="btn btn-warning btn-lg" href="{{ url_for('cafes') }}" role="button">Show Me!</a>
21+
</div>
22+
</div>
23+
24+
{% endblock %}

day62/wifi.gif

6.27 MB
Loading

0 commit comments

Comments
 (0)