-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdata.py
More file actions
26 lines (25 loc) · 1002 Bytes
/
data.py
File metadata and controls
26 lines (25 loc) · 1002 Bytes
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
26
def Articles():
articles = [
{
'id': 1,
'title':'Article one',
'body':'once i need the blood for my beloved teacher Abhimanyu saxena to save his life, Blood positive sign provides quick platform to get blood',
'author':'Manish Pathak',
'create_date':'24-07-2019'
},
{
'id': 2,
'title':'Article two',
'body':'once i need the blood for my beloved teacher Shivang nagria to save his life, Blood positive sign provides quick platform to get blood',
'author':'Shubhangi singh',
'create_date':'23-07-2019'
},
{
'id': 3,
'title':'Article three',
'body':'once i need the blood for my beloved teacher Shivang nagria to save his life, Blood positive sign provides quick platform to get blood',
'author':'Anshuman singh',
'create_date':'22-07-2019'
}
]
return articles