selbl commited on
Commit
cf9cd29
1 Parent(s): 41c73ca

Added iOs support

Browse files
Files changed (1) hide show
  1. 2_📁_ExportConversations.py +16 -0
2_📁_ExportConversations.py CHANGED
@@ -16,6 +16,9 @@ def main():
16
  initial_sidebar_state="auto",
17
  )
18
  st.title("Exporting a Whatsapp Conversation to a .txt File")
 
 
 
19
  st.text("To work with your own data, first you have to open Whatsapp.")
20
  st.text("Then go to the desired chat and click on the three dots in the upper-right corner.")
21
  st.text("It should look like this:")
@@ -25,6 +28,19 @@ def main():
25
  image_path_2 = "Imgs/image_2.jpg" # Replace with the path to your image file
26
  st.image(image_path_2, caption="Second Display", use_column_width=True)
27
  st.text("Choose your preferred way of sending the data to yourself and voilá!")
 
 
 
 
 
 
 
 
 
 
 
 
 
28
 
29
  if __name__ == "__main__":
30
  main()
 
16
  initial_sidebar_state="auto",
17
  )
18
  st.title("Exporting a Whatsapp Conversation to a .txt File")
19
+ st.text("The process to export data depends on whether you are using iPhone or Android")
20
+ st.text("Instructions for both are below")
21
+ st.header("Android", divider="blue")
22
  st.text("To work with your own data, first you have to open Whatsapp.")
23
  st.text("Then go to the desired chat and click on the three dots in the upper-right corner.")
24
  st.text("It should look like this:")
 
28
  image_path_2 = "Imgs/image_2.jpg" # Replace with the path to your image file
29
  st.image(image_path_2, caption="Second Display", use_column_width=True)
30
  st.text("Choose your preferred way of sending the data to yourself and voilá!")
31
+ st.header("iPhone", divider="blue")
32
+ st.text("Open the chat you want to analyze and click the upper bar with the group name")
33
+ image_path_ios_1 = "Imgs/image_ios_1.jpg" # Replace with the path to your image file
34
+ st.image(image_path_ios_1, caption="First Display", use_column_width=True)
35
+ st.text("A new view like the one in image below will appear, scroll down")
36
+ image_path_ios_2 = "Imgs/image_ios_2.jpg" # Replace with the path to your image file
37
+ st.image(image_path_ios_2, caption="Second Display", use_column_width=True)
38
+ st.text("Click on export chat in the new view and select how to send the chat")
39
+ image_path_ios_3 = "Imgs/image_ios_3.jpg" # Replace with the path to your image file
40
+ st.image(image_path_ios_3, caption="Third Display", use_column_width=True)
41
+ st.text("I reccommend sending it as an email")
42
+ st.text("As opposed to Android, the conversation is sent compressed as a zip")
43
+ st.text("Be sure to open it before feeding the text file to the program")
44
 
45
  if __name__ == "__main__":
46
  main()