Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arose13/rosey-deprecated
https://github.com/arose13/rosey-deprecated
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arose13/rosey-deprecated
- Owner: arose13
- Created: 2020-06-29T17:48:18.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-16T18:33:45.000Z (3 months ago)
- Last Synced: 2024-10-08T06:41:12.541Z (3 months ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rosey (Deprecated)
Quickly mark things are deprecated
```python
from rosey_deprecated import deprecated # Decorate a function to raise an error
from rosey_deprecated import Deprecated # Decorate a class or function to throw a warning@deprecated
def funfunfunction():
pass@Deprecated('Please use BlahClass instead')
class MerpClass:
pass
```