Dashboard Temp Share Shortlinks Frames API

abh - HTMLify profile

files of /abh/HTMLify/

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

app.py /abh/HTMLify/app.py
484 Views
0 Comments
#HTMLify

from flask import *
from flask_migrate import *
from random import randint, shuffle
from hashlib import md5
from os im
config.py /abh/HTMLify/config.py
453 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 =
HTMLify Logo (Transparent) /abh/HTMLify/logo-transparent.png
192 Views
0 Comments
Media file
HTMLify Logo /abh/HTMLify/logo.png
168 Views
0 Comments
Media file
models.py /abh/HTMLify/models.py
427 Views
0 Comments
from flask import request
from flask_sqlalchemy import *
from datetime import datetime
from pygments import highlight, lexers, f
requirements.txt /abh/HTMLify/requirements.txt
583 Views
0 Comments
flask
flask_sqlalchemy
flask_migrate
requests
pygments
setup.py /abh/HTMLify/setup.py
502 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 a
templates /abh/HTMLify/templates/
20 Items
  • conferm-delete.html
  • dashboard.html
  • edit.html
  • extras.html
  • file-show.html
  • file-upload.html
  • git-clone.html
  • home.html
  • utils.py /abh/HTMLify/utils.py
    525 Views
    0 Comments
    from random import randint
    from requests import get
    from models import users, files, db
    from os import remove, system, path
    from