This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# An application that functions as a local SD model browser for the Civitai models that you downloaded. | |
# If you think you can improve this to be better, please do. | |
# Created with various LLM models. | |
import streamlit as st | |
import dateutil.parser | |
import pandas as pd | |
from datetime import datetime | |
import os | |
import json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bl_info = { | |
"name": "Align Vertices", | |
"author": "ChatGPT", | |
"description": "Align Vertices on a given axis", | |
"category": "Mesh", | |
} | |
import bpy | |
import bmesh |