WIP: conversation format.

This commit is contained in:
damien 2025-04-02 17:27:14 +02:00
commit 3019e28cba
4 changed files with 23 additions and 0 deletions

1
README.md Normal file
View file

@ -0,0 +1 @@
Test

4
conversation.csv Normal file
View file

@ -0,0 +1,4 @@
# Sender:Sleep (seconds):Message
0:4:"Stop, someone is spying on us"
1:4:"Hello Théo"
2:4:"Hi Oriana"
Can't render this file because it contains an unexpected character in line 2 and column 5.

11
conversation.json Normal file
View file

@ -0,0 +1,11 @@
{
"error": "Stop, someone is spying on us",
"conversation": [
{
"msg": "Salut Théo"
},
{
"msg": "Salut Oriana"
}
]
}

7
main.py Normal file
View file

@ -0,0 +1,7 @@
import csv
def main():
with open('conversation.csv') as csvfile:
...
main()