Skip to content

Instantly share code, notes, and snippets.

@rnelsonchem
rnelsonchem / models.py
Created December 3, 2023 17:54
The table description
from sqlalchemy.orm import Mapped, mapped_column
from . import db
class TestTable(db.Model):
__tablename__ = 'test_table'
key: Mapped[int] = mapped_column(primary_key=True)
name: Mapped[str] = mapped_column()
@rnelsonchem
rnelsonchem / page.py
Created December 3, 2023 17:53
The test page file.
from flask import Blueprint
from . import db
from .models import TestTable
bp = Blueprint("test", __name__, url_prefix='/test')
@bp.route("/new", methods=("GET", "POST"))
def print_test():
return "Hello world!"
@rnelsonchem
rnelsonchem / __init__.py
Created December 3, 2023 17:49
My test Flask app main file
import click
from flask import Flask
from flask.cli import with_appcontext
from flask_sqlalchemy import SQLAlchemy
from sqlalchemy.orm import DeclarativeBase
class Base(DeclarativeBase):
pass
db = SQLAlchemy(model_class=Base)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rnelsonchem
rnelsonchem / demo.ipynb
Last active May 4, 2023 15:35
costcalc2 Demonstration
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rnelsonchem
rnelsonchem / AcidGas.ipynb
Last active March 28, 2023 19:10
AcidGas Class Test
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@rnelsonchem
rnelsonchem / HPLC Analysis.ipynb
Last active March 15, 2020 23:25
Some HPLC analysis tests
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.