with python-MIP you can export mps file with
m.write('model.mps')
and then use cplex through import mps in docplex
mdl = ModelReader.read('c:/temp/model.mps', ignore_names=False)
mdl.solve(log_output=True,)
from example
------------------------------
[Alex] [Fleischer]
[Data and AI Technical Sales]
[IBM]
------------------------------
Original Message:
Sent: Thu March 13, 2025 10:10 AM
From: PhR
Subject: Python-MIP and Python DOcplex solving time
The Python-MIP web site does not mention that their solver can run on the top of CPLEX.
How did you manage to try it ?