We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug When using from_base64(url_safe=True) an error is thrown.
from_base64(url_safe=True)
To Reproduce Simply run the script found here: https://github.com/securisec/chepy/blob/master/docs/examples.md#recipe-5-google-ei-timestamp
Expected behavior I don't expect an error.
Screenshots
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
The url_safe argument was deprecated. The correct convention is alphabet='url_safe'.
url_safe
alphabet='url_safe'
https://chepy.readthedocs.io/en/latest/chepy.html?highlight=from_base64#chepy.Chepy.from_base64
from chepy import Chepy c = Chepy('aGVsbG8') c.from_base64(alphabet='url_safe') print(c) # prints hello
Sorry, something went wrong.
🗓 Nov 22, 2024 9:20:26 PM
ed7792b
🐙 update docs to reflect new changes to from_base65. References #35 ✨ use CHEPY_PLUGINS envar to enable or disable plugins
No branches or pull requests
Describe the bug
When using
from_base64(url_safe=True)
an error is thrown.To Reproduce
Simply run the script found here: https://github.com/securisec/chepy/blob/master/docs/examples.md#recipe-5-google-ei-timestamp
Expected behavior
I don't expect an error.
Screenshots
![chepy](https://private-user-images.githubusercontent.com/11743804/389154385-1fbccd00-ad67-4e95-baa7-83face05b2c5.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3MzkwMDYxOTcsIm5iZiI6MTczOTAwNTg5NywicGF0aCI6Ii8xMTc0MzgwNC8zODkxNTQzODUtMWZiY2NkMDAtYWQ2Ny00ZTk1LWJhYTctODNmYWNlMDViMmM1LnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMDglMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjA4VDA5MTEzN1omWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTMzNmViMzMwODBlMzM1MmMwYjY1N2FhMjEzMTlhMTZiMmMwNmFjOTM0ZWMxZjE2Njc0MmQxMGI3ODI5ZmMwOTImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.g2UDgUx_QeymNqHEY5I9snPH6-mUfWvwoxATU7qWA4g)
Desktop (please complete the following information):
Additional context
The text was updated successfully, but these errors were encountered: