greedypacker icon indicating copy to clipboard operation
greedypacker copied to clipboard

2D Bin Packing Algorithms

Results 9 greedypacker issues
Sort by recently updated
recently updated
newest added

Any tips on how to work around this? ``` $ pip install -U greedypacker Collecting greedypacker Downloading greedypacker-0.4.tar.gz (17 kB) Collecting sortedcontainers Downloading sortedcontainers-2.4.0-py2.py3-none-any.whl (29 kB) Building wheels for collected...

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.25.3 to 1.26.5. Release notes Sourced from urllib3's releases. 1.26.5 :warning: IMPORTANT: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed...

dependencies

Right now the boxes can only be discrete integers, but it would be very useful for the algorithms to work using floats. Edit: Nevermind, the moment I posted this I...

How to reproduce: `pip install greedypacker` ``` import greedypacker packer = greedypacker.BinManager(canvas[0], canvas[1], pack_algo='shelf', heuristic='best_width_fit', wastemap=True, rotation=True) ``` ``` Traceback (most recent call last): File "C:/Users/---/PycharmProjects/---/test.py", line 9, in pack_test...

Bumps [pyyaml](https://github.com/yaml/pyyaml) from 5.1.1 to 5.4. Changelog Sourced from pyyaml's changelog. 5.4 (2021-01-19) yaml/pyyaml#407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA yaml/pyyaml#472 -- Fix for...

dependencies

hello, Why does the web app display only a fraction of the results? ![image](https://user-images.githubusercontent.com/48812036/111422065-0b6c7c00-8729-11eb-959c-3d17415a55e0.png)

Suppose we need to use multiple sheets, is there a way of doing this?

Hello! Can you point me to the right direction on how to incorporate constraints into the algorithm? Specifically, each bin has a maximum weight, and the algorithm should pack the...

Hi! I wanted to ask if you could create a new minor release to get the latest fixes in. A project I try to sort out uses greedypacker but installs...