projects
/
invirt/packages/python-routefs.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
I apparently used to have a crappy sense of style. Let's fix that.
[invirt/packages/python-routefs.git]
/
routefs
/
examples
/
dictexfs.py
1
#!/usr/bin/python
2
3
4
import routefs
5
6
7
class DictExFS(routefs.DictFS):
8
files = dict(Hello='World',
9
Directory=dict(a='a', b='b', c=routefs.Symlink('a')))
10
11
12
if __name__ == '__main__':
13
routefs.main(DictExFS)