Skip to main content

Python gradle wrapper

Project description

Python gradle wrapper

Overview

pygradle is an wrapper for gradle, the modern open source build automation system. Its goal is to call gradle command and configuration from python script.

Usage

It’s helpful to use pygradle and pytractor <https://github.com/kpodl/pytractor/> for testing ex. java web application in python.

Basic

You can create Gradle wrapper from factory

from pygradle import gradlew

gradle = GradleFactory.create(gradle_cmd='/path/to/gradle')

gradle.build()

GradleFactory reads all tasks from gradle. Creation of gradle wrapper with factory is slow because factory is asking real gradle for tasks. Instead of that you can use:

from pygradle import gradlew

gradle = gradlew.Gradle(gradle_cmd='/path/to/gradle')

gradle.clean()

gradle.add_tasks('package:build', 'package2:build').parallel().execute()

Which is quicker.

Missing Features

  • Gradle task configuration

  • Rest options

  • Finds better way to check exection status.

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

pygradle-0.1.dev0.tar.gz (3.8 kB view hashes)

Uploaded Source

Supported by

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