Lines Matching refs:profile
212 for profile in profiles_response.get('items', []):
213 print('Kind = %s' % profile.get('kind'))
214 print('Account ID = %s' % profile.get('accountId'))
215 print('Web Property ID = %s' % profile.get('webPropertyId'))
217 profile.get('internalWebPropertyId')))
218 print('Profile ID = %s' % profile.get('id'))
219 print('Profile Name = %s' % profile.get('name'))
221 print('Currency = %s' % profile.get('currency'))
222 print('Timezone = %s' % profile.get('timezone'))
223 print('Default Page = %s' % profile.get('defaultPage'))
226 profile.get('excludeQueryParameters')))
228 profile.get('siteSearchCategoryParameters')))
230 profile.get('siteSearchQueryParameters')))
232 print('Created = %s' % profile.get('created'))
233 print('Updated = %s' % profile.get('updated'))
235 print('Self Link = %s' % profile.get('selfLink'))
236 parent_link = profile.get('parentLink')
239 child_link = profile.get('childLink')