US AL Alabama SUTA Wage Base
us_al_suta_wage_base
8000.0
US AL Alabama SUTA Rate
us_al_suta_rate
2.7
US AL Alabama SIT Tax Rate
us_al_sit_tax_rate
{
'0' : [
( 500, 2),
( 2500, 4),
('inf', 5),
],
'M': [
( 1000, 2),
( 5000, 4),
('inf', 5),
],
}
US AL Alabama Dependent Rate
us_al_sit_dependent_rate
[
( 1000, 20000),
( 500, 100000),
( 300, 'inf'),
]
US AL Alabama Standard Deduction Rate
us_al_sit_standard_deduction_rate
{
'0': ((23499.0, 2500.0), (33000.0, 2500.0, 25.0, 500.0), ('inf', 2000.0)),
'S': ((23499.0, 2500.0), (33000.0, 2500.0, 25.0, 500.0), ('inf', 2000.0)),
'MS': ((10749.0, 3750.0), (15500.0, 3750.0, 88.0, 250.0), ('inf', 2000.0)),
'M': ((23499.0, 7500.0), (33000.0, 7500.0, 175.0, 500.0), ('inf', 4000.0)),
'H': ((23499.0, 4700.0), (33000.0, 7500.0, 175.0, 500.0), ('inf', 4000.0)),
}
US AL Alabama Personal Exemption Rate
us_al_sit_personal_exemption_rate
{
'0' : 0,
'S' : 1500,
'MS': 1500,
'M' : 3000,
'H' : 3000,
}
US Alabama - Department of Economic Security (IDES) - Unemployment Tax
US Alabama - Department of Revenue (IDOR) - Income Tax
ER: US AL Alabama State Unemployment
ER_US_AL_SUTA
python
result, _ = general_state_unemployment(payslip, categories, worked_days, inputs, wage_base='us_al_suta_wage_base', rate='us_al_suta_rate', state_code='AL')
code
result, result_rate = general_state_unemployment(payslip, categories, worked_days, inputs, wage_base='us_al_suta_wage_base', rate='us_al_suta_rate', state_code='AL')
EE: US AL Alabama State Income Tax Withholding
EE_US_AL_SIT
python
result, _ = al_alabama_state_income_withholding(payslip, categories, worked_days, inputs)
code
result, result_rate = al_alabama_state_income_withholding(payslip, categories, worked_days, inputs)