Reviewed-on: phoenix/twilio_sender#1
Co-authored-by: kdeng00 <kundeng94@gmail.com>
Co-committed-by: kdeng00 <kundeng94@gmail.com>
This commit is contained in:
kdeng00
2024-08-24 21:20:30 +00:00
committed by phoenix
parent fda603e0c0
commit 7b55ff5be2
14 changed files with 383 additions and 30 deletions
-21
View File
@@ -1,21 +0,0 @@
#!/usr/bin/bash
root_dir="/home/phoenix/programming/python/experiments/twilo_demo"
numbers_part="60"
numbers_path="numbers/numbers-$numbers_part.json"
# numbers_path="numbers/test_number.json"
type_message="json"
messages_path="messages/message-$numbers_part.json"
send_message="True"
echo "Changing directory to $root_dir"
cd $root_dir
source env/bin/activate
echo "Activated virtual environment"
python main.py "$numbers_path" "$type_message" "$messages_path" "$send_message"
echo "Done"