An open API service indexing awesome lists of open source software.

https://github.com/codewithswastik/better-python

Adds more functionality to Python and an easy to use wrapper for forbiddenfruit.
https://github.com/codewithswastik/better-python

python

Last synced: 11 months ago
JSON representation

Adds more functionality to Python and an easy to use wrapper for forbiddenfruit.

Awesome Lists containing this project

README

          

# better-python
Adds more functionality to Python and an easy to use wrapper for forbiddenfruit.

```py
from betterpython import modify

@modify(str)
def remove(self, substr):
return self.replace(substr, "")

print("This is a string".remove("i")) # Ths s a strng
```