├── .idea ├── .gitignore ├── AutomateExcelFile.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── August.xls ├── December.xls ├── November.xls ├── October.xls ├── September.xls ├── all_sleep_data.py ├── all_sleep_data.xlsx ├── multiple_sheets.xlsx └── multiple_sheets_of_sleep.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/AutomateExcelFile.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/.idea/AutomateExcelFile.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /August.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/August.xls -------------------------------------------------------------------------------- /December.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/December.xls -------------------------------------------------------------------------------- /November.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/November.xls -------------------------------------------------------------------------------- /October.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/October.xls -------------------------------------------------------------------------------- /September.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/September.xls -------------------------------------------------------------------------------- /all_sleep_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/all_sleep_data.py -------------------------------------------------------------------------------- /all_sleep_data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/all_sleep_data.xlsx -------------------------------------------------------------------------------- /multiple_sheets.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/multiple_sheets.xlsx -------------------------------------------------------------------------------- /multiple_sheets_of_sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauraMarcela505/AutomateExcelFile/HEAD/multiple_sheets_of_sleep.py --------------------------------------------------------------------------------