Skip to content

Instantly share code, notes, and snippets.

View steinfletcher's full-sized avatar

Stein steinfletcher

  • Oxford, United Kingdom
  • 20:16 (UTC +01:00)
View GitHub Profile
@steinfletcher
steinfletcher / jstree.py
Last active February 17, 2024 11:38
file system crawler to generate object tree json data for jsTree [http://www.jstree.com/]
#!/usr/bin/env python
import os
import json
class Node:
def __init__(self, id, text, parent):