/DevJobs-Scout

receive emails about specific software jobs in areas that interest you

Primary LanguagePython

Developer Jobs Scout


About

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

The Result

Home Page

devjobs home

Success Page

devjobs update

CSS was decent...


Potential improvements:

  • 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)

Install

pip install flask

Import

from flask import Flask, request, render_template, redirect
import requests
import smtplib
import auth

Run

set FLASK_APP=app.py
set FLASK_DEBUG=1
flask run

Inspiration

I took an old project from last year (a terminal tool) and created a frontend for it (to make it more visual).