This is a DevJobs Web Application made with Python (flask framework), HTML and CSS that allows the user to:
- Search for a location and type of dev job they are interested in
- Receive an email if jobs in the specified location were found
CSS was decent...
- Deal with the edge cases appropriately (i.e false input/invalid locations or jobs)
- Implement user authentication (allow anyone to enter their email for a subscription)
pip install flask
from flask import Flask, request, render_template, redirect
import requests
import smtplib
import auth
set FLASK_APP=app.py
set FLASK_DEBUG=1
flask run
I took an old project from last year (a terminal tool) and created a frontend for it (to make it more visual).