first skeleton of the obitools3 package

This commit is contained in:
2015-05-26 10:37:26 +02:00
parent 5948858a72
commit 30ddb32dfe
13 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,8 @@
from capidms cimport *
class OBIDMS:
def __init__(self,name):
self.pointer = obi_create_dms(name)
def __del__(self):
obi_close_dms(self.pointer)