Hello,
I'm using this script in order to get all my assigments.
https://github.com/Esri/workforce-scripts/blob/master/readmes/export_assignments_to_csv_readme.md
Some of the assignments text is in Hebrew.
The text i'm getting is:
׳ ׳©׳œ׳—׳” ׳₪׳ ׳™׳”: 28/04/2022 06:43׳¢׳¨׳ž׳” ׳©׳œ ׳’׳–׳ ׳¢׳¦׳™׳ ׳©׳œ ׳’׳ ׳™׳ ׳•׳ ׳•׳£
What I did:
I'm using
# -*- coding: utf-8 -*-
On the top of my python file.
I have opened the file with notepad++ and converted it to UTF-8 without BOM.
I'm using UTF-8 encoding while reading the file:
with open(arguments.csv_file, 'w', newline='', encoding='utf-8') as csv_file:
Is there anything i'm missing here?
Thank you