Search Results

12
votes

How to convert an integer to the shortest url-safe string in Python?

This answer is similar in spirit to Douglas Leeder's, with the following changes: It doesn't use actual Base64, so there's no padding characters Instead of converting the …
14
votes

base64 png in python on Windows

Open the file in binary mode: open("icon.png", "rb") I'm no …
1
vote

What’s the best candidate padding char for url-safe and filename-safe base64?

The RFC 2396 unreserved characters in URIs are: "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")" …