You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 21, 2023. It is now read-only.
There's a lot of places in the code where php->python shims are duplicated (simple example being Image.open(photo).size[0] to represent getimagesize(photo)[0], and a more complicated example would be the md5 functions), so I was wondering if creating a separate file to hold all those functions might be more efficient, and make the code look closer to the PHP counterpart.
The text was updated successfully, but these errors were encountered:
There's a lot of places in the code where php->python shims are duplicated (simple example being
Image.open(photo).size[0]
to representgetimagesize(photo)[0]
, and a more complicated example would be the md5 functions), so I was wondering if creating a separate file to hold all those functions might be more efficient, and make the code look closer to the PHP counterpart.The text was updated successfully, but these errors were encountered: