home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- __license__ = 'GPL v3'
- __copyright__ = '2009, John Schember <john at nachtimwald.com>'
- __docformat__ = 'restructuredtext en'
- from calibre.devices.usbms.driver import USBMS
-
- class SNE(USBMS):
- name = 'Samsung SNE Device Interface'
- gui_name = 'Samsung SNE'
- description = _('Communicate with the Samsung SNE eBook reader.')
- author = 'Kovid Goyal'
- supported_platforms = [
- 'windows',
- 'osx',
- 'linux']
- FORMATS = [
- 'epub',
- 'txt']
- VENDOR_ID = [
- 1256]
- PRODUCT_ID = [
- 8273]
- BCD = [
- 803]
- VENDOR_NAME = ''
- MAIN_MEMORY_VOLUME_LABEL = 'SNE Main Memory'
- STORAGE_CARD_VOLUME_LABEL = 'SNE Storage Card'
- EBOOK_DIR_MAIN = 'Book'
- SUPPORTS_SUB_DIRS = True
-
-