harshadyeola
10 years ago
2 changed files with 37 additions and 1 deletions
@ -0,0 +1,36 @@ |
|||||
|
"""EasyEnging stack Interface""" |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
class EEStack(object): |
||||
|
""" |
||||
|
This is meta description for EEStack |
||||
|
""" |
||||
|
|
||||
|
def __init__(self, package_name): |
||||
|
""" |
||||
|
package_name: specify the name of package the operation |
||||
|
to be performed on |
||||
|
""" |
||||
|
self.package_name=package_name |
||||
|
|
||||
|
def install_stack(self, package_name): |
||||
|
""" |
||||
|
Installs the package on system |
||||
|
""" |
||||
|
pass |
||||
|
|
||||
|
def remove_stack(self, package_name): |
||||
|
""" |
||||
|
Removes the package on system |
||||
|
""" |
||||
|
pass |
||||
|
|
||||
|
def _is_installed(self, package_name): |
||||
|
""" |
||||
|
Check if package is already installed |
||||
|
Return |
||||
|
True: if package is installed |
||||
|
False: if package is not installed |
||||
|
""" |
Loading…
Reference in new issue