Skip to content

arianmonti/sms_serial_verification

 
 

Repository files navigation

sms_verification

LICENSE Requirements Todo

This project is done for Altech (Schneider Electric Iran) as an educational series.

این پروژه ای است به سفارش آلتک (اشنایدر الکتریک ایران) برای سنجش صحت شماره سریال ها با پیامک. من پروژه رو ازشون قبول کردم به این شرط که همه مراحلش رو ضبط و منتشر کنم تا نمونه ای باشه از انجام یک پروژه واقعی توسط یک فری لنسر. در این پروژه از تکنولوژی های زیر استفاده می شه:
  • پایتون
  • فلسک
  • ای پی آی های دریافت و ارسال اسمس از درگاه پیامک کاوه نگار
  • پاس فندق
  • مای اسکوئل

کل ویدئوها رو می تونین از لینک های زیر ببینین.

Every single step of this project is screen captures and you can follow them On youtube or On Aparat.

How to run

  1. Install python3, pip3, virtualenv, MySQL in your system.
  2. Clone the project git clone https://github.com/jadijadi/sms_serial_verification && cd sms_serial_verification
  3. rename the .env.sample to .env and do proper changes.
  4. db configs are in .env. Create the db and grant all access to the specified user with specified password.
  5. Create a virtualenv named venv using virtualenv -p python3 venv
  6. Connect to virtualenv using source venv/bin/activate
  7. From the project folder, install packages using pip install -r requirements.txt
  8. Now environment is ready. Run it by python sms.py

Example of creating db and granting access:

Note: this is just a sample. You have to find your own systems commands.

CREATE DATABASE smsmysql;
USE smsmysql;
CREATE USER 'smsmysql'@'localhost' IDENTIFIED BY 'test' PASSWORD NEVER EXPIRE;
GRANT ALL PRIVILEGES ON smsmysql.* TO 'smsmysql'@'localhost';

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%