├── .gitignore ├── README.md ├── examples ├── download_files.py ├── download_files_with_subfolder.py ├── download_latest_file.py ├── download_list.py ├── file_properties_from_folder.py ├── upload_files.py └── upload_files_in_chunks.py ├── office365_api.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/README.md -------------------------------------------------------------------------------- /examples/download_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/examples/download_files.py -------------------------------------------------------------------------------- /examples/download_files_with_subfolder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/examples/download_files_with_subfolder.py -------------------------------------------------------------------------------- /examples/download_latest_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/examples/download_latest_file.py -------------------------------------------------------------------------------- /examples/download_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/examples/download_list.py -------------------------------------------------------------------------------- /examples/file_properties_from_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/examples/file_properties_from_folder.py -------------------------------------------------------------------------------- /examples/upload_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/examples/upload_files.py -------------------------------------------------------------------------------- /examples/upload_files_in_chunks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/examples/upload_files_in_chunks.py -------------------------------------------------------------------------------- /office365_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/office365_api.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamlu-coding/python-sharepoint-office365-api/HEAD/requirements.txt --------------------------------------------------------------------------------