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
1
vote
What’s the best candidate padding char for url-safe and filename-safe base64?
The RFC 2396 unreserved characters in URIs are:
"-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"
…
