Log in Register Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

abh's Profile Picture

abh

523 Files

133358 Views

Latest files of /abh/HTMLify

templates/ abh/HTMLify/templates/
20 Items
  • stylesheet.html
  • login.html
  • file-upload.html
  • registration.html
  • home.html
  • edit.html
  • extras.html
  • search-result.html
  • HTMLify Logo abh/HTMLify/logo.png
    119 Views
    0 Comments
    Media file
    HTMLify Logo (Transparent) abh/HTMLify/logo-transparent.png
    142 Views
    0 Comments
    Media file
    app.py abh/HTMLify/app.py
    384 Views
    0 Comments
    #HTMLify

    from flask import *
    from flask_migrate import *
    from random import randint, shuffle
    from hashlib import md5
    from os import remove, system, path
    from datetime import datetime, timedelta
    utils.py abh/HTMLify/utils.py
    392 Views
    0 Comments
    from random import randint
    from requests import get
    from models import users, files, db
    from os import remove, system, path
    from shutil import rmtree
    from pathlib import Path

    def filetype(ext):
    config.py abh/HTMLify/config.py
    338 Views
    0 Comments
    SECRET_KEY="REPLACE_WITH_YOUR_SECRATE_KEY_OR_RUN_SETUP.PY"
    SESSION_TOKENS_LIMIT=1024
    MAX_FILE_UPLOAD_LIMIT=32
    GIT_COMMAND_PATH = "git"
    MAX_FILES_ON_HOME = 128

    README.md abh/HTMLify/README.md
    423 Views
    2 Comments
    # HTMLify

    setup.py abh/HTMLify/setup.py
    372 Views
    0 Comments
    from os import system
    from sys import version_info as ver
    ver = ver.major
    from random import randint
    try:
    from app import app, db
    with app.app_context():
    db.create_all()
    models.py abh/HTMLify/models.py
    328 Views
    0 Comments
    from flask import request
    from flask_sqlalchemy import *
    from datetime import datetime
    from pygments import highlight, lexers, formatters
    from random import randint
    #from utils import *
    from config import *

    requirements.txt abh/HTMLify/requirements.txt
    364 Views
    0 Comments
    flask
    flask_sqlalchemy
    flask_migrate
    requests
    pygments