Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)
That's it!
import colander as c | |
import deform.widget as w | |
from deform.form import Form | |
from deform.schema import FileData | |
import os | |
here = os.path.dirname(__file__) | |
class Store(dict): | |
def preview_url(self, name): |
Using Python's built-in defaultdict we can easily define a tree data structure:
def tree(): return defaultdict(tree)
That's it!
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
# encoding:utf-8 | |
u""" | |
用比较恶心的办法解决模板渲染时出现 UnicodeDecodeError 的问题 | |
This subscriber try to convert all <str> to <unicode> | |
functional available for Chameleon, Jinja2, and Mako | |
python -m unittest test_events | |
.F...F | |
====================================================================== | |
FAIL: testDoubleRemove (sqlalchemy_mptt.tests.test_flush.FlushingTest) | |
---------------------------------------------------------------------- | |
Traceback (most recent call last): | |
File "sqlalchemy_mptt/tests/test_flush.py", line 60, in testDoubleRemove | |
self.assertEqual(self.calls, 2) | |
AssertionError: 1 != 2 |
#include "fileio.h" | |
#include <QFile> | |
#include <QTextStream> | |
FileIO::FileIO() | |
{ | |
} | |
void FileIO::save(QString text){ |
"""JSONB data utilities.""" | |
import datetime | |
from decimal import Decimal | |
import copy | |
import json | |
import iso8601 | |
from sqlalchemy import inspect | |
from sqlalchemy.orm.attributes import flag_modified |
#!/usr/bin/env python3 | |
''' | |
always getting the most recent frame of a camera | |
================================================ | |
Usage: | |
------ | |
freshest_camera_frame.py |