gurobipy


Namegurobipy JSON
Version 11.0.0 PyPI version JSON
download
home_pagehttps://www.gurobi.com
SummaryPython interface to Gurobi
upload_time2023-11-28 08:01:14
maintainer
docs_urlNone
authorGurobi Optimization, LLC
requires_python
licenseProprietary
keywords optimization mip lp
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            The Gurobi Optimizer is a mathematical optimization software library
for solving mixed-integer linear and quadratic optimization problems.

This package comes with a trial license that allows you to solve
problems of limited size.  As a student or staff member of an academic
institution you qualify for a free, full product license. For
more information, see:

* https://www.gurobi.com/academia/academic-program-and-licenses/

For a commercial evaluation, you can `request an evaluation license`_.

.. _request an evaluation license: https://www.gurobi.com/free-trial/?utm_source=internal&utm_medium=documentation&utm_campaign=fy21_pipinstall_eval_pypipointer&utm_content=c_na&utm_term=pypi

Other useful resources to get started:

* https://www.gurobi.com/documentation/
* https://support.gurobi.com/hc/en-us/community/topics

A simple example
----------------

.. code::

  # Solve the following MIP:
  #  maximize
  #        x +   y + 2 z
  #  subject to
  #        x + 2 y + 3 z <= 4
  #        x +   y       >= 1
  #        x, y, z binary

  import gurobipy as gp

  # Create a new model
  m = gp.Model()

  # Create variables
  x = m.addVar(vtype='B', name="x")
  y = m.addVar(vtype='B', name="y")
  z = m.addVar(vtype='B', name="z")

  # Set objective function
  m.setObjective(x + y + 2 * z, gp.GRB.MAXIMIZE)

  # Add constraints
  m.addConstr(x + 2 * y + 3 * z <= 4)
  m.addConstr(x + y >= 1)

  # Solve it!
  m.optimize()

  print(f"Optimal objective value: {m.objVal}")
  print(f"Solution values: x={x.X}, y={y.X}, z={z.X}")


Licensing information
---------------------

GUROBI OPTIMIZATION, LLC
END-USER LICENSE AGREEMENT 
(Evaluation License)
("Agreement")

By downloading, installing, copying, accessing, clicking on an
"accept" button or otherwise using the Product, You are accepting the
terms of this Agreement. The Product will be enabled when You install
the license key that is supplied to You by Gurobi or made available by
Gurobi via 'pip'. The "Effective Date" of this Agreement is the date
on which the Product is enabled. The Product is copyrighted and
licensed by Gurobi Optimization, LLC, a limited liability company,
registered in Delaware ("Gurobi").

THIS AGREEMENT IS A LEGAL CONTRACT BETWEEN YOU AND GUROBI. READ THE
TERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY BEFORE INSTALLING OR
OTHERWISE ACCESSING OR USING THE PRODUCT. THE PRODUCT IS COPYRIGHTED
AND IT IS LICENSED TO YOU UNDER THIS AGREEMENT, NOT SOLD TO YOU. BY
INSTALLING OR OTHERWISE ACCESSING OR USING THE PRODUCT, YOU
ACKNOWLEDGE, REPRESENT AND WARRANT THAT YOU HAVE READ THIS AGREEMENT,
THAT YOU UNDERSTAND IT, THAT YOU HAVE FULL POWER AND AUTHORITY TO BIND
YOURSELF AS AN INDIVIDUAL AND THE BUSINESS ENTITY ON WHOSE BEHALF YOU
ARE INSTALLING, ACCESSING OR USING THE PRODUCT, THAT YOU ACCEPT AND
AGREE TO BE BOUND BY ITS TERMS, AND THAT, UPON INSTALLING OR OTHERWISE
ACCESSING OR USING THE PRODUCT, THIS AGREEMENT WILL BECOME BECOME THE
BINDING LEGAL OBLIGATION OF YOU (AS AN INDIVIDUAL AND THE BUSINESS
ENTITY ON WHOSE BEHALF YOU ARE INSTALLING, ACCESSING OR USING THE
PRODUCT). IF AT ANY TIME YOU ARE NOT WILLING TO BE BOUND BY THE TERMS
OF THIS AGREEMENT, YOU SHOULD TERMINATE THE INSTALLATION PROCESS,
IMMEDIATELY CEASE AND REFRAIN FROM ACCESSING OR USING THE PRODUCT AND
DELETE ANY COPIES OF THE PRODUCT YOU MAY HAVE.  TERMS AND CONDITIONS

1.	DEFINITIONS

1.1.	 "Product" means the limited, evaluation version of Gurobi
Optimizer Version 11.0.0 or higher in the form of object code
libraries, including all upgrades, new releases, modifications,
enhancements, adaptations, copies and translations thereof. "You" and
"Your" mean the individual who is installing, accessing or using the
Product and the business entity on whose behalf such individual is
installing, accessing or using the Product. Additional defined terms
have the meaning ascribed to them in the body of this Agreement. 

2.	SCOPE OF RIGHTS

2.1.	Grant of License. Gurobi grants You a limited, non-exclusive,
non-transferrable, non-sublicensable, revocable license during the
term of this Agreement to install and operate the Product in
machine-readable form solely in a non-production environment for
internal evaluation of the suitability of the Product for Your
legitimate business needs ("Product License"). You may make a
reasonable number of copies of the Product in machine- readable,
object code form, for nonproductive backup purposes only.

2.2.	Limitations on Use. For the avoidance of doubt, the Product
License does not grant You any right to use the Product in a live
production environment (i.e. non-test environment). Except as
expressly set forth in Section 2.1, You will not use, copy, modify, or
distribute the Product, or make any copy, adaptation, transcription,
or merge any portion thereof, unless expressly authorized by Gurobi in
a separate written agreement signed by an authorized representative of
Gurobi. You will not reverse assemble, reverse compile, translate, or
reverse engineer the Product.  Your Product License may not be sold,
transferred, leased, assigned, or sub-licensed without Gurobi's prior
written consent. If You copy or modify the Product in any way not
expressly authorized by Gurobi in writing, Your Product License is
automatically terminated. You will not use the Product for the benefit
of any third party including as part of any service bureau, time
sharing or third party training arrangement. You will not publish any
benchmark testing results on the Product. You will not use the Product
in violation of any law, rules or regulation. The license granted to
You in Section 2.1 is conditioned upon Your strict compliance with all
restrictions and obligations in this Section 2.2.

3.	WARRANTIES; LIMITATION OF LIABILITY

3.1	Warranty Disclaimer. THE PRODUCT IS PROVIDED "AS IS," AND
GUROBI MAKES NO WARRANTIES, EXPRESS, IMPLIED, ARISING FROM COURSE OF
DEALING OR USAGE OF TRADE, OR STATUTORY, AS TO THE PRODUCT, OR ANY
MATTER WHATSOEVER. GUROBI DISCLAIMS ALL IMPLIED WARRANTIES, INCLUDING
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SATISFACTORY
QUALITY, TITLE AND NON-INFRINGEMENT. THE PRODUCT LICENSED HEREUNDER IS
AN EVALUATION VERSION OF GUROBI'S STANDARD PRODUCT. ACCORDINGLY, THE
PRODUCT WILL HAVE CONSTRAINTS AND LIMITATIONS THAT LIMIT THE SIZE OF
THE OPTIMIZATION PROBLEM THE PRODUCT IS ABLE TO SOLVE.  FOR THE
AVOIDANCE OF DOUBT, GUROBI HAS NO OBLIGATION TO PROVIDE ANY
MAINTENANCE AND SUPPORT SERVICES, OR ANY OTHER SERVICES, UNDER THIS
AGREEMENT.

3.2	Limitation of Liability. GUROBI SHALL NOT BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES
(INCLUDING FOR LOSS OF PROFITS, SAVINGS, REVENUE, OR USE, DAMAGED OR
LOST FILES OR DATA, OR BUSINESS INTERRUPTION) IN CONNECTION WITH THIS
AGREEMENT OR THE PRODUCT, REGARDLESS OF THE CAUSE OF ACTION OR
CHARACTERIZATION OF THE DAMAGES, EVEN IF GUROBI HAS BEEN ADVISED OF
THE POSSIBILITY OF THESE DAMAGES. GUROBI WILL NOT BE LIABLE FOR ANY
DAMAGES FOR THE COST OF PROCUREMENT OF SUBSTITUTE SOFTWARE, GOODS OR
SERVICES, OR FOR ANY LIABILITY TO YOU RELATING TO THIS AGREEMENT,
REGARDLESS OF THE CAUSE OF ACTION OR CHARACTERIZATION OF THE DAMAGES.
YOU ACKNOWLEDGE THAT THE PROVISIONS FOR LIMITATION OF LIABILITY
DESCRIBED IN THIS AGREEMENT FORM AN ESSENTIAL BASIS OF THE BARGAIN
BETWEEN THE PARTIES AND THAT GUROBI WOULD NOT BE WILLING TO ENTER THIS
AGREEMENT WITHOUT THEM. THEREFORE, YOU AGREE TO THIS ALLOCATION OF
RISK AND HEREBY WAIVE ANY RIGHT, THROUGH EQUITABLE RELIEF OR
OTHERWISE, TO SUBSEQUENTLY SEEK A MODIFICATION OF THESE PROVISIONS OR
ALLOCATION OF RISK.

3.3	Disabling Device. THE PRODUCT MAY CONTAIN A DISABLING DEVICE
THAT WILL PREVENT IT FROM BEING USED AFTER THE TERM OF THIS AGREEMENT
ENDS. YOU AGREE NOT TO TAMPER WITH THE DISABLING DEVICE OR THE
PRODUCT. YOU  SHOULD TAKE PRECAUTIONS TO AVOID ANY LOSS OF DATA THAT
MIGHT RESULT WHEN THE PRODUCT CAN NO LONGER BE USED.

4.	OWNERSHIP

4.1.	Ownership. Gurobi shall have sole right, title, and interest
in and to the Product and all documentation relating to the Product
(including its development or its operation, testing or use, and all
reports and copies created), and all intellectual property rights
associated with the Product (including, without limitation, rights to
copyrights, patents, trade secrets, and know-how). This Agreement does
not provide You with title or ownership of the Product, but only a
right of limited use pursuant to Section 2.1. If You are deemed to
posses any rights in the Product, You hereby assign to Gurobi or all
of such rights. To the extent Your rights are inalienable under
applicable law, You hereby waive such rights in the Product and, if
such waiver is deemed invalid, grant to Gurobi the exclusive,
irrevocable, perpetual, worldwide, royalty free right to use, market,
modify and grant licenses to the Product without identifying You or
seeking Your consent.

5.	TERM AND TERMINATION

5.1.	Term. Unless earlier terminated, this Agreement and Your
Product License commences on the Effective Date and terminates on the
expiration date set forth in the license file that is included with
the Product. Either party may immediately terminate Your Product
License and this Agreement by delivery of written notice of
termination to the other party.

5.2.	Effects of Termination. Upon the expiration or termination of
this Agreement, (i) You shall immediately cease using the Product;
(ii) You shall irretrievably destroy all copies of the Product in Your
possession or control or return such copies to Gurobi the other Party,
and (iii) You shall certify in writing to Gurobi that You have
returned or destroyed such copies of the Product, with no copies
retained.	

5.3	Survival. Notwithstanding the expiration or termination of
this Agreement for any reason, the rights and duties of the parties
under Sections 2.2 (Limitations on Use), 3 (Warranties; Limitation of
Liability), 4 (Ownership), 5.2 (Effects of Termination), 5.3
(Survival), 6 (Export Controls), and 7 (General) shall survive such
expiration or termination and remain in full force and effect.

6.	EXPORT CONTROLS

6.1.	Export Restrictions. The Product delivered to You under this
Agreement is subject to U.S. export control laws and regulations and
may also be subject to import and export laws of the jurisdiction in
which it was obtained, if outside the U.S. You shall abide by all
applicable export control laws, rules and regulations applicable to
the Product and documentation. You agree that You will not export,
re-export, or transfer the Product or documentation, in whole or in
part, to any country, person, or entity subject to U.S. export
restrictions. You specifically agree not to export, re- export, or
transfer the Product or documentation (i) to any country to which the
U.S. has embargoed or restricted the export of goods or services, or
to any national of any such country, wherever located, who intends to
transmit or transport the Product back to such country; (ii) to any
person or entity who You know or have reason to know will utilize the
Product or portion thereof in the design, development, production or
use of nuclear, chemical or biological materials, facilities, or
weapons; or (iii) to any person or entity who has been prohibited from
participating in U.S.  export transactions by any federal agency of
the U.S. government.

7.	GENERAL 

7.1. 	Assignment. This Agreement shall not be assignable by You
without the prior written consent of Gurobi.

7.2. 	Waiver of Construction Against the Drafter. This Agreement
shall be interpreted in accordance with the plain meaning of its terms
and not strictly for or against either of the parties to this
Agreement.

7.3. 	Severability. In the event that any provision of this
Agreement is found invalid or unenforceable pursuant to judicial
decree or decision, the remainder of this Agreement shall remain valid
and enforceable according to its terms.  WITHOUT LIMITING THE
FOREGOING, IT IS EXPRESSLY UNDERSTOOD AND AGREED THAT, IN THE EVENT
ANY REMEDY HEREUNDER IS DETERMINED TO HAVE FAILED OF ITS ESSENTIAL
PURPOSE, ALL OTHER LIMITATIONS OF LIABILITY AND EXCLUSION OF DAMAGES
SET FORTH HEREIN SHALL REMAIN IN FULL FORCE AND EFFECT.

7.4.	Notices. All notices or other communications required to be
given under this Agreement shall be in writing and delivered either
personally, by a reputable overnight courier service (e.g., FedEx or
UPS), or by U.S. mail, certified, return receipt requested, postage
prepaid, and addressed as provided in this Agreement or as otherwise
requested by the receiving party. Notices delivered personally shall
be effective upon delivery and notices delivered by courier or U.S,
mail shall be effective upon their receipt by the party to whom they
are addressed.

7.5.	Governing Law. 

7.5.1 This Agreement shall be governed by, and construed and enforced
in accordance with the laws of the State of California as they apply
to a contract made and performed in such state and as if entered into
by the residents of such state.

7.5.2 In all cases, the United Nations Convention on the International
Sale of Goods shall not apply. The parties also agree that the
provisions of the Uniform Computer Information Transactions Act shall
not apply. 

7.6.	Modifications and Waivers. This Agreement may not be modified
except by a writing signed by authorized representatives of both
parties. A waiver by either party of its rights hereunder shall not be
binding unless contained in a writing signed by an authorized
representative of the party waiving its rights. The non-enforcement or
waiver of any provision on one occasion shall not constitute a waiver
of such provision on any other occasion unless expressly agreed in
writing. The parties agree that no use of trade or other regular
practice or method of dealing between the parties shall be used to
modify, interpret, supplement, or alter in any manner the terms of
this Agreement.

7.7.	Arbitration. Any controversy or claim arising out of or
relating to this Agreement, or the breach thereof that fails to settle
by mediation, shall be settled by binding arbitration administered by
JAMS in accordance with its then current Commercial Arbitration Rules,
and judgment on the award rendered by the arbitrator may be entered in
any court having jurisdiction thereof. The arbitrator may award
monetary damages, injunctive relief, rescission, restitution, costs
and attorneys' fees. The arbitration award shall be final and binding
regardless of whether one of the parties fails or refuses to
participate in the arbitration. The arbitrator shall not have the
power to amend this Agreement in any respect.  Notwithstanding the
foregoing, the parties agree that this Section 7.7 does not apply to
the breach of provisions set forth in Section 2.2 (Limitations on Use)
and Section 4 (Ownership), and that either party may petition a court
of law for injunctive relief and such other rights and remedies as it
may have at law or equity against breaches of these sections.

7.8.	Attorneys' Fees. In the event of any dispute with respect to
this Agreement, the prevailing party shall be entitled to reasonable
attorneys' fees and other costs and expenses incurred in resolving
such dispute.

Rev. October 2020
4810-9864-2638.2 

            

Raw data

            {
    "_id": null,
    "home_page": "https://www.gurobi.com",
    "name": "gurobipy",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "optimization,mip,lp",
    "author": "Gurobi Optimization, LLC",
    "author_email": "",
    "download_url": "",
    "platform": "Windows",
    "description": "The Gurobi Optimizer is a mathematical optimization software library\nfor solving mixed-integer linear and quadratic optimization problems.\n\nThis package comes with a trial license that allows you to solve\nproblems of limited size.  As a student or staff member of an academic\ninstitution you qualify for a free, full product license. For\nmore information, see:\n\n* https://www.gurobi.com/academia/academic-program-and-licenses/\n\nFor a commercial evaluation, you can `request an evaluation license`_.\n\n.. _request an evaluation license: https://www.gurobi.com/free-trial/?utm_source=internal&utm_medium=documentation&utm_campaign=fy21_pipinstall_eval_pypipointer&utm_content=c_na&utm_term=pypi\n\nOther useful resources to get started:\n\n* https://www.gurobi.com/documentation/\n* https://support.gurobi.com/hc/en-us/community/topics\n\nA simple example\n----------------\n\n.. code::\n\n  # Solve the following MIP:\n  #  maximize\n  #        x +   y + 2 z\n  #  subject to\n  #        x + 2 y + 3 z <= 4\n  #        x +   y       >= 1\n  #        x, y, z binary\n\n  import gurobipy as gp\n\n  # Create a new model\n  m = gp.Model()\n\n  # Create variables\n  x = m.addVar(vtype='B', name=\"x\")\n  y = m.addVar(vtype='B', name=\"y\")\n  z = m.addVar(vtype='B', name=\"z\")\n\n  # Set objective function\n  m.setObjective(x + y + 2 * z, gp.GRB.MAXIMIZE)\n\n  # Add constraints\n  m.addConstr(x + 2 * y + 3 * z <= 4)\n  m.addConstr(x + y >= 1)\n\n  # Solve it!\n  m.optimize()\n\n  print(f\"Optimal objective value: {m.objVal}\")\n  print(f\"Solution values: x={x.X}, y={y.X}, z={z.X}\")\n\n\nLicensing information\n---------------------\n\nGUROBI OPTIMIZATION, LLC\nEND-USER LICENSE AGREEMENT \n(Evaluation License)\n(\"Agreement\")\n\nBy downloading, installing, copying, accessing, clicking on an\n\"accept\" button or otherwise using the Product, You are accepting the\nterms of this Agreement. The Product will be enabled when You install\nthe license key that is supplied to You by Gurobi or made available by\nGurobi via 'pip'. The \"Effective Date\" of this Agreement is the date\non which the Product is enabled. The Product is copyrighted and\nlicensed by Gurobi Optimization, LLC, a limited liability company,\nregistered in Delaware (\"Gurobi\").\n\nTHIS AGREEMENT IS A LEGAL CONTRACT BETWEEN YOU AND GUROBI. READ THE\nTERMS AND CONDITIONS OF THIS AGREEMENT CAREFULLY BEFORE INSTALLING OR\nOTHERWISE ACCESSING OR USING THE PRODUCT. THE PRODUCT IS COPYRIGHTED\nAND IT IS LICENSED TO YOU UNDER THIS AGREEMENT, NOT SOLD TO YOU. BY\nINSTALLING OR OTHERWISE ACCESSING OR USING THE PRODUCT, YOU\nACKNOWLEDGE, REPRESENT AND WARRANT THAT YOU HAVE READ THIS AGREEMENT,\nTHAT YOU UNDERSTAND IT, THAT YOU HAVE FULL POWER AND AUTHORITY TO BIND\nYOURSELF AS AN INDIVIDUAL AND THE BUSINESS ENTITY ON WHOSE BEHALF YOU\nARE INSTALLING, ACCESSING OR USING THE PRODUCT, THAT YOU ACCEPT AND\nAGREE TO BE BOUND BY ITS TERMS, AND THAT, UPON INSTALLING OR OTHERWISE\nACCESSING OR USING THE PRODUCT, THIS AGREEMENT WILL BECOME BECOME THE\nBINDING LEGAL OBLIGATION OF YOU (AS AN INDIVIDUAL AND THE BUSINESS\nENTITY ON WHOSE BEHALF YOU ARE INSTALLING, ACCESSING OR USING THE\nPRODUCT). IF AT ANY TIME YOU ARE NOT WILLING TO BE BOUND BY THE TERMS\nOF THIS AGREEMENT, YOU SHOULD TERMINATE THE INSTALLATION PROCESS,\nIMMEDIATELY CEASE AND REFRAIN FROM ACCESSING OR USING THE PRODUCT AND\nDELETE ANY COPIES OF THE PRODUCT YOU MAY HAVE.  TERMS AND CONDITIONS\n\n1.\tDEFINITIONS\n\n1.1.\t \"Product\" means the limited, evaluation version of Gurobi\nOptimizer Version 11.0.0 or higher in the form of object code\nlibraries, including all upgrades, new releases, modifications,\nenhancements, adaptations, copies and translations thereof. \"You\" and\n\"Your\" mean the individual who is installing, accessing or using the\nProduct and the business entity on whose behalf such individual is\ninstalling, accessing or using the Product. Additional defined terms\nhave the meaning ascribed to them in the body of this Agreement. \n\n2.\tSCOPE OF RIGHTS\n\n2.1.\tGrant of License. Gurobi grants You a limited, non-exclusive,\nnon-transferrable, non-sublicensable, revocable license during the\nterm of this Agreement to install and operate the Product in\nmachine-readable form solely in a non-production environment for\ninternal evaluation of the suitability of the Product for Your\nlegitimate business needs (\"Product License\"). You may make a\nreasonable number of copies of the Product in machine- readable,\nobject code form, for nonproductive backup purposes only.\n\n2.2.\tLimitations on Use. For the avoidance of doubt, the Product\nLicense does not grant You any right to use the Product in a live\nproduction environment (i.e. non-test environment). Except as\nexpressly set forth in Section 2.1, You will not use, copy, modify, or\ndistribute the Product, or make any copy, adaptation, transcription,\nor merge any portion thereof, unless expressly authorized by Gurobi in\na separate written agreement signed by an authorized representative of\nGurobi. You will not reverse assemble, reverse compile, translate, or\nreverse engineer the Product.  Your Product License may not be sold,\ntransferred, leased, assigned, or sub-licensed without Gurobi's prior\nwritten consent. If You copy or modify the Product in any way not\nexpressly authorized by Gurobi in writing, Your Product License is\nautomatically terminated. You will not use the Product for the benefit\nof any third party including as part of any service bureau, time\nsharing or third party training arrangement. You will not publish any\nbenchmark testing results on the Product. You will not use the Product\nin violation of any law, rules or regulation. The license granted to\nYou in Section 2.1 is conditioned upon Your strict compliance with all\nrestrictions and obligations in this Section 2.2.\n\n3.\tWARRANTIES; LIMITATION OF LIABILITY\n\n3.1\tWarranty Disclaimer. THE PRODUCT IS PROVIDED \"AS IS,\" AND\nGUROBI MAKES NO WARRANTIES, EXPRESS, IMPLIED, ARISING FROM COURSE OF\nDEALING OR USAGE OF TRADE, OR STATUTORY, AS TO THE PRODUCT, OR ANY\nMATTER WHATSOEVER. GUROBI DISCLAIMS ALL IMPLIED WARRANTIES, INCLUDING\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, SATISFACTORY\nQUALITY, TITLE AND NON-INFRINGEMENT. THE PRODUCT LICENSED HEREUNDER IS\nAN EVALUATION VERSION OF GUROBI'S STANDARD PRODUCT. ACCORDINGLY, THE\nPRODUCT WILL HAVE CONSTRAINTS AND LIMITATIONS THAT LIMIT THE SIZE OF\nTHE OPTIMIZATION PROBLEM THE PRODUCT IS ABLE TO SOLVE.  FOR THE\nAVOIDANCE OF DOUBT, GUROBI HAS NO OBLIGATION TO PROVIDE ANY\nMAINTENANCE AND SUPPORT SERVICES, OR ANY OTHER SERVICES, UNDER THIS\nAGREEMENT.\n\n3.2\tLimitation of Liability. GUROBI SHALL NOT BE LIABLE FOR ANY\nDIRECT, INDIRECT, INCIDENTAL, SPECIAL OR CONSEQUENTIAL DAMAGES\n(INCLUDING FOR LOSS OF PROFITS, SAVINGS, REVENUE, OR USE, DAMAGED OR\nLOST FILES OR DATA, OR BUSINESS INTERRUPTION) IN CONNECTION WITH THIS\nAGREEMENT OR THE PRODUCT, REGARDLESS OF THE CAUSE OF ACTION OR\nCHARACTERIZATION OF THE DAMAGES, EVEN IF GUROBI HAS BEEN ADVISED OF\nTHE POSSIBILITY OF THESE DAMAGES. GUROBI WILL NOT BE LIABLE FOR ANY\nDAMAGES FOR THE COST OF PROCUREMENT OF SUBSTITUTE SOFTWARE, GOODS OR\nSERVICES, OR FOR ANY LIABILITY TO YOU RELATING TO THIS AGREEMENT,\nREGARDLESS OF THE CAUSE OF ACTION OR CHARACTERIZATION OF THE DAMAGES.\nYOU ACKNOWLEDGE THAT THE PROVISIONS FOR LIMITATION OF LIABILITY\nDESCRIBED IN THIS AGREEMENT FORM AN ESSENTIAL BASIS OF THE BARGAIN\nBETWEEN THE PARTIES AND THAT GUROBI WOULD NOT BE WILLING TO ENTER THIS\nAGREEMENT WITHOUT THEM. THEREFORE, YOU AGREE TO THIS ALLOCATION OF\nRISK AND HEREBY WAIVE ANY RIGHT, THROUGH EQUITABLE RELIEF OR\nOTHERWISE, TO SUBSEQUENTLY SEEK A MODIFICATION OF THESE PROVISIONS OR\nALLOCATION OF RISK.\n\n3.3\tDisabling Device. THE PRODUCT MAY CONTAIN A DISABLING DEVICE\nTHAT WILL PREVENT IT FROM BEING USED AFTER THE TERM OF THIS AGREEMENT\nENDS. YOU AGREE NOT TO TAMPER WITH THE DISABLING DEVICE OR THE\nPRODUCT. YOU  SHOULD TAKE PRECAUTIONS TO AVOID ANY LOSS OF DATA THAT\nMIGHT RESULT WHEN THE PRODUCT CAN NO LONGER BE USED.\n\n4.\tOWNERSHIP\n\n4.1.\tOwnership. Gurobi shall have sole right, title, and interest\nin and to the Product and all documentation relating to the Product\n(including its development or its operation, testing or use, and all\nreports and copies created), and all intellectual property rights\nassociated with the Product (including, without limitation, rights to\ncopyrights, patents, trade secrets, and know-how). This Agreement does\nnot provide You with title or ownership of the Product, but only a\nright of limited use pursuant to Section 2.1. If You are deemed to\nposses any rights in the Product, You hereby assign to Gurobi or all\nof such rights. To the extent Your rights are inalienable under\napplicable law, You hereby waive such rights in the Product and, if\nsuch waiver is deemed invalid, grant to Gurobi the exclusive,\nirrevocable, perpetual, worldwide, royalty free right to use, market,\nmodify and grant licenses to the Product without identifying You or\nseeking Your consent.\n\n5.\tTERM AND TERMINATION\n\n5.1.\tTerm. Unless earlier terminated, this Agreement and Your\nProduct License commences on the Effective Date and terminates on the\nexpiration date set forth in the license file that is included with\nthe Product. Either party may immediately terminate Your Product\nLicense and this Agreement by delivery of written notice of\ntermination to the other party.\n\n5.2.\tEffects of Termination. Upon the expiration or termination of\nthis Agreement, (i) You shall immediately cease using the Product;\n(ii) You shall irretrievably destroy all copies of the Product in Your\npossession or control or return such copies to Gurobi the other Party,\nand (iii) You shall certify in writing to Gurobi that You have\nreturned or destroyed such copies of the Product, with no copies\nretained.\t\n\n5.3\tSurvival. Notwithstanding the expiration or termination of\nthis Agreement for any reason, the rights and duties of the parties\nunder Sections 2.2 (Limitations on Use), 3 (Warranties; Limitation of\nLiability), 4 (Ownership), 5.2 (Effects of Termination), 5.3\n(Survival), 6 (Export Controls), and 7 (General) shall survive such\nexpiration or termination and remain in full force and effect.\n\n6.\tEXPORT CONTROLS\n\n6.1.\tExport Restrictions. The Product delivered to You under this\nAgreement is subject to U.S. export control laws and regulations and\nmay also be subject to import and export laws of the jurisdiction in\nwhich it was obtained, if outside the U.S. You shall abide by all\napplicable export control laws, rules and regulations applicable to\nthe Product and documentation. You agree that You will not export,\nre-export, or transfer the Product or documentation, in whole or in\npart, to any country, person, or entity subject to U.S. export\nrestrictions. You specifically agree not to export, re- export, or\ntransfer the Product or documentation (i) to any country to which the\nU.S. has embargoed or restricted the export of goods or services, or\nto any national of any such country, wherever located, who intends to\ntransmit or transport the Product back to such country; (ii) to any\nperson or entity who You know or have reason to know will utilize the\nProduct or portion thereof in the design, development, production or\nuse of nuclear, chemical or biological materials, facilities, or\nweapons; or (iii) to any person or entity who has been prohibited from\nparticipating in U.S.  export transactions by any federal agency of\nthe U.S. government.\n\n7.\tGENERAL \n\n7.1. \tAssignment. This Agreement shall not be assignable by You\nwithout the prior written consent of Gurobi.\n\n7.2. \tWaiver of Construction Against the Drafter. This Agreement\nshall be interpreted in accordance with the plain meaning of its terms\nand not strictly for or against either of the parties to this\nAgreement.\n\n7.3. \tSeverability. In the event that any provision of this\nAgreement is found invalid or unenforceable pursuant to judicial\ndecree or decision, the remainder of this Agreement shall remain valid\nand enforceable according to its terms.  WITHOUT LIMITING THE\nFOREGOING, IT IS EXPRESSLY UNDERSTOOD AND AGREED THAT, IN THE EVENT\nANY REMEDY HEREUNDER IS DETERMINED TO HAVE FAILED OF ITS ESSENTIAL\nPURPOSE, ALL OTHER LIMITATIONS OF LIABILITY AND EXCLUSION OF DAMAGES\nSET FORTH HEREIN SHALL REMAIN IN FULL FORCE AND EFFECT.\n\n7.4.\tNotices. All notices or other communications required to be\ngiven under this Agreement shall be in writing and delivered either\npersonally, by a reputable overnight courier service (e.g., FedEx or\nUPS), or by U.S. mail, certified, return receipt requested, postage\nprepaid, and addressed as provided in this Agreement or as otherwise\nrequested by the receiving party. Notices delivered personally shall\nbe effective upon delivery and notices delivered by courier or U.S,\nmail shall be effective upon their receipt by the party to whom they\nare addressed.\n\n7.5.\tGoverning Law. \n\n7.5.1 This Agreement shall be governed by, and construed and enforced\nin accordance with the laws of the State of California as they apply\nto a contract made and performed in such state and as if entered into\nby the residents of such state.\n\n7.5.2 In all cases, the United Nations Convention on the International\nSale of Goods shall not apply. The parties also agree that the\nprovisions of the Uniform Computer Information Transactions Act shall\nnot apply. \n\n7.6.\tModifications and Waivers. This Agreement may not be modified\nexcept by a writing signed by authorized representatives of both\nparties. A waiver by either party of its rights hereunder shall not be\nbinding unless contained in a writing signed by an authorized\nrepresentative of the party waiving its rights. The non-enforcement or\nwaiver of any provision on one occasion shall not constitute a waiver\nof such provision on any other occasion unless expressly agreed in\nwriting. The parties agree that no use of trade or other regular\npractice or method of dealing between the parties shall be used to\nmodify, interpret, supplement, or alter in any manner the terms of\nthis Agreement.\n\n7.7.\tArbitration. Any controversy or claim arising out of or\nrelating to this Agreement, or the breach thereof that fails to settle\nby mediation, shall be settled by binding arbitration administered by\nJAMS in accordance with its then current Commercial Arbitration Rules,\nand judgment on the award rendered by the arbitrator may be entered in\nany court having jurisdiction thereof. The arbitrator may award\nmonetary damages, injunctive relief, rescission, restitution, costs\nand attorneys' fees. The arbitration award shall be final and binding\nregardless of whether one of the parties fails or refuses to\nparticipate in the arbitration. The arbitrator shall not have the\npower to amend this Agreement in any respect.  Notwithstanding the\nforegoing, the parties agree that this Section 7.7 does not apply to\nthe breach of provisions set forth in Section 2.2 (Limitations on Use)\nand Section 4 (Ownership), and that either party may petition a court\nof law for injunctive relief and such other rights and remedies as it\nmay have at law or equity against breaches of these sections.\n\n7.8.\tAttorneys' Fees. In the event of any dispute with respect to\nthis Agreement, the prevailing party shall be entitled to reasonable\nattorneys' fees and other costs and expenses incurred in resolving\nsuch dispute.\n\nRev. October 2020\n4810-9864-2638.2 \n",
    "bugtrack_url": null,
    "license": "Proprietary",
    "summary": "Python interface to Gurobi",
    "version": "11.0.0",
    "project_urls": {
        "Homepage": "https://www.gurobi.com"
    },
    "split_keywords": [
        "optimization",
        "mip",
        "lp"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98a10a2000d484453bc6b9604c16c3338dc2a5ebd5ab6f3b1cf0733bfa3bbe9b",
                "md5": "4d7de20715ab331a33370365473f0187",
                "sha256": "f9c4565bff70fca609a1912855d9c52886a44f71c396a8aedd2e3dad3cd511ff"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "4d7de20715ab331a33370365473f0187",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 10659249,
            "upload_time": "2023-11-28T08:01:14",
            "upload_time_iso_8601": "2023-11-28T08:01:14.718101Z",
            "url": "https://files.pythonhosted.org/packages/98/a1/0a2000d484453bc6b9604c16c3338dc2a5ebd5ab6f3b1cf0733bfa3bbe9b/gurobipy-11.0.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f91560c6902d86616cd25379e8039bc741c705d2847de8b2dbb162747b274162",
                "md5": "5b32c529976df17ac5acfaecbbac8170",
                "sha256": "ab8611eb1e1348037b92fe6bf994735ad6931650a76943fb9117845ab2c2e430"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "5b32c529976df17ac5acfaecbbac8170",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 27337967,
            "upload_time": "2023-11-28T08:01:30",
            "upload_time_iso_8601": "2023-11-28T08:01:30.173263Z",
            "url": "https://files.pythonhosted.org/packages/f9/15/60c6902d86616cd25379e8039bc741c705d2847de8b2dbb162747b274162/gurobipy-11.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4d79aaf01f1805af53512d9dc335d9adba387071664e7cc4e1aba2f7afd0e052",
                "md5": "6a769f63b895d0bb8b1023cc4937b0be",
                "sha256": "be8b2e3e5066c9047f9737eb4e214b97c3fc520004f52a941688c3831991825e"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6a769f63b895d0bb8b1023cc4937b0be",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 13350409,
            "upload_time": "2023-11-28T08:01:40",
            "upload_time_iso_8601": "2023-11-28T08:01:40.069526Z",
            "url": "https://files.pythonhosted.org/packages/4d/79/aaf01f1805af53512d9dc335d9adba387071664e7cc4e1aba2f7afd0e052/gurobipy-11.0.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08b6436bd487fc75c503f896573908bee117b4f2fb5ddd6519bc2c0b1ff25b80",
                "md5": "50ef90e30d63cb2fc49a484a6426b0d4",
                "sha256": "ed57665723268321494c65567ef099173f1ca11bdd23af6b6e612b14b34e751c"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "50ef90e30d63cb2fc49a484a6426b0d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 10235263,
            "upload_time": "2023-11-28T08:01:49",
            "upload_time_iso_8601": "2023-11-28T08:01:49.434893Z",
            "url": "https://files.pythonhosted.org/packages/08/b6/436bd487fc75c503f896573908bee117b4f2fb5ddd6519bc2c0b1ff25b80/gurobipy-11.0.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "df488ea2a7e8c76eb0a6dbf98814615ff3237ce1d58102c17159a4b159620951",
                "md5": "353c245bf2c3f3848ea36df0e27752e2",
                "sha256": "ed627d089e66810896059a021777e21fae628233c71e1e5f7bf81b9e0c88ab23"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "353c245bf2c3f3848ea36df0e27752e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 10689069,
            "upload_time": "2023-11-28T08:01:59",
            "upload_time_iso_8601": "2023-11-28T08:01:59.435420Z",
            "url": "https://files.pythonhosted.org/packages/df/48/8ea2a7e8c76eb0a6dbf98814615ff3237ce1d58102c17159a4b159620951/gurobipy-11.0.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fdbe32fbd89b0512ead59f74d1939485221ad4341751553f16a07f0a670c1a3",
                "md5": "8dd34a277db5e660121a0de8eb942987",
                "sha256": "096f63ca02fbe810bae25311be598c9d8c5874362e85eac46ef0a4fdb3eaf96b"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8dd34a277db5e660121a0de8eb942987",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 27352030,
            "upload_time": "2023-11-28T08:02:12",
            "upload_time_iso_8601": "2023-11-28T08:02:12.572295Z",
            "url": "https://files.pythonhosted.org/packages/9f/db/e32fbd89b0512ead59f74d1939485221ad4341751553f16a07f0a670c1a3/gurobipy-11.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6803ea31fe7b07c41df499979f1809aa43860030731a49b69d4d55acc6aa0a96",
                "md5": "44b11ce19f93fd0cf20ccb92ad438818",
                "sha256": "a98abda1cb45f548fff17370eb30cc6e187d04edc5d9984a68d194491598a993"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44b11ce19f93fd0cf20ccb92ad438818",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 13355485,
            "upload_time": "2023-11-28T08:02:21",
            "upload_time_iso_8601": "2023-11-28T08:02:21.321414Z",
            "url": "https://files.pythonhosted.org/packages/68/03/ea31fe7b07c41df499979f1809aa43860030731a49b69d4d55acc6aa0a96/gurobipy-11.0.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2c2e8beb50f851e16650c9387e110d0276d327e9ea73d2480ca428116468118",
                "md5": "c60d849c73ef88ec9d4fe2c8442b1fb9",
                "sha256": "0bc447e2867a2ba96364f6d61ce8adde7542fb012e24c50341e43183766a7507"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c60d849c73ef88ec9d4fe2c8442b1fb9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 10236905,
            "upload_time": "2023-11-28T08:02:28",
            "upload_time_iso_8601": "2023-11-28T08:02:28.697009Z",
            "url": "https://files.pythonhosted.org/packages/b2/c2/e8beb50f851e16650c9387e110d0276d327e9ea73d2480ca428116468118/gurobipy-11.0.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a607f4f7fabe99a9b4c8ff6078fbe3cc9e4ed6aadcb3be452e058185acdc990",
                "md5": "918358fe9a9de8687f46a7a0f9b3d989",
                "sha256": "cae5139f29a57cc5d227c26e6f13449b0a1389420763688524278b1ad4af4350"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "918358fe9a9de8687f46a7a0f9b3d989",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 10614957,
            "upload_time": "2023-11-28T08:02:36",
            "upload_time_iso_8601": "2023-11-28T08:02:36.208484Z",
            "url": "https://files.pythonhosted.org/packages/0a/60/7f4f7fabe99a9b4c8ff6078fbe3cc9e4ed6aadcb3be452e058185acdc990/gurobipy-11.0.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7cb405b45d7c8ac5535fd9141cf352799d3d39a306d376fc26509948e711417",
                "md5": "8705b74e679d315b5aaa23403234b00b",
                "sha256": "acc3fb4de207e0235617547a36ad199ee068a168cd0081b9a38eace7ed39c1be"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8705b74e679d315b5aaa23403234b00b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 27195408,
            "upload_time": "2023-11-28T08:02:46",
            "upload_time_iso_8601": "2023-11-28T08:02:46.180018Z",
            "url": "https://files.pythonhosted.org/packages/d7/cb/405b45d7c8ac5535fd9141cf352799d3d39a306d376fc26509948e711417/gurobipy-11.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2dee767bda688b58cad593619126786b90ad62f1e96607ea9b763bb14d85c2e8",
                "md5": "19d777c04b5c8d429b7880a522efc4ae",
                "sha256": "1c511bb7f27be345c9b8b1b2fbfc27b858fbc520437c14ee557b41510bbf5bef"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "19d777c04b5c8d429b7880a522efc4ae",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 13166261,
            "upload_time": "2023-11-28T08:02:56",
            "upload_time_iso_8601": "2023-11-28T08:02:56.162478Z",
            "url": "https://files.pythonhosted.org/packages/2d/ee/767bda688b58cad593619126786b90ad62f1e96607ea9b763bb14d85c2e8/gurobipy-11.0.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57319a9b3526370df857aec5b773eba92808eb449cc66ed5214998a7ebf472a6",
                "md5": "8ddb80b9b737e900444e60356d5a6cc6",
                "sha256": "ff16d2ba6b5cbe459d16046f91f5d0ebe192be9c7c1b42dfa63b13ce906a6868"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8ddb80b9b737e900444e60356d5a6cc6",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 10208285,
            "upload_time": "2023-11-28T08:03:04",
            "upload_time_iso_8601": "2023-11-28T08:03:04.473681Z",
            "url": "https://files.pythonhosted.org/packages/57/31/9a9b3526370df857aec5b773eba92808eb449cc66ed5214998a7ebf472a6/gurobipy-11.0.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "517601609b375091017584b447310f8d4dbaa771d4c40c4fcaceb1ab2f87779b",
                "md5": "b771c0370467d3bd393575bf8d4a01a2",
                "sha256": "a221e52f59fca61131cf7a7d62f3e9e665f0d6b7235e9c6b6524512eb5bcc7ff"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b771c0370467d3bd393575bf8d4a01a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 9044016,
            "upload_time": "2023-11-28T08:03:12",
            "upload_time_iso_8601": "2023-11-28T08:03:12.929804Z",
            "url": "https://files.pythonhosted.org/packages/51/76/01609b375091017584b447310f8d4dbaa771d4c40c4fcaceb1ab2f87779b/gurobipy-11.0.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15e6a20680cfe0b3c6189b2232f099071c505ba23142eb4d498b7b163f6de210",
                "md5": "1bd59a57fd021fb3970b16a08649641f",
                "sha256": "f8c0783e489eaa9911211dd51a8e937b377251b4f91283fd4e48a0c74cb6c24d"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1bd59a57fd021fb3970b16a08649641f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 27332437,
            "upload_time": "2023-11-28T08:03:29",
            "upload_time_iso_8601": "2023-11-28T08:03:29.991087Z",
            "url": "https://files.pythonhosted.org/packages/15/e6/a20680cfe0b3c6189b2232f099071c505ba23142eb4d498b7b163f6de210/gurobipy-11.0.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "167223b8ad2935dc329efac6d00a22f8b0cd4af36c6d1e57c13408e4a3e7b158",
                "md5": "05bb353198e4c90d9b3041ffc0563209",
                "sha256": "9d5c4e5c04843c9c18bdfe1a196e904f2c37b0c1e23ac5141f4c3f071852abdb"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "05bb353198e4c90d9b3041ffc0563209",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 13342595,
            "upload_time": "2023-11-28T08:03:37",
            "upload_time_iso_8601": "2023-11-28T08:03:37.590089Z",
            "url": "https://files.pythonhosted.org/packages/16/72/23b8ad2935dc329efac6d00a22f8b0cd4af36c6d1e57c13408e4a3e7b158/gurobipy-11.0.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79d6bf83964437e5d1634c4efbdf16abf0f8321e3b3685c2ab8d664c00dd8e94",
                "md5": "d9b5fb8e08d18c73cdf7b8011d39e790",
                "sha256": "206662d600964e7d4d6f1819e39bf228af06c9cb916491810d37ad560d71ecff"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d9b5fb8e08d18c73cdf7b8011d39e790",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 10240727,
            "upload_time": "2023-11-28T08:03:43",
            "upload_time_iso_8601": "2023-11-28T08:03:43.089859Z",
            "url": "https://files.pythonhosted.org/packages/79/d6/bf83964437e5d1634c4efbdf16abf0f8321e3b3685c2ab8d664c00dd8e94/gurobipy-11.0.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa3c865423f7f6557ed601ab19e5ff825b4bad97d3cd00025e705167231a96d5",
                "md5": "3287c6f5df54ceb11eab4a156c2390b8",
                "sha256": "c8ee6c293b8c44eff7ee8db41a350cabe6fe05ba5c986c95970bbb5b6e418a4f"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "3287c6f5df54ceb11eab4a156c2390b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 10656065,
            "upload_time": "2023-11-28T08:03:48",
            "upload_time_iso_8601": "2023-11-28T08:03:48.811825Z",
            "url": "https://files.pythonhosted.org/packages/fa/3c/865423f7f6557ed601ab19e5ff825b4bad97d3cd00025e705167231a96d5/gurobipy-11.0.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54ed79513dcfdc7d9dca0b2a5c3e4200d9a21e4643e4e422d7449175b8477838",
                "md5": "eee7f827149bc751596d74c1979d750d",
                "sha256": "79ed4d1229840d510551e95abe7bf0ce7b06fdade6efdfd4d65b20dc6ab2cccd"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "has_sig": false,
            "md5_digest": "eee7f827149bc751596d74c1979d750d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 27342672,
            "upload_time": "2023-11-28T08:04:04",
            "upload_time_iso_8601": "2023-11-28T08:04:04.204863Z",
            "url": "https://files.pythonhosted.org/packages/54/ed/79513dcfdc7d9dca0b2a5c3e4200d9a21e4643e4e422d7449175b8477838/gurobipy-11.0.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "28be5bf741efdec47080c32bf7d72475df68cc0e2bc9947177fba98df661a387",
                "md5": "689a06f27ff648d7181087b39b728a85",
                "sha256": "e9d55c978781b4eb286535a3bb2d2562db4fa17637ebeed599e7809137a26682"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "has_sig": false,
            "md5_digest": "689a06f27ff648d7181087b39b728a85",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 13350639,
            "upload_time": "2023-11-28T08:04:13",
            "upload_time_iso_8601": "2023-11-28T08:04:13.218929Z",
            "url": "https://files.pythonhosted.org/packages/28/be/5bf741efdec47080c32bf7d72475df68cc0e2bc9947177fba98df661a387/gurobipy-11.0.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ac1916099574a25d3ba0bd24e29befa68427d6aa2aeb4a73332c4ad944b4c03",
                "md5": "6970c0053b17915f27d3e19cbe3c9f03",
                "sha256": "1118ad098136c13bb5147c5c295600fe435d2658befcc4e52f71f922829f6c8b"
            },
            "downloads": -1,
            "filename": "gurobipy-11.0.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6970c0053b17915f27d3e19cbe3c9f03",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 10234972,
            "upload_time": "2023-11-28T08:04:18",
            "upload_time_iso_8601": "2023-11-28T08:04:18.746964Z",
            "url": "https://files.pythonhosted.org/packages/2a/c1/916099574a25d3ba0bd24e29befa68427d6aa2aeb4a73332c4ad944b4c03/gurobipy-11.0.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-28 08:01:14",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "gurobipy"
}
        
Elapsed time: 0.14186s