summaryrefslogtreecommitdiffstats
path: root/todolist.py
blob: c062bbf9eee579f45020ddf6a070196480bc28fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/usr/bin/python
# -*- coding: utf-8 -*-

import storage.factory
import item
import random

from time import time

def main():
    store = storage.factory.getStorage()
    items = store.load()
    items += item.item('asda', 12345678, 231)
    
    for i in items:
        print i.getTitle()
        print i.getCreatedAt()
        print i.getPriority()
        print '========================================'
        i.priority = random.randint(0,10)

    return
    
if __name__ == '__main__':
    main()