https://github.com/apsun/taxcalc
A basic federal tax withholding calculator.
https://github.com/apsun/taxcalc
Last synced: 4 months ago
JSON representation
A basic federal tax withholding calculator.
- Host: GitHub
- URL: https://github.com/apsun/taxcalc
- Owner: apsun
- License: agpl-3.0
- Created: 2022-01-17T20:41:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-23T05:34:43.000Z (about 1 year ago)
- Last Synced: 2025-03-23T06:25:47.324Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 42 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# taxcalc
A tax calculator script that I use for estimating federal withholding
throughout the year.
I have verified that it returns accurate results on MY past year returns,
however, do not expect it to be accurate on your own return. There is
absolutely zero warranty provided. Use with caution.
## Usage
Copy `data_example.py` to a new file, e.g. `data_2022.py`. Replace the
numbers with your own, then change the imports in `tax.py` to:
```
from laws_ import *
from data_ import *
```
Then just run `tax.py`.
WARNING: `tax.py` is only compatible with the format of `data_example.py`
from the same revision. If the format of `data_example.py` changes (e.g.
by adding or removing variables), you must repeat these steps using the
new format. Failure to do so may result in undefined variable errors or
incorrect results.
## License
AGPLv3