mirror of
https://github.com/oDinZu/callirhoe.git
synced 2025-02-22 00:04:52 -05:00
- just launched 2to3-3.7 -- seems to be working! - had to fix string decoding in calmagick.py
12 lines
250 B
Python
12 lines
250 B
Python
#!/usr/bin/env python2.7
|
|
import glob
|
|
|
|
res = dict()
|
|
|
|
for x in ['lang', 'style', 'layouts', 'geom']:
|
|
res[x] = glob.glob('%s/*.py' % x)
|
|
|
|
print('resource_list = {}')
|
|
for x in list(res.keys()):
|
|
print('resource_list["%s"] = %s' % (x, str(res[x])))
|