
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
immutable-Python-Type
Advanced tools
package for make immutable all types in Python
Int_()Float_()Str_()Bool_()Set_()Tuple_()List_()Dict_()from immutableType import Bool_, Int_
immutable_bool = Bool_(True) # init immutable boolean
immutable_int = Int_(1) # init immutable integer
immutable_bool.bool_ = 1234 # raise an error
immutable_bool.bool_ = False # good
print(immutable_int == immutable_bool) # print False
"""
Immutable boolean consider True = 1 and False = 0
"""
Int_(integer: int)from immutableType import Int_
my_int = Int_(1234) # init immutable integer
my_int.int_ # property to get the value in 'int' type
Int_()have methods :
__str__: return string with the integer value__int__: return the integer value__bool__: return True if the value == 1 else False__eq__, __and__, __or__, __iand, __ior__: basic comparaison__add__, __sub__, __iadd__, __isub__, __mul__, __imul__, __truediv__, __itruediv__, __pow__, __ipow__: basic operation (only int value are accepted for operation. The result of a division is always an integer. Use Float_ class for more precision.)
redaction in progress...
FAQs
A immutable type for Python
We found that immutable-Python-Type demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.