All Projects → kavenegar → Kavenegar Python

kavenegar / Kavenegar Python

Kavenegar API Client Writen In Python

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Kavenegar Python

Silence
PROJECT MOVED: https://git.silence.dev/Silence/Silence-Android/ (GitHub is just a mirror.)
Stars: ✭ 1,019 (+1938%)
Mutual labels:  sms
Fbbot
Minimal framework/SDK for facebook messenger bots. BYOS (Bring Your Own Server)
Stars: ✭ 46 (-8%)
Mutual labels:  sdk
Smsretrieverapimaster
Automatic SMS Verification with the SMS Retriever API
Stars: ✭ 48 (-4%)
Mutual labels:  sms
Freeipa Password Reset
Self-service password reset app for FreeIPA
Stars: ✭ 44 (-12%)
Mutual labels:  sms
Clarifai Apple Sdk
Artificial Intelligence with a Vision
Stars: ✭ 46 (-8%)
Mutual labels:  sdk
Dc Management Sdk Js
Amplience Dynamic Content Management SDK
Stars: ✭ 47 (-6%)
Mutual labels:  sdk
Soflow
A ScriptableObject oriented design SDK.
Stars: ✭ 43 (-14%)
Mutual labels:  sdk
Cos Js Sdk V4
腾讯云 COS JS SDK(JSON API)
Stars: ✭ 49 (-2%)
Mutual labels:  sdk
Symbian Archive
A small website to archive Symbian-related dev tools & doc.
Stars: ✭ 46 (-8%)
Mutual labels:  sdk
Mindconnect Nodejs
NodeJS Library for MindSphere Connectivity - TypeScript SDK for MindSphere - MindSphere Command Line Interface - MindSphere Development Proxy - typescript-sdk is waiting for your contributions!
Stars: ✭ 48 (-4%)
Mutual labels:  sdk
Meta Zephyr Sdk
Zephyr SDK
Stars: ✭ 45 (-10%)
Mutual labels:  sdk
Sentry React Native
Official Sentry SDK for react-native
Stars: ✭ 1,032 (+1964%)
Mutual labels:  sdk
Sdk Ng
New approach for the Zephyr SDK using crosstools-ng
Stars: ✭ 47 (-6%)
Mutual labels:  sdk
Node Qiniu Sdk
七牛云SDK,使用 ES2017 async functions 来操作七牛云,接口名称与官方接口对应,轻松上手,文档齐全
Stars: ✭ 44 (-12%)
Mutual labels:  sdk
Ans Android Sdk
Analysys Android SDK
Stars: ✭ 49 (-2%)
Mutual labels:  sdk
Russianpost Sdk
PHP SDK для Почты России
Stars: ✭ 43 (-14%)
Mutual labels:  sdk
Sgdigittextfield
Elegant and Simplest Digit UITextField
Stars: ✭ 47 (-6%)
Mutual labels:  sms
Android Pdk
Pinterest Android SDK
Stars: ✭ 49 (-2%)
Mutual labels:  sdk
Cli
💻 Decentraland command-line interface
Stars: ✭ 49 (-2%)
Mutual labels:  sdk
Nodejs
Everything related to the Node.js ecosystem for the commercetools platform.
Stars: ✭ 47 (-6%)
Mutual labels:  sdk

kavenegar-python

Kavenegar RESTful API Document

If you need to future information about API document Please visit RESTful Document

Installation

You can install our SDK from pypi through below command

pip install kavenegar

You can download the Python SDK Here too

Then ,You need to make an account on Kavenegar from Here

After that you just need to pick API-KEY up from My Account section.

Anyway there is good tutorial about Pull request

Usage

Well, There is an example to Send SMS by Python below. timeout parameter is optional in KavenegarAPI constructor, default value is set to 10 seconds.

Send

from kavenegar import *
try:
    api = KavenegarAPI('Your APIKey', timeout=20)
    params = {
        'sender': '',#optional
        'receptor': '',#multiple mobile number, split by comma
        'message': '',
    } 
    response = api.sms_send(params)
    print(response)
except APIException as e: 
    print(e)
except HTTPException as e: 
    print(e)

OTP

#!/usr/bin/env python
from kavenegar import *
try:
    api = KavenegarAPI('Your APIKey', timeout=20)
    params = {
        'receptor': '',
        'template': '',
        'token': '',
        'type': 'sms',#sms vs call
    }   
  response = api.verify_lookup(params)
  print(response)
except APIException as e: 
  print(e)
except HTTPException as e: 
  print(e)

Send Bulk

#!/usr/bin/env python
from kavenegar import *
try:
    api = KavenegarAPI('Your APIKey', timeout=20)
    params = {
        'sender':'["",""]',#array of string as json 
        'receptor': '["",""]',#array of string as json 
        'message': '["",""]',#array of string as json 
    } 
    response = api.sms_sendarray(params)
    print(response)
except APIException as e: 
    print(e)
except HTTPException as e: 
    print(e)

Contribution

Bug fixes, docs, and enhancements welcome! Please let us know [email protected]


راهنما

معرفی سرویس کاوه نگار

کاوه نگار یک وب سرویس ارسال و دریافت پیامک و تماس صوتی است که به راحتی میتوانید از آن استفاده نمایید.

ساخت حساب کاربری

اگر در وب سرویس کاوه نگار عضو نیستید میتوانید از لینک عضویت ثبت نام و اکانت آزمایشی برای تست API دریافت نمایید.

مستندات

برای مشاهده اطلاعات کامل مستندات وب سرویس پیامک به صفحه مستندات وب سرویس مراجعه نمایید.

راهنمای فارسی

در صورتی که مایل هستید راهنمای فارسی کیت توسعه کاوه نگار را مطالعه کنید به صفحه کد ارسال پیامک مراجعه نمایید.

اطالاعات بیشتر

برای مطالعه بیشتر به صفحه معرفی وب سرویس اس ام اس کاوه نگار مراجعه نمایید .

اگر در استفاده از کیت های سرویس کاوه نگار مشکلی یا پیشنهادی داشتید ما را با یک Pull Request یا ارسال ایمیل به [email protected] خوشحال کنید.

http://kavenegar.com

http://kavenegar.com

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].