26 lines
450 B
Python
26 lines
450 B
Python
from __future__ import unicode_literals
|
|
|
|
data = {
|
|
'Manufacturing': {
|
|
'company_name': 'Wind Power LLC'
|
|
},
|
|
'Retail': {
|
|
'company_name': 'Mobile Next',
|
|
},
|
|
'Distribution': {
|
|
'company_name': 'Soltice Hardware',
|
|
},
|
|
'Services': {
|
|
'company_name': 'Acme Consulting'
|
|
},
|
|
'Education': {
|
|
'company_name': 'Whitmore College'
|
|
},
|
|
'Agriculture': {
|
|
'company_name': 'Schrute Farms'
|
|
},
|
|
'Non Profit': {
|
|
'company_name': 'Erpnext Foundation'
|
|
}
|
|
}
|