abh - HTMLify profile

abh's Profile Picture

abh

501 Files

101796 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
    107 Views
    0 Comments
    Media file
    HTMLify Logo (Transparent) abh/HTMLify/logo-transparent.png
    132 Views
    0 Comments
    Media file
    app.py abh/HTMLify/app.py
    318 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
    312 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
    270 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
    345 Views
    2 Comments
    # HTMLify

    setup.py abh/HTMLify/setup.py
    297 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
    271 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
    263 Views
    0 Comments
    flask
    flask_sqlalchemy
    flask_migrate
    requests
    pygments