-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.py
26 lines (25 loc) · 2.45 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
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 Manager1 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 Manager2 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'
}
]
return articles