home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2011 January / maximum-cd-2011-01.iso / DiscContents / calibre-0.7.26.msi / file_799 (.txt) < prev    next >
Encoding:
Python Compiled Bytecode  |  2010-10-31  |  1.2 KB  |  36 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.         'pdf',
  21.         'txt']
  22.     VENDOR_ID = [
  23.         1256]
  24.     PRODUCT_ID = [
  25.         8273,
  26.         8275]
  27.     BCD = [
  28.         803]
  29.     VENDOR_NAME = 'SAMSUNG'
  30.     WINDOWS_MAIN_MEM = WINDOWS_CARD_A_MEM = 'SNE-60'
  31.     MAIN_MEMORY_VOLUME_LABEL = 'SNE Main Memory'
  32.     STORAGE_CARD_VOLUME_LABEL = 'SNE Storage Card'
  33.     EBOOK_DIR_MAIN = 'Books'
  34.     SUPPORTS_SUB_DIRS = True
  35.  
  36.