├── db.py ├── requirements.txt ├── static ├── css │ ├── results.css │ └── main.css ├── index.html └── email.html ├── server.py ├── README.md ├── .gitignore ├── search.py └── templates └── results.html /db.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | certifi==2022.12.7 2 | chardet==3.0.4 3 | click==6.7 4 | Flask==1.0.2 5 | idna==2.7 6 | itsdangerous==0.24 7 | Jinja2==2.10 8 | MarkupSafe==1.0 9 | praw==5.4.0 10 | prawcore==0.14.0 11 | requests==2.19.1 12 | update-checker==0.16 13 | urllib3==1.23 14 | Werkzeug==0.14.1 15 | -------------------------------------------------------------------------------- /static/css/results.css: -------------------------------------------------------------------------------- 1 | .card{ 2 | margin: 25px; 3 | } 4 | .card time{ 5 | color: #E94057; 6 | } 7 | 8 | .title{ 9 | font-size: 30px; 10 | text-align: center; 11 | font-weight: bold; 12 | margin: 15px; 13 | } 14 | 15 | .sub{ 16 | font-size: 20px; 17 | text-align: center; 18 | font-weight: bold; 19 | margin: 15px; 20 | 21 | } -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |60 | {{post.title}} 61 |
62 | 63 |What's in it for me ? By joining our list, you will be the first one to have access to Junter search engine, you can find great gigs quickly
61 | 62 | 83 | Send Me Opportunities 84 |