Later export plugin

project python later plugin

Later is an issue tracker that I have been working on. This time, I created a plugin that exports the data as a JSON file. The design of the output takes after a relational database design.

Design of JSON data

{
    'issues':{
        'guid1':{
            'properties':{},
            'summ':'',
            'full':''
        }
    },
    'revisions':[
        {
            'rev': 'rev1',
            'reported':['guid1', 'guid2'],
            'confiremd':['guid3', 'guid4'],
            'closed:['guid5', 'guid6']
        }
    ]
}
Export plugin for later