Initial commit

This commit is contained in:
amazing-username
2023-03-20 00:24:46 +00:00
commit fda603e0c0
5 changed files with 170 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/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"