Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kumpeapps/salestax-python
Python module for gathering sales tax rates
https://github.com/kumpeapps/salestax-python
Last synced: 19 days ago
JSON representation
Python module for gathering sales tax rates
- Host: GitHub
- URL: https://github.com/kumpeapps/salestax-python
- Owner: kumpeapps
- License: mit
- Created: 2023-10-16T21:31:25.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-16T23:34:27.000Z (about 1 year ago)
- Last Synced: 2024-04-17T05:45:30.582Z (9 months ago)
- Language: Python
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# salestax-python
Python module for gathering sales tax rates
Currently only supports Arkansas. Feel free to submit a pull request to help add other states.```
from salestax import Arkansas as arar.get("700 W Walnut St", "Rogers", "72756")
{'taxable_state': 'Arkansas', 'state_tax_rate': '6.5%', 'is_state_taxable': True, 'taxable_county': 'Benton', 'county_tax_rate': '1%', 'is_county_taxable': True, 'taxable_city': 'Rogers', 'city_tax_rate': '2%', 'is_city_taxable': True}
```