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
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
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
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
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 =
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
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
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
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
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
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
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.
>
>
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
You can use services like https://www.tropo.com/home.jsp or
http://www.twilio.com/
--
http://mail.python.org/mailman/listinfo/python-list
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??
>
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
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
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
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
http://www.phpforweb.com/askany/sms.php?sms
--
http://mail.python.org/mailman/listinfo/python-list
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
# 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
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
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
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:
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
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
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
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
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
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
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
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
>
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.
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
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
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
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
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
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
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
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
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
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
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
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
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
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
62 matches
Mail list logo