home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2010 November / maximum-cd-2010-11.iso / DiscContents / calibre-0.7.13.msi / file_807 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-08-06  |  1.1 KB  |  33 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.6)
  3.  
  4. __license__ = 'GPL v3'
  5. __copyright__ = '2009, John Schember <john at nachtimwald.com>'
  6. __docformat__ = 'restructuredtext en'
  7. from calibre.devices.usbms.driver import USBMS
  8.  
  9. class SNE(USBMS):
  10.     name = 'Samsung SNE Device Interface'
  11.     gui_name = 'Samsung SNE'
  12.     description = _('Communicate with the Samsung SNE eBook reader.')
  13.     author = 'Kovid Goyal'
  14.     supported_platforms = [
  15.         'windows',
  16.         'osx',
  17.         'linux']
  18.     FORMATS = [
  19.         'epub',
  20.         'txt']
  21.     VENDOR_ID = [
  22.         1256]
  23.     PRODUCT_ID = [
  24.         8273]
  25.     BCD = [
  26.         803]
  27.     VENDOR_NAME = ''
  28.     MAIN_MEMORY_VOLUME_LABEL = 'SNE Main Memory'
  29.     STORAGE_CARD_VOLUME_LABEL = 'SNE Storage Card'
  30.     EBOOK_DIR_MAIN = 'Book'
  31.     SUPPORTS_SUB_DIRS = True
  32.  
  33.