breuerfelix / chromedriver-py

chromedriver self updated binaries for all platforms
https://pypi.org/project/chromedriver-py/
Apache License 2.0
50 stars 16 forks source link

add binaries only for specific platform #7

Open breuerfelix opened 3 years ago

KotlinIsland commented 1 month ago

would this mean that we would build a wheel for each platform, each containing only the associated binary for that platform?

breuerfelix commented 1 month ago

@KotlinIsland yes that would reduce the pypi package size for each distro about 1/3 of the size. It would also reduce the logic in the actual package since you can always just refer to the "chromedriver" binary (except windows, that needs a .exe in the end).

KotlinIsland commented 1 month ago

if there are 5 binaries, wouldn't the wheel be 1/5 the size?

breuerfelix commented 1 month ago

if there are 5 binaries, wouldn't the wheel be 1/5 the size?

depends on how good the compression currently is. maybe you are right, we have to see :)