Skip to content

Instantly share code, notes, and snippets.

@gwsu2008
Last active January 3, 2020 05:38
Show Gist options
  • Save gwsu2008/3d9a43308d5cfd47b979a054023282cc to your computer and use it in GitHub Desktop.
Save gwsu2008/3d9a43308d5cfd47b979a054023282cc to your computer and use it in GitHub Desktop.
Python URL encoding
#urllib3
import urllib.parse
test_string = 'refs/heads/feature/Hotfix-test-123-214'
print(urllib.parse.quote_plus(test_string))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment