Skip to main content

A Python client for the Persephone REST API

Project description

1. Installation

You can install persephone-client-pi from pip:

$ pip install persephone-client-py

2. Usage

There are two main classes - PersephoneClient and PersephoneBuildHelper. The former can be used to access the full-range of the API, while the latter is more useful during a CI run in order to create a build, upload screenshots and finish the build.

3. Using PersephoneBuildHelper to submit screenshots during a build

The example here uses the standard Jenkins environment variables. You can use anything else instead:

# For example in your setUpClass method or wrapper script
persephone = PersephoneBuildHelper(
    'http://persephone.yourdomain.com',
    'username',
    'password',
    '1',
    os.getenv('ghprbActualCommit'),
    os.getenv('ghprbSourceBranch'),
    os.getenv('BUILD_NUMBER'),
    os.getenv('BUILD_URL'),
    os.getenv('ghprbPullId'),
)
persephone.create_build()
# In your testcase, assuming self.driver is a Selenium driver instance
persephone.upload_screenshot('Main Page.png', self.driver.screenshot_as_png())
# After the build is finished - tearDownClass or end of wrapper script
persephone.finish_build()

If you create the build and then want to use a separate instance of PersephoneBuildHelper to upload the screenshots (for example the build is managed by a wrapper script), you can access the build ID using persephone.build_id right after calling create_build and pass that to the testing module. Inside, you can create a minimal PersephoneBuildHelper using only the endpoint, username, password and build_id and use that to upload the screenshots.

4. Using the built-in Jenkins and CircleCI helpers

If you’re using Jenkins or CircleCI to build your project, then you can skip some of the work described above. persephone-client-py comes with helper classes that can take most of the information from the environment variables those system provide. You still have to provide the endpoint, username, password and project ID. That can be done either via environment variables (PERSEPHONE_ENDPOINT, PERSEPHONE_USERNAME, PERSEPHONE_PASSWORD, PERSEPHONE_PROJECT_ID) or by passing them via kwargs to the respective constructor. If those environment variables are present, you can just construct the objects and start using the API:

persephone = JenkinsBuildHelper()
# or
persephone = CircleCIBuildHelper()
# and then
persephone.create_build()
persephone.upload_screenshot(...)

The Jenkins helper support standard builds as well as those triggered by the GitHub Pull Request Builder plugin. CircleCI has native support for master/branch/PR builds.

5. Using the command line interface

After you install persephone-client-py, you can use the persephone_cli command-line interface to manage builds and upload screenshots. The configuration parameters (endpoint, username, etc.) can be passed via environment variables or command line options. You can list the options using persephone_cli --help. The environment variables are available with the PERSEPHONE_ prefix. For example, if the command-line option is --commit-hash the respective environment variable is PERSEPHONE_COMMIT_HASH. The environment variables, if present, can still be overridden using the command line options.

Creating a build:

$ persephone-cli --endpoint "http://persephone.yourdomain.com/" --username admin \
    --password admin create_build
5

The above command outputs the new build ID. To upload a screenshot:

$ persephone-cli --endpoint "http://persephone.yourdomain.com/" --username admin \
    --password admin upload_screenshot --build-id 5 --image-path myimage.png \
    --image-name "Main Page.png"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

persephone-client-py-0.0.2.tar.gz (6.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

persephone_client_py-0.0.2-py3-none-any.whl (9.8 kB view details)

Uploaded Python 3

File details

Details for the file persephone-client-py-0.0.2.tar.gz.

File metadata

File hashes

Hashes for persephone-client-py-0.0.2.tar.gz
Algorithm Hash digest
SHA256 75851b63a3231734a5eca33499f33944af2da249586daf442f8ff4d12b390c70
MD5 7385707f44837c6d332092a0dcb9f419
BLAKE2b-256 149896cd28bf1e9681c50db2791c4289dd989220ee6c681fd223934ff2dd3078

See more details on using hashes here.

File details

Details for the file persephone_client_py-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for persephone_client_py-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 cc389441261a14c269c5ea4377557d47f9d766e614c4337f74e8796c461d96b8
MD5 39ebf4bba671dc2138bcec25a9fd6f0d
BLAKE2b-256 650e58809f2b70729cbb8c3d4dcf1b63e84a9b691c30025199a4fa9c2811e125

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page