Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(2) | Call(2) | Derive(0) | Import(0)
src/p/y/py360-HEAD/report360.py py360(Download)
if magic == 'Account': self.output("Processing Account Blob", self.errfd) a = account.Account(s.read_file(s.allfiles[stfsfile])) self.print_account(a)
src/p/y/py360-HEAD/gamertags.py py360(Download)
# The account block is always at /Account in the STFS archive # we'll read it in, decode it and then print out the gamertag acc = account.Account(profile.read_file(profile.allfiles['/Account'])) print "Gamertag: %s, Type: %s" % (acc.get_gamertag(), acc.live_type) except (AssertionError, IOError):