-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.py
More file actions
26 lines (25 loc) · 756 Bytes
/
Copy pathdata.py
File metadata and controls
26 lines (25 loc) · 756 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,
'name': 'Article One',
'body': 'lorem Ipson Dolor ajhhak ufhkjhfks fjskjfjks fhsjkf ',
'author': 'Hamza Bhatti',
'create_date': '04-25-2021'
},
{
'id': 1,
'name': 'Article Two',
'body': 'lorem Ipson Dolor ajhhak ufhkjhfks fjskjfjks fhsjkf ',
'author': 'Bilal Bhatti',
'create_date': '04-25-2021'
},
{
'id': 1,
'name': 'Article Three',
'body': 'lorem Ipson Dolor ajhhak ufhkjhfks fjskjfjks fhsjkf ',
'author': 'Kashaf',
'create_date': '04-25-2021'
},
]
return articles