Пример #1
0
Файл: json.py Проект: bne/squeal
 def encode(self):
     t = self.original
     if t.is_loaded():
         return {
             u"id": unicode(Link.from_playlist(t)),
             u"status": u"",
             u"name": unicode(t.name(), "utf-8"),
             u"tracks": [simplify(x) for x in t],
         }
     else:
         return {u"id": u"unknown", u"status": u"", u"name": u"Loading...", u"tracks": []}
Пример #2
0
 def test_simplify(self):
     f = Frob("qux", "quux", "corge")
     self.assertEqual(simplify(f), {u'baz': u'corge', u'foo': u'qux', u'bar': u'quux'})
Пример #3
0
Файл: base.py Проект: bne/squeal
 def _simplify(o):
     try:
         return simplify(o)
     except ValueError:
         return o