Re: SMS API

2021-02-03 Thread Dieter Maurer
ismail nagi wrote at 2021-2-3 21:06 +0300: >Yes, its about sending messages. For example, something like >twilio...it's an SMS API, can something like twilio be created using python >and how (just a basic idea)? Thank You. "twilio" provides a web service interface to se

Re: SMS API

2021-02-03 Thread Dieter Maurer
ismail nagi wrote at 2021-2-3 08:48 -0800: >I would like to know how an sms api is created. I assume that "sms api" means that your Python application should be able to send SMS messages. In this case, you need a service which interfaces between your device (mobile phone, com

SMS API

2021-02-03 Thread ismail nagi
Hello everyone. I would like to know how an sms api is created. And if this is possible with python, for example, using flask. Thank You -- https://mail.python.org/mailman/listinfo/python-list

Re: Successfully send sms with python

2015-09-23 Thread Cameron Simpson
On 23Sep2015 01:46, Pavel S wrote: I don't understand why all of you are telling him about '\r\n\, write(),..' instead of recommending to use take library which already has all problems resolved (python-gammu / wammu). Sometimes it is useful to know how things are done instead of which big d

Re: Successfully send sms with python

2015-09-23 Thread Laura Creighton
In a message of Tue, 22 Sep 2015 22:25:31 -0600, Michael Torrie writes: >Consider something like this with no error checking when using the >serial port, no context managers for the serial device: >file sms.py: >-- >import serial >import time > >serial_port = 'COM13' >timeout =

Re: Successfully send sms with python

2015-09-23 Thread Pavel S
I don't understand why all of you are telling him about '\r\n\, write(),..' instead of recommending to use take library which already has all problems resolved (python-gammu / wammu). When one will write custom templating stuff, you would also recommend him to take jinja. -- https://mail.pytho

Re: Successfully send sms with python

2015-09-22 Thread Michael Torrie
AT+CMGF=1\r') time.sleep(1) self.ser.write('''AT+CMGS="''' + self.recipient + '''"\r\n''') time.sleep(1) self.ser.write(self.content + "\r\n") time.sleep(1) self.ser.write(chr(26)) t

Re: Successfully send sms with python

2015-09-22 Thread Cameron Simpson
On 22Sep2015 04:19, Timon Rhynix wrote: Hello, I have used pyserial, sms0.4 and other libraries to send sms via huawei E1750 modem. The code runs well and no error is thrown but the text message is not sent/delivered to the number. One of my code is as follows: import serial import time

Re: Successfully send sms with python

2015-09-22 Thread mm0fmf via Python-list
On 22/09/2015 12:19, Timon Rhynix wrote: Hello, I have used pyserial, sms0.4 and other libraries to send sms via huawei E1750 modem. The code runs well and no error is thrown but the text message is not sent/delivered to the number. One of my code is as follows: import serial import time

Re: Successfully send sms with python

2015-09-22 Thread Pavel S
On Tuesday, September 22, 2015 at 1:20:07 PM UTC+2, Timon Rhynix wrote: > Hello, I have used pyserial, sms0.4 and other libraries to send sms via > huawei E1750 modem. > The code runs well and no error is thrown but the text message is not > sent/delivered to the number. > One o

Successfully send sms with python

2015-09-22 Thread Timon Rhynix
Hello, I have used pyserial, sms0.4 and other libraries to send sms via huawei E1750 modem. The code runs well and no error is thrown but the text message is not sent/delivered to the number. One of my code is as follows: import serial import time class TextMessage: def __init__(self

Re: bulk sms with python

2014-10-28 Thread Bob Hartwig
ed to build a bulk SMS system for a particular group of users. > > i WAS THINKING OF USING RAPIDSMS, AND KANNEL. > > Is there not a way to use just python from scratch to build a bulk sms > system > > or if there are other simpler means please indicate to me. > >

bulk sms with python

2014-10-28 Thread ngangsia akumbo
I need to build a bulk SMS system for a particular group of users. i WAS THINKING OF USING RAPIDSMS, AND KANNEL. Is there not a way to use just python from scratch to build a bulk sms system or if there are other simpler means please indicate to me. Thanks Ngangsi Richard skyoe

Re: SMS api for python

2011-11-11 Thread Miki Tebeka
You can use services like https://www.tropo.com/home.jsp or http://www.twilio.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: SMS api for python

2011-11-11 Thread Arjuna Software
On Oct 21, 4:41 am, Chris Rebert wrote: > On Fri, Oct 21, 2011 at 12:10 AM, Pankaj wrote: > > I want to make an api that would recieve the SMS text from the user > > and process it then send the result back to the use. Is there any api > > that I can use to do this?? >

Re: SMS api for python

2011-11-11 Thread Arjuna Software
On Oct 21, 3:10 am, Pankaj wrote: > I want to make an api that would recieve the SMS text from the user > and process it then send the result back to the use. Is there any api > that I can use to do this?? Send SMS Text messages using SMS API: http://www.txtimpact.com/sms-gatewa

Re: SMS api for python

2011-10-21 Thread Chris Rebert
On Fri, Oct 21, 2011 at 12:10 AM, Pankaj wrote: > I want to make an api that would recieve the SMS text from the user > and process it then send the result back to the use. Is there any api > that I can use to do this?? There would seem to be several options: http://pypi.python

SMS

2011-07-20 Thread TERESA G
One method you can use is to connect to an SMS API provider from your web application, which will enable you to send SMS via an internet connection, typically using a protocol like HTTP; You can try Nexmo SMS API, it supports HTTP REST and SMPP and we have documentation published in our website

Send Sms with Nokia Phone

2011-04-11 Thread Santhosh Kumar
Hi all, I try to implement a sms forwarding system. My aim is to when some hits happen in database It should send a sms so I did some research with gammu and gammu-smsd I did all the configuration and also test sms is working fine when I give echo "hello world" /etc/gammu text

send free sms to any mobile in the world

2010-11-28 Thread mohammed_a_o
send free sms to any mobile in the world http://www.phpforweb.com/askany/sms.php?sms -- http://mail.python.org/mailman/listinfo/python-list

Re: is it possible to write USSD / SMS /SS7 apps in python

2009-07-04 Thread Banibrata Dutta
On Sat, Jul 4, 2009 at 3:20 PM, Chris Rebert wrote: > On Sat, Jul 4, 2009 at 2:47 AM, Banibrata > Dutta wrote: > > QuoteGoke Aruna > >> > >> what am saying is reading the ITU info on USSD, is it possible to use > >> python > >> > >> to write the application SS7 with support for TCAP/MAP talking

Re: is it possible to write USSD / SMS /SS7 apps in python

2009-07-04 Thread Banibrata Dutta
BTW, if you just want to be able to send/receive SMS's in a Python application, there are several alternatives. 1. Most operators, or 3rd party bulk-SMS vendors (who resell SMS capacity from operators at a premium but in smaller bundles than what an operator would sell), offer -- a. HTTP

Re: is it possible to write USSD / SMS /SS7 apps in python

2009-07-04 Thread Chris Rebert
On Sat, Jul 4, 2009 at 2:47 AM, Banibrata Dutta wrote: > QuoteGoke Aruna >> >> what am saying is reading the ITU info on USSD, is it possible to use >> python >> >> to write the application SS7 with support for TCAP/MAP talking to E1 card >> to do the ss7 signalling. > > As Chris mentioned "possib

Re: is it possible to write USSD / SMS /SS7 apps in python

2009-07-04 Thread Banibrata Dutta
but AFAIK, they are largely domain/application specific (s.a. for SNMP), and not generic or robust enough. Given the API's however, writing any application s.a. for performing some "business-logic" on receiving or before sending USSD / SMS message in Python, that's a no-br

Re: is it possible to write USSD / SMS /SS7 apps in python

2009-07-03 Thread Goke Aruna
On Fri, Jul 3, 2009 at 10:21 AM, Chris Rebert wrote: > On Fri, Jul 3, 2009 at 1:55 AM, Goksie Aruna wrote: > > Can someone give me an insight into these? > > > > developing ss7 or USSD or SMS apps in python. > > > > is there any existing ones in this manner

Re: is it possible to write USSD / SMS /SS7 apps in python

2009-07-03 Thread Chris Rebert
On Fri, Jul 3, 2009 at 1:55 AM, Goksie Aruna wrote: > Can someone give me an insight into these? > >   developing ss7 or USSD or SMS apps in python. > > is there any existing ones in this manner? Advice for the future: STFW. http://pypi.python.org/pypi?%3Aaction=search&ter

is it possible to write USSD / SMS /SS7 apps in python

2009-07-03 Thread Goksie Aruna
Can someone give me an insight into these? developing ss7 or USSD or SMS apps in python. is there any existing ones in this manner? Thanks -- http://mail.python.org/mailman/listinfo/python-list

Re: Sending SMS using python script

2009-04-03 Thread Craig
roach > > 1. Is there any way to sendSMSfor free inside India ,or ,Any freeSMSgateway > > providers in India > > Any information regarding this is appreciable > >   Thanks > > A friend from India sent me this hint: > > the following link can be explored further for sending SMS on pyS60 > (python for symbian OS)http://mobilenin.com/pys60/menu.htm > > wkr, > Aldo -- http://mail.python.org/mailman/listinfo/python-list

Re: Sending SMS using python script

2009-04-02 Thread ISF (Computer Scientists without Frontiers, Italy)
formation regarding this is appreciable >   Thanks A friend from India sent me this hint: the following link can be explored further for sending SMS on pyS60 (python for symbian OS) http://mobilenin.com/pys60/menu.htm wkr, Aldo -- http://mail.python.org/mailman/listinfo/python-list

Re: Sending SMS using python script

2009-04-02 Thread Brent Bloxam
guptha wrote: hi group, my application needs to send SMS occasionally to all the clients .Is there any library in python that supports in sending SMS. I like to conform few information i gathered in this regard. I can send SMS by two ways 1. Sending SMS using Email clients 2. Using sms

Re: Sending SMS using python script

2009-04-02 Thread Matteo
I don't really know, because I didn't write it myself ;) I think it basically logs in into a service provider site with pycurl, follows the right links, reads captcha's and writes an SMS, which is then sent by the provider itself. I can give you the direct link to the source cod

Re: Sending SMS using python script

2009-04-02 Thread Banibrata Dutta
Hi Guptha: Most SMS providers (you'd be dealing with resellers mostly) have some kind of HTTP API to send SMS (even bulk SMS, upto a point). So you using standard Python HTTP module to invoke the SMS provider API. For SMS service providers, just google thru or search yellow pages in your r

Re: Sending SMS using python script

2009-04-02 Thread guptha
On Apr 2, 12:41 pm, Matteo wrote: > I use a programme, written in Python, which sends sms through the sms > providers. You might want to have a look to the source code: > > http://www.moioli.net/Progetti___1/MoioSMS___Messaggi_GRATIS_da_Inter... Thanks for your reply Matteo It

Re: Sending SMS using python script

2009-04-02 Thread Matteo
I use a programme, written in Python, which sends sms through the sms providers. You might want to have a look to the source code: http://www.moioli.net/Progetti___1/MoioSMS___Messaggi_GRATIS_da_Internet22.html -- http://mail.python.org/mailman/listinfo/python-list

Sending SMS using python script

2009-04-01 Thread guptha
hi group, my application needs to send SMS occasionally to all the clients .Is there any library in python that supports in sending SMS. I like to conform few information i gathered in this regard. I can send SMS by two ways 1. Sending SMS using Email clients 2. Using sms gateway to send

PyS60, GPS and SMS

2008-12-31 Thread makobu
# Send an SMS with your current GPS co-ordinates using a # Nokia SmartPhone and PyS60 # # Timothy Makobu, 01-01-2009 import positioning import messaging import appuifw import sys

Re: python & sms

2008-09-30 Thread M�ta-MCI (MVP)
Hi! You can manage Skype from Python('s scripts), for use the functionalities of Skype to send SMS. @-salutations -- Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

Re: python & sms

2008-09-29 Thread sui
On Sep 30, 10:10 am, "James Mills" <[EMAIL PROTECTED]> wrote: > sui, > > I am sure you'll find many web services > that you can use to send SMS'. Your > problem would then become one of > learning how to communicate and access > web services

Re: python & sms

2008-09-29 Thread James Mills
sui, I am sure you'll find many web services that you can use to send SMS'. Your problem would then become one of learning how to communicate and access web services in Python. Start with: * urllib and urllib2 * xmlrpc There are others... cheers James On Tue, Sep 30, 2008 at 1:

Re: python & sms

2008-09-29 Thread Sean DiZazzo
On Sep 29, 8:47 pm, sui <[EMAIL PROTECTED]> wrote: > Hii > i want a script to send sms to any mobile. > can u help me ?? > > Thanks in advance.. Must...be...smarter...than...cell...phone... -- http://mail.python.org/mailman/listinfo/python-list

python & sms

2008-09-29 Thread sui
Hii i want a script to send sms to any mobile. can u help me ?? Thanks in advance.. -- http://mail.python.org/mailman/listinfo/python-list

Re: SMS sending and receiving from website?

2008-06-01 Thread David
On Fri, May 30, 2008 at 11:08 PM, globalrev <[EMAIL PROTECTED]> wrote: > can i send and receive messages from a website using python? > > how would that work with costs? would the mobileowner pay both ways? > -- > http://mail.python.org/mailman/listinfo/python-list > I use smstools for this. Home

Re: SMS sending and receiving from website?

2008-06-01 Thread Benjamin Kaplan
On Fri, May 30, 2008 at 5:08 PM, globalrev <[EMAIL PROTECTED]> wrote: > can i send and receive messages from a website using python? > > how would that work with costs? would the mobileowner pay both ways? > -- > http://mail.python.org/mailman/listinfo/python-list > I believe that there is a way

Re: SMS sending and receiving from website?

2008-05-31 Thread TheSaint
On 22:01, sabato 31 maggio 2008 globalrev wrote: > also, lets say i want to send a SMS to my own phone from the internet. > how would i do that? IMO, nowadays free SMS sending, via internet, is gone. There should be the chance from one's own subscribed network. -- Mailsweeper

Re: SMS sending and receiving from website?

2008-05-31 Thread John Henderson
globalrev wrote: > i want to build a service where you can send an SMS with your > cellphone to my website and then the site will collect the > data you asked for and SMS it back. > > so what components would i need for that? Arguably the simplest route is to use a phon

Re: SMS sending and receiving from website?

2008-05-31 Thread Tommy Grav
On May 31, 2008, at 10:01 AM, globalrev wrote: also, lets say i want to send a SMS to my own phone from the internet. how would i do that? While I have seen services that allow you to do that (it has been awhile), i think you need to contact a service provider if you want to do this on any

Re: SMS sending and receiving from website?

2008-05-31 Thread globalrev
both > > > ways? > > > That depends on the country, the carrier and the offers/plans > > that carrier makes. In most of the civilized world, SMS > > receivers pay nothing. > > > John > > i want to build a service where you can send an SMS with your >

Re: SMS sending and receiving from website?

2008-05-31 Thread globalrev
and > receive messages? Or do you want access to your own cellular > hardware from a web interface? > > > how would that work with costs? would the mobileowner pay both > > ways? > > That depends on the country, the carrier and the offers/plans > that carrier makes.

Re: SMS sending and receiving from website?

2008-05-30 Thread John Henderson
interface? > how would that work with costs? would the mobileowner pay both > ways? That depends on the country, the carrier and the offers/plans that carrier makes. In most of the civilized world, SMS receivers pay nothing. John -- http://mail.python.org/mailman/listinfo/python-list

SMS sending and receiving from website?

2008-05-30 Thread globalrev
can i send and receive messages from a website using python? how would that work with costs? would the mobileowner pay both ways? -- http://mail.python.org/mailman/listinfo/python-list

Re: pure python for sms

2007-08-31 Thread Paul Boddie
On 31 Aug, 15:36, Gerardo Herzig <[EMAIL PROTECTED]> wrote: > Neil Hodgson wrote: > >This is likely to cost some money similar to sending an SMS from a > >'phone. [...] > Well, im not triyng to send a SMS `FROM' a cellphone, im trying to send > a SMS `TO

Re: pure python for sms

2007-08-31 Thread Francesco Guerrieri
On 8/31/07, Gerardo Herzig <[EMAIL PROTECTED]> wrote: > Well, im not triyng to send a SMS `FROM' a cellphone, im trying to send > a SMS `TO' a cellphone. Here (in Argentina) are several sites who lets > you send a sms for free. You also can receive SMS respo

Re: pure python for sms

2007-08-31 Thread Gerardo Herzig
Neil Hodgson wrote: >Gerardo Herzig: > > > >>Hi dudes. Im looking for a python implementation for sending sms to a >>cell phone. I was try using some free pages, but i want to use a python. >>Do i need a cellphone conected to my machine? Or can i send sms t

Re: pure python for sms

2007-08-30 Thread Neil Hodgson
Gerardo Herzig: > Hi dudes. Im looking for a python implementation for sending sms to a > cell phone. I was try using some free pages, but i want to use a python. > Do i need a cellphone conected to my machine? Or can i send sms to some > cell via some python library? This

pure python for sms

2007-08-30 Thread Gerardo Herzig
Hi dudes. Im looking for a python implementation for sending sms to a cell phone. I was try using some free pages, but i want to use a python. Do i need a cellphone conected to my machine? Or can i send sms to some cell via some python library? Waiting for advice. Thanks! Gerardo -- http

Re: Free SMS from Computer Worldwide

2007-08-01 Thread Dan Anos
Hi Lowbowman, Interested in expanding your SMS website to other countries, check out our affiliate scheme on FreebieSMS.co.uk. I cant see your email address on your website. Fiach On Jul 31, 4:09 am, lowboman <[EMAIL PROTECTED]> wrote: > Hello there I invite you to che

Free SMS from Computer Worldwide

2007-07-30 Thread lowboman
Hello there I invite you to check out my site http://www.nocostsms.com you can send free sms text messages from your computer to any mobile phone and receive replies in you email account, also check out cell phone forums out while your there -- http://mail.python.org/mailman/listinfo/python-list

Re: please help me is sms with python

2006-05-15 Thread Paul Boddie
Diez B. Roggisch wrote: > > Attach a Mobile to your computer using USB/Bluetooth, open it with a > terminal program and use these AT-commands. > > http://www.cellular.co.za/hayesat.htm#SMS Command Set > > You can do that in python too, by opening the COM-port the handset

Re: please help me is sms with python

2006-05-15 Thread [EMAIL PROTECTED]
Yet another option: Use Python high level API for Symbian (http://opensource.nokia.com/projects/pythonfors60/) to write simple server which listen to desktop client (both in Python). Server (phone side): accept requests, send SMS using mobile phone capability Client (desktop): send requests

Re: please help me is sms with python

2006-05-15 Thread [EMAIL PROTECTED]
Yet another option: Use web-service provided by your mobile operator (by means of cookielib, urllib2, etc). -- http://mail.python.org/mailman/listinfo/python-list

Re: please help me is sms with python

2006-05-15 Thread Diez B. Roggisch
huda ahmed wrote: > hi >>>> > please i need your help . > > how can i send sms from pc(windows xp) > to mobile symbian 60 6630 by python > > i need your help please > i hope you answer me as fast as u can > > thanks in advance.. Attach a M

please help me is sms with python

2006-05-15 Thread huda ahmed
hi >>>> please i need your help . how can i send sms from pc(windows xp) to mobile symbian 60 6630 by python i need your help please i hope you answer me as fast as u can thanks in advance.. -- http://mail.python.org/mailman/listinfo/python-list