Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 23247

excel sheet all photo download with serial_number, name, and Photo column

$
0
0

I have an Excel sheet with serial_number, name, and photo column. I need to download all photos row by row by follow this file name convacation like ”serial_number name.jpg”.

My Excel sheet: https://filebin.net/qi9k9nqf53txgpfb

This code not working...

import pandas as pdfrom PIL import Imageimport ioimport numpy as np  # Import numpy for NaN checking# Read the Excel filedf = pd.read_excel('Batch-1.xlsx')# Iterate through rowsfor index, row in df.iterrows():    serial_number = row['sl']    name = row['name']    photo_data = row['photo']    # Check if photo_data is NaN (float in pandas)    if isinstance(photo_data, float) and np.isnan(photo_data):        print(f"No photo data found for row {index + 1}. Skipping...")        continue    # Convert bytes data to image    image = Image.open(io.BytesIO(photo_data))    # Save the image with the specified file name convention    file_name = f"{serial_number} {name}.jpg"    image.save(file_name)    print(f"Photo saved: {file_name}")

output:

I see all images there but why code says:

"No photo data found for row 1. Skipping...No photo data found for row 2. Skipping...No photo data found for row 3. Skipping...No photo data found for row 4. Skipping...No photo data found for row 5. Skipping...No photo data found for row 6. Skipping...No photo data found for row 7. Skipping...No photo data found for row 8. Skipping...No photo data found for row 9. Skipping...No photo data found for row 10. Skipping...No photo data found for row 11. Skipping...No photo data found for row 12. Skipping...No photo data found for row 13. Skipping...No photo data found for row 14. Skipping...No photo data found for row 15. Skipping...No photo data found for row 16. Skipping...No photo data found for row 17. Skipping...No photo data found for row 18. Skipping...No photo data found for row 19. Skipping...No photo data found for row 20. Skipping...No photo data found for row 21. Skipping...No photo data found for row 22. Skipping...No photo data found for row 23. Skipping...No photo data found for row 24. Skipping...No photo data found for row 25. Skipping...No photo data found for row 26. Skipping...No photo data found for row 27. Skipping...No photo data found for row 28. Skipping...No photo data found for row 29. Skipping...No photo data found for row 30. Skipping...

Viewing all articles
Browse latest Browse all 23247

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>