-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
25 lines (25 loc) · 851 Bytes
/
data.py
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
def Articles():
articles = [
{
'id':1,
'title':'Article One',
'body':'Lorem ipsum djfnsdjfn sjdnsjdns sjdnsjns jdnsjdns jsndjsdns jsndsjdnsj sjdnsjdnsj sndsj',
'author':'Atharva Kokate',
'create_date':'20-02-2020'
},
{
'id':1,
'title':'Article Two',
'body':'Lorem ipsum djfnsdjfn sjdnsjdns sjdnsjns jdnsjdns jsndjsdns jsndsjdnsj sjdnsjdnsj sndsj',
'author':'Atharva Kokate',
'create_date':'20-02-2020'
},
{
'id':1,
'title':'Article Three',
'body':'Lorem ipsum djfnsdjfn sjdnsjdns sjdnsjns jdnsjdns jsndjsdns jsndsjdnsj sjdnsjdnsj sndsj',
'author':'Atharva Kokate',
'create_date':'20-02-2020'
}
]
return articles