hockeyapp.Application

class hockeyapp.Application(token)

Manage an Application at Hockeyapp

list()

List all apps for the API token, including owned apps, developer apps, member apps, and tester apps.

Return type:list
statistics(public_identifier)

Get statistics about downloads, installs, and crashes for all versions for an application.

Parameters:public_identifier (str) – The public identifier for the application
Return type:list
Raises :ValueError
upload(public_identifier, ipa_file=None, dsym_file=None, notes=None, notes_type=None, notify=False, status=1, mandatory=None, tags=None, commit_sha=None, build_server_url=None, repository_url=None)

Upload a new version of an application to HockeyApp. There must be either a ipa file or dsym file specified.

Parameters:
  • public_identifier (str) – The public identifier for the application
  • ipa_file (str) – Path to a ipa file to upload (optional)
  • dsym_file (str) – Path to a dsym file to upload (optional)
  • notes (str) – Notes for testers (optional)
  • notes_type (int) – The type of formatting for the notes (0, 1)
  • notify (bool) – Notify testers (optional)
  • status (int) – Download status (1, 2))
  • mandatory (bool) – Set version as mandatory (optional)
  • tags (list) – a list of tags to apply to the version (optional)
  • commit_sha (str) – The SCM commit sha for the version (optional)
  • build_server_url (str) – URL of the build job (optional)
  • repository_url (str) – URL to source repository (optional)
Raises :

ValueError

versions(public_identifier)

Get statistics about downloads, installs, and crashes for all versions for an application.

Parameters:public_identifier (str) – The public identifier for the application
Return type:list
Raises :ValueError

Project Versions

Previous topic

hockeyapp API Documentation

This Page