[15:03:35] <GothAlice> plop6: As a brief note, XLS is the deprecated binary format, and one that may contain executable code (VBScript macros). XLSX is the modern form. Ref: csv2xlsx, tablib (the library I use).
[15:04:35] <GothAlice> (Given Python’s native ‘csv’ module, wiring that together with tablib should be a simple matter. I never liked the proliferation of format-specific packages, e.g. csv2xlsx, given readers and writers are separate concerns.
[15:18:35] <sttt> Hi, I have some troubles connecting to pypi.org via pip from my server in japan.
[18:43:13] <muhzi> is it possible to upload .egg cross builds on pypi for platforms like android and such?
[18:44:09] <ngoldbaum> muhzi: no, in principle the way to do this these days is to upload wheels, but there isn't a standard for android wheels yet
[18:44:54] <ngoldbaum> there are standards for mac, windows, and so-called "manylinux" wheels, which are wheels built on a very old CentOS setup that make use of the good forward compatibility guarantees in the linux ecosystem
[18:45:07] <ngoldbaum> i believe someone else is working on ARM64 wheels as well?
[18:53:50] <muhzi> ngoldbaum: oh.. and the manylinux wheels standard won't work for android's ecosystem?
[18:54:40] <ngoldbaum> no because android uses bionic
[18:54:47] <ngoldbaum> manylinux only works on systems that use glibc
[18:55:02] <ngoldbaum> ~most desktop and server linux boxes but not things like android or ARM