Advertisement
zcrayfish

urlencode

Feb 11th, 2024
779
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. #! /usr/bin/env python3
  2. import sys;
  3. from urllib.parse import quote;
  4. print(quote(sys.stdin.read()), end = '');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement