-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.py
57 lines (56 loc) · 3.79 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
def Articles():
articles = [
{
'id': 1,
'title': "Articles One",
'body': "NetIQ Access Manager doesn't force you to trade business agility for better security controls."
"Ensure user productivity from any location by extending seamless access and security to all your "
"users -- including partners. As a result, save time and money with heightened security and "
"simplified administration. Access Manager is the only solution to combine advanced capabilities "
"such as multi-factor authentication, data encryption, and Single Sign-on. NetIQ's comprehensive "
"approach saves you time and money by eliminating siloed provisioning and access control systems"
" and by automating manual, time consuming IT and business processes.",
'author': 'Mohamed S',
'create_date': '08-12-2019'
},
{
'id': 2,
'title': "Articles Two",
'body': "NetIQ Access Manager doesn't force you to trade business agility for better security controls."
"Ensure user productivity from any location by extending seamless access and security to all your "
"users -- including partners. As a result, save time and money with heightened security and "
"simplified administration. Access Manager is the only solution to combine advanced capabilities "
"such as multi-factor authentication, data encryption, and Single Sign-on. NetIQ's comprehensive "
"approach saves you time and money by eliminating siloed provisioning and access control systems"
" and by automating manual, time consuming IT and business processes.",
'author': 'Iburahimsha S',
'create_date': '08-12-2019'
},
{
'id': 3,
'title': "Articles Three",
'body': "NetIQ Access Manager doesn't force you to trade business agility for better security controls."
"Ensure user productivity from any location by extending seamless access and security to all your "
"users -- including partners. As a result, save time and money with heightened security and "
"simplified administration. Access Manager is the only solution to combine advanced capabilities "
"such as multi-factor authentication, data encryption, and Single Sign-on. NetIQ's comprehensive "
"approach saves you time and money by eliminating siloed provisioning and access control systems"
" and by automating manual, time consuming IT and business processes.",
'author': 'Aysha S',
'create_date': '08-12-2019'
},
{
'id': 4,
'title': "Articles Three",
'body': "NetIQ Access Manager doesn't force you to trade business agility for better security controls."
"Ensure user productivity from any location by extending seamless access and security to all your "
"users -- including partners. As a result, save time and money with heightened security and "
"simplified administration. Access Manager is the only solution to combine advanced capabilities "
"such as multi-factor authentication, data encryption, and Single Sign-on. NetIQ's comprehensive "
"approach saves you time and money by eliminating siloed provisioning and access control systems"
" and by automating manual, time consuming IT and business processes.",
'author': 'Safwaan S',
'create_date': '12-01-2020'
}
]
return articles