urlteam.py 316 B

12345678910111213
  1. # encoding=utf-8
  2. '''Formatting URL data into old URLTeam format.'''
  3. from terroroftinytown.format.base import *
  4. from terroroftinytown.format.beacon import *
  5. __all__ = ['UrlTeamWriter']
  6. class UrlTeamWriter(BEACONWriter):
  7. def write_header(self, *args, **kwargs):
  8. pass
  9. registry['urlteam'] = UrlTeamWriter