if you are using odoo community and you want to calculate your employees salary based on their attendance using python code please refer the below code.
result =(contract.wage/31) * sum(i.worked_hours for i in employee.attendance_ids)
Happy for improvement comment or if there are any other methods.