Log in Register Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

abh's Profile Picture

abh

556 Files

160851 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
    140 Views
    0 Comments
    Media file
    HTMLify Logo (Transparent) abh/HTMLify/logo-transparent.png
    162 Views
    0 Comments
    Media file
    app.py abh/HTMLify/app.py
    454 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
    477 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
    405 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
    508 Views
    2 Comments
    # HTMLify

    setup.py abh/HTMLify/setup.py
    450 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
    387 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
    494 Views
    0 Comments
    flask
    flask_sqlalchemy
    flask_migrate
    requests
    pygments