# prontoconv **Repository Path**: jemyzhang/prontoconv ## Basic Information - **Project Name**: prontoconv - **Description**: convert NEC format IR to pronto code - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2014-08-01 - **Last Updated**: 2021-11-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README prontoconv ========== convert NEC format IR to pronto code - Requirements: 1. [PalmDB](http://sourceforge.net/projects/pythonpalmdb) 2. python >= 2.7 - Patch for PalmDB: ``` --- a/PalmDB/PalmDatabase.py +++ b/PalmDB/PalmDatabase.py @@ -111,9 +111,9 @@ class PalmDatabase: self.attributes['databaseType']=typeID self.dirty = True def getFilename(self): - return self.attributes['PalmFileName'] + return self.attributes['fileName'] def setFilename(self,filename): - self.attributes['PalmFileName']=filename + self.attributes['fileName']=filename def getCategoriesObject(self): return self.attributes.get('_categoriesObject',None) ```