Metadata-Version: 2.1
Name: maximo-gui-connector
Version: 0.0.1
Summary: Small Library that makes it easier to create scripts to automate IBM Maximo's frontend
Home-page: https://github.com/LukeSavefrogs/maximo-gui-connector
Author: Luca Salvarani
Author-email: lucasalvarani99@gmail.com
License: UNKNOWN
Description: # Maximo GUI Connector for Python
        A script written using Selenium intended to be imported into other Python projects and used as a library
        
        You can include the Library into your script and use it like this: 
        ```python
        import maximo_gui_connector as MGC
        
        if __name__ == "__main__":
        	try:
        		maximo = MGC.MaximoAutomation({ "debug": False, headless: True })
        		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()
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.0
Description-Content-Type: text/markdown
