Python flask app that uses voip.ms to manage a number of DID numbers for SMS. Can be used to get mostly anonymous texts and sms verification.
Find a file
2024-06-10 21:19:12 -04:00
app added basic flask server 2024-06-10 21:09:22 -04:00
.gitignore changed gitignore to prevent config leak 2024-06-10 21:07:02 -04:00
README.md minor formatting changes 2024-06-10 21:19:12 -04:00
requirements.txt updated requirements 2024-06-10 21:07:32 -04:00
run created run script 2024-06-10 21:07:17 -04:00

voipSMS

Python flask app that uses voip.ms to manage a number of DID numbers for SMS. Can be used to get mostly anonymous texts and sms verification.

How to use

  1. Clone the repo

git clone http://git.community.i2p/anons-voip/voipsms.git && cd voipsms

  1. Create and activate a python venv

python3 -m venv venv && source ./venv/bin/activate

  1. Install requirements

pip install -r requirements.txt

  1. Set your config

vim config.json

Read about how to set up your config here!

  1. Start up the server

./run

Config

The config used in this project uses the JSON format and expects a username and password

Ex:
    {
        "username":"voipms-email",
        "password":"voipms-api-password"
    }