(self,file="")
| 50 | self.results={} |
| 51 | |
| 52 | def readhb(self,file=""): |
| 53 | if os.path.isfile(file): |
| 54 | text_file = open("%s" % file, "r") |
| 55 | line=text_file.readline() |
| 56 | text_file.close() |
| 57 | return line |
| 58 | return 0 |
| 59 | |
| 60 | def writehb(self,file=""): |
| 61 | if file: |