eric6.Plugins.UiExtensionPlugins.PipInterface.PipPackagesInputDialog

Module implementing a dialog to enter package specifications.

Global Attributes

None

Classes

PipPackagesInputDialog Class implementing a dialog to enter package specifications.

Functions

None


PipPackagesInputDialog

Class implementing a dialog to enter package specifications.

Derived from

QDialog, Ui_PipPackagesInputDialog

Class Attributes

None

Class Methods

None

Methods

PipPackagesInputDialog Constructor
getData Public method to get the entered data.
on_packagesEdit_textChanged Private slot handling entering package names.

Static Methods

None

PipPackagesInputDialog (Constructor)

PipPackagesInputDialog(plugin, title, parent=None)

Constructor

plugin
reference to the plugin object (ToolPipPlugin)
title
dialog title (string)
parent
reference to the parent widget (QWidget)

PipPackagesInputDialog.getData

getData()

Public method to get the entered data.

Returns:
tuple with the pip command (string) and the list of package specifications (list of string)

PipPackagesInputDialog.on_packagesEdit_textChanged

on_packagesEdit_textChanged(txt)

Private slot handling entering package names.

txt
name of the requirements file (string)
Up