Processing YAML with Python(3)¶
Introduction¶
This is an example project to show how to
parse command line arguments
read and process YAML files
log messages
unit test
build using make
document code
Contents¶
- How to build the project using GNU make
- Dependencies
- Main
- Classes
- Employees
- Module
Employees
Employees.dump()
Employees.filter_by_id()
Employees.filter_by_name()
Employees.filter_by_year()
Employees.get_by_id()
Employees.get_by_name()
Employees.get_by_year()
Employees.get_for_name_by_year()
Employees.get_name()
Employees.list_by_id()
Employees.list_by_name()
Employees.list_by_year()
Employees.load()
- Module
- Test Employees
- Employees
- Unit Tests
- References