project_folder/
βββ app/
β βββ static/
β β βββ ...
β βββ templates/
β β βββ ...
β βββ extensions/
β β βββ __init__.py
β βββ __init__.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import typing as t | |
| from datetime import datetime | |
| def calculate_days_between_dates(date: t.Union[str, datetime]) -> int: | |
| """ | |
| Calculates the days between a date and now | |
| Date format must be in the format of %Y-%m-%d if date is a string | |
| """ | |
| if isinstance(date, datetime): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def money_to_int(value): | |
| """ | |
| Converts a money value, commonly in float format 100.00 to an int value 10000 | |
| """ | |
| if not value: | |
| return 0 | |
| if isinstance(value, str): | |
| if not value[0].isdigit(): | |
| value = value[1:] # Remove potential currency symbol |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def reverse_dict(input_dict: dict) -> dict: | |
| """ | |
| Swaps the values with keys of a dict | |
| """ | |
| return {v: k for k, v in input_dict.items()} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from datetime import datetime, date | |
| import typing as t | |
| from sqlalchemy import ( | |
| Result, | |
| Select, | |
| Insert, | |
| Update, | |
| Delete, | |
| select, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from enum import Enum | |
| class Colors(Enum): | |
| BLACK = '#000000' | |
| NIGHT = '#0C090A' | |
| CHARCOAL = '#34282C' | |
| OIL = '#3B3131' | |
| DARK_GRAY = '#3A3B3C' | |
| LIGHT_BLACK = '#454545' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pathlib | |
| import random | |
| from textwrap import dedent | |
| from flask import Flask, request, abort | |
| from werkzeug.utils import secure_filename | |
| def create_app(): | |
| app = Flask(__name__, static_url_path="/") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // imports here | |
| const server_url = '127.0.0.1:5000'; | |
| export default function Client() { | |
| const url_params = useParams(); | |
| // places dely on the amount of times a function is called, used in the form input onInput tag. | |
| function debounce(func, timeout = 300) { | |
| let timer; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # With help from : https://github.com/jonbiemond | |
| # | |
| # requires: | |
| # pip install flask flask_sqlalchemy | |
| # | |
| # run: flask --app sqlalchemy_to_josnable_dict.py init-db | |
| # run: flask --app sqlalchemy_to_josnable_dict.py test-data | |
| # run: flask --app sqlalchemy_to_josnable_dict.py get-user1 | |
| # run: flask --app sqlalchemy_to_josnable_dict.py get-user2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from email.mime.application import MIMEApplication | |
| from email.mime.multipart import MIMEMultipart | |
| from email.mime.text import MIMEText | |
| from pathlib import Path | |
| from smtplib import SMTP | |
| from smtplib import SMTPException | |
| from ssl import create_default_context | |
| from typing import Optional, Union | |