Metadata-Version: 2.1
Name: ddsf
Version: 0.0.9
Summary: access dsf
Home-page: https://gitlab.hrz.tu-chemnitz.de/slm/python-ddsf
Author: Lukas Jurk
Author-email: lukas.jurk@tu-dresden.de
License: UNKNOWN
Description: # python-dsf(ddsf)
        
        ## installation
        ```
        pip install ddsf
        ```
        
        ## usage
        
        ```
        # inititate connection
        dsf = Ddsf(url, user, password)
        ```
        
        ### rooms
        ```
        # get all rooms
        rooms = dsf.rooms()
        
        # print room attributes
        for room in dsf.rooms():
            print(room.data)
            # OR
            print(room.pretty())
        
        # edit room attributes
        for room in dsf.rooms():
            room.RoomName = "NewName"
            room.update()
        ```
        
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
