Skip to main content

Small Library that makes it easier to create scripts to automate IBM Maximo's frontend

Project description

Maximo GUI Connector for Python

A small package that uses Selenium to automate the most basic operations you could do on IBM Maximo Asset Management

Installation

  1. Install the package by typing pip install maximo-gui-connector
  2. Download the chromedriver (see this note) matching your browser version and put it into PATH

You can include the package into your script and use it like this:

import maximo_gui_connector as MGC

YOUR_USERNAME = ""
YOUR_PASSWORD = ""
YOUR_GROUP = ""

if __name__ == "__main__":
	try:
		maximo = MGC.MaximoAutomation({ "debug": False, "headless": False })
		maximo.login(YOUR_USERNAME, YOUR_PASSWORD)

		maximo.goto_section("changes")
		maximo.setFilters({ "status": "!=REVIEW", "owner group": YOUR_GROUP })

		print(maximo.getAllRecordsFromTable())

		maximo.logout()

	except Exception as e:
		print(e)

	finally:
		print()
		input("Press any key to stop the script and close chrome")

		maximo.close()

IMPORTANT

As of now (v. 0.0.1) this package only allows to use the Chromedriver (which MUST be installed). The possibility to change the browser is in roadmap.

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

maximo-gui-connector-0.1.0.tar.gz (11.8 kB view hashes)

Uploaded Source

Built Distribution

maximo_gui_connector-0.1.0-py2.py3-none-any.whl (10.2 kB view hashes)

Uploaded Python 2 Python 3

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