Lines Matching full:print

71   # Traverse the Management hiearchy and print results or handle errors.
77 print(('There was an error in constructing your query : %s' % error))
81 print(('Arg, there was an API error : %s : %s' %
85 print ('The credentials have been revoked or expired, please re-run'
143 print('------ Account Collection -------')
145 print()
148 print('Account ID = %s' % account.get('id'))
149 print('Kind = %s' % account.get('kind'))
150 print('Self Link = %s' % account.get('selfLink'))
151 print('Account Name = %s' % account.get('name'))
152 print('Created = %s' % account.get('created'))
153 print('Updated = %s' % account.get('updated'))
156 print('Child link href = %s' % child_link.get('href'))
157 print('Child link type = %s' % child_link.get('type'))
158 print()
161 print('No accounts found.\n')
172 print('------ Web Properties Collection -------')
174 print()
177 print('Kind = %s' % webproperty.get('kind'))
178 print('Account ID = %s' % webproperty.get('accountId'))
179 print('Web Property ID = %s' % webproperty.get('id'))
180 print(('Internal Web Property ID = %s' %
183 print('Website URL = %s' % webproperty.get('websiteUrl'))
184 print('Created = %s' % webproperty.get('created'))
185 print('Updated = %s' % webproperty.get('updated'))
187 print('Self Link = %s' % webproperty.get('selfLink'))
189 print('Parent link href = %s' % parent_link.get('href'))
190 print('Parent link type = %s' % parent_link.get('type'))
192 print('Child link href = %s' % child_link.get('href'))
193 print('Child link type = %s' % child_link.get('type'))
194 print()
197 print('No webproperties found.\n')
208 print('------ Profiles Collection -------')
210 print()
213 print('Kind = %s' % profile.get('kind'))
214 print('Account ID = %s' % profile.get('accountId'))
215 print('Web Property ID = %s' % profile.get('webPropertyId'))
216 print(('Internal Web Property ID = %s' %
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'))
225 print(('Exclude Query Parameters = %s' %
227 print(('Site Search Category Parameters = %s' %
229 print(('Site Search Query Parameters = %s' %
232 print('Created = %s' % profile.get('created'))
233 print('Updated = %s' % profile.get('updated'))
235 print('Self Link = %s' % profile.get('selfLink'))
237 print('Parent link href = %s' % parent_link.get('href'))
238 print('Parent link type = %s' % parent_link.get('type'))
240 print('Child link href = %s' % child_link.get('href'))
241 print('Child link type = %s' % child_link.get('type'))
242 print()
245 print('No profiles found.\n')
256 print('------ Goals Collection -------')
258 print()
261 print('Goal ID = %s' % goal.get('id'))
262 print('Kind = %s' % goal.get('kind'))
263 print('Self Link = %s' % goal.get('selfLink'))
265 print('Account ID = %s' % goal.get('accountId'))
266 print('Web Property ID = %s' % goal.get('webPropertyId'))
267 print(('Internal Web Property ID = %s' %
269 print('Profile ID = %s' % goal.get('profileId'))
271 print('Goal Name = %s' % goal.get('name'))
272 print('Goal Value = %s' % goal.get('value'))
273 print('Goal Active = %s' % goal.get('active'))
274 print('Goal Type = %s' % goal.get('type'))
276 print('Created = %s' % goal.get('created'))
277 print('Updated = %s' % goal.get('updated'))
280 print('Parent link href = %s' % parent_link.get('href'))
281 print('Parent link type = %s' % parent_link.get('type'))
283 # Print the goal details depending on the type of goal.
299 print()
302 print('No goals found.\n')
312 print('------ Url Destination Goal -------')
313 print('Goal URL = %s' % goal_details.get('url'))
314 print('Case Sensitive = %s' % goal_details.get('caseSensitive'))
315 print('Match Type = %s' % goal_details.get('matchType'))
316 print('First Step Required = %s' % goal_details.get('firstStepRequired'))
318 print('------ Url Destination Goal Steps -------')
320 print('Step Number = %s' % goal_step.get('number'))
321 print('Step Name = %s' % goal_step.get('name'))
322 print('Step URL = %s' % goal_step.get('url'))
325 print('No Steps Configured')
335 print('------ Visit Time On Site Goal -------')
336 print('Comparison Type = %s' % goal_details.get('comparisonType'))
337 print('comparison Value = %s' % goal_details.get('comparisonValue'))
347 print('------ Visit Num Pages Goal -------')
348 print('Comparison Type = %s' % goal_details.get('comparisonType'))
349 print('comparison Value = %s' % goal_details.get('comparisonValue'))
359 print('------ Event Goal -------')
360 print('Use Event Value = %s' % goal_details.get('useEventValue'))
364 print('Type = %s' % event_type)
367 print('Match Type = %s' % event_condition.get('matchType'))
368 print('Expression = %s' % event_condition.get('expression'))
370 print('Comparison Type = %s' % event_condition.get('comparisonType'))
371 print('Comparison Value = %s' % event_condition.get('comparisonValue'))
382 print('------ Segments Collection -------')
384 print()
387 print('Segment ID = %s' % segment.get('id'))
388 print('Kind = %s' % segment.get('kind'))
389 print('Self Link = %s' % segment.get('selfLink'))
390 print('Name = %s' % segment.get('name'))
391 print('Definition = %s' % segment.get('definition'))
392 print('Created = %s' % segment.get('created'))
393 print('Updated = %s' % segment.get('updated'))
394 print()
405 print('Items per page = %s' % management_response.get('itemsPerPage'))
406 print('Total Results = %s' % management_response.get('totalResults'))
407 print('Start Index = %s' % management_response.get('startIndex'))
411 print('Previous Link = %s' % management_response.get('previousLink'))
413 print('Next Link = %s' % management_response.get('nextLink'))