Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ description = "The security toolkit for the Python community"
keywords = ["security", "appsec"]
dependencies = [
"requests",
"security==1.3.0",
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This library holds security tools for protecting Python API calls.

License: MITOpen SourceMore facts

]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion src/security/safe_requests/api.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from urllib.parse import urlparse
from urllib.request import urlopen as unsafe_urlopen

from requests import get as unsafe_get
from security.safe_requests import get as unsafe_get
from requests import post as unsafe_post

from security.exceptions import SecurityException
Expand Down
Loading