This file contains hidden or 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
import os | |
import bpy | |
import sys | |
import typing | |
import inspect | |
import pkgutil | |
import importlib | |
from pathlib import Path | |
__all__ = ( |
This file contains hidden or 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
#! /usr/bin/env python3 | |
""" | |
List all Firefox tabs with title and URL | |
Supported input: json or jsonlz4 recovery files | |
Default output: title (URL) | |
Output format can be specified as argument | |
""" |
This file contains hidden or 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
# the little less documented way of adding a custom node tree | |
# and populate it with nodes of varying types of I/O | |
# sockets that work together, discombobulated | |
# first we import the blender API | |
import bpy | |
# then we create the UI space, the node tree as it is called | |
# but in actualy fact this is similar to a UI panel/menu |