Hello,
Can anyone point me to a way on how to send a SMS message using Python?
Thanks, 13 18678
Fazer <fa****@jaredweb.com> pisze: Can anyone point me to a way on how to send a SMS message using Python?
Use web gateway, like 1rstWap.com. I think it's simplest method.
--
Jarek Zgoda
Registered Linux User #-1 http://www.zgoda.biz/ JID:ja***@jabberpl.org http://zgoda.jogger.pl/
Jarek Zgoda <jz****@gazeta.usun.pl> wrote in message news:<bj**********@atlantis.news.tpi.pl>... Fazer <fa****@jaredweb.com> pisze:
Can anyone point me to a way on how to send a SMS message using Python?
Use web gateway, like 1rstWap.com. I think it's simplest method.
Thanks, but how would I implement that? Any ideas?
Thanks,
Faizan
Fazer <fa**********@jaredweb.com> pisze: > Can anyone point me to a way on how to send a SMS message using Python?
Use web gateway, like 1rstWap.com. I think it's simplest method.
Thanks, but how would I implement that? Any ideas?
Just send appropriately crafted HTTP request to the gateway's webserver
using httplib. You should analyze page source to get some basic things
like http field names and a name of script, where you should send your
data (form action="script_name").
Also, be aware, that 1rstWap.com (and many other free SMS web gateways)
require prior user registration, that can not be handled by program
(they show user some picture with text that need to be entered
correctly).
--
Jarek Zgoda
Registered Linux User #-1 http://www.zgoda.biz/ JID:ja***@jabberpl.org http://zgoda.jogger.pl/
Jarek Zgoda wrote: Also, be aware, that 1rstWap.com (and many other free SMS web gateways) require prior user registration, that can not be handled by program (they show user some picture with text that need to be entered correctly).
Kind of defeats the value of suggesting that he use this as
a way of sending using Python, doesn't it?
-Peter
Peter Hansen <pe***@engcorp.com> pisze: Also, be aware, that 1rstWap.com (and many other free SMS web gateways) require prior user registration, that can not be handled by program (they show user some picture with text that need to be entered correctly).
Kind of defeats the value of suggesting that he use this as a way of sending using Python, doesn't it?
Yes - if this should be service/daemon app and you don't have a user
that can perform prior registration.
No - if this will be usual GUI app with user equipped with monitor,
keyboard and mouse, sitting in front of it.
And again no - if you don't need "worldwide" functionality of gateways
like 1rstWap and stick to local telcos.
--
Jarek Zgoda
Registered Linux User #-1 http://www.zgoda.biz/ JID:ja***@jabberpl.org http://zgoda.jogger.pl/
Jarek Zgoda <jz****@gazeta.usun.pl> wrote in message news:<bk**********@nemesis.news.tpi.pl>... Fazer <fa**********@jaredweb.com> pisze:
> Can anyone point me to a way on how to send a SMS message using Python?
Use web gateway, like 1rstWap.com. I think it's simplest method.
Thanks, but how would I implement that? Any ideas?
Just send appropriately crafted HTTP request to the gateway's webserver using httplib. You should analyze page source to get some basic things like http field names and a name of script, where you should send your data (form action="script_name").
Also, be aware, that 1rstWap.com (and many other free SMS web gateways) require prior user registration, that can not be handled by program (they show user some picture with text that need to be entered correctly).
Thanks for your reply. I thought I would have to use sockets but I
guess http would be easier.
Guenther Starnberger <gs*@sysfrog.org> pisze: either use libicq2000[1] directly (but afaik there are no python bindings yet), or setup a local jabber[2] server with an aim-transport[3] to which you can connect with python by using jabberpy[4].
Shouldn't public Jabber server with AIM transport be sufficient? I never
tried such approach, but it sounds interesting since Jabber is getting
more and more audience here in Poland.
Also, there is another Jabber library available, PyXMPP. Its author
claims it's faster and more robust (it is based on libxml2, not expat).
I didn't tried it yet due to some system inconsistencies (libxml2 is
heavily used by GNOME2 and Python bindings are tightly tied to
particular version of library), but it sounds promising.
--
Jarek Zgoda
Registered Linux User #-1 http://www.zgoda.biz/ JID:ja***@jabberpl.org http://zgoda.jogger.pl/
Jarek Zgoda wrote:
hello, either use libicq2000[1] directly (but afaik there are no python bindings yet), or setup a local jabber[2] server with an aim-transport[3] to which you can connect with python by using jabberpy[4].
Shouldn't public Jabber server with AIM transport be sufficient? I never tried such approach, but it sounds interesting since Jabber is getting more and more audience here in Poland.
yop - it should be possible, but AOL already blocks some public jabber
servers from login to ICQ/AIM. if people start using large (well known)
jabber servers to relay their SMS for free, it's likely that they soon will
be blocked too :/
cu
/gst
Peter Hansen <pe***@engcorp.com> pisze: Also, be aware, that 1rstWap.com (and many other free SMS web gateways) require prior user registration, that can not be handled by program (they show user some picture with text that need to be entered correctly).
Kind of defeats the value of suggesting that he use this as a way of sending using Python, doesn't it?
Ah, and one thing I forgot for the first time -- you are not limited to
"free" gateways. You can always buy a service from your telco.
--
Jarek Zgoda
Registered Linux User #-1 http://www.zgoda.biz/ JID:ja***@jabberpl.org http://zgoda.jogger.pl/
Fazer wrote: Can anyone point me to a way on how to send a SMS message using Python?
If you can read Java APIs, and don't mind working jython, then take a
look
at OpenSMPP, an open source implementation of the SMPP protocol.
The dates may look a little stale, i.e. last work done nearly two
years ago, but I'm fairly sure that most of the core stuff is working
and stable. OpenSMPP was written by Aldiscon (a Dublin company), who
were then taken over by Logica. Logica maintained the Open Source
committment. http://opensmpp.logica.com/
Then there are various solutions where you can put a GSM card in your
PC, or cables to link an actual mobile handset to your PC, and rx/tx
SMS through those.
HTH,
--
alan kennedy
-----------------------------------------------------
check http headers here: http://xhaus.com/headers
email alan: http://xhaus.com/mailto/alan
Jarek Zgoda wrote: Peter Hansen <pe***@engcorp.com> pisze:
Also, be aware, that 1rstWap.com (and many other free SMS web gateways) require prior user registration, that can not be handled by program (they show user some picture with text that need to be entered correctly).
Kind of defeats the value of suggesting that he use this as a way of sending using Python, doesn't it?
Yes - if this should be service/daemon app and you don't have a user that can perform prior registration.
No - if this will be usual GUI app with user equipped with monitor, keyboard and mouse, sitting in front of it.
You're right.... Sorry, I misread your first post as suggesting
that each message, not just the registration, required the human
confirmation. (Yes, you were quite clear in what you wrote....
I must have been skimming or something. :-( )
-Peter
Guenther Starnberger <gs*@sysfrog.org> wrote in message news:<10***************@newsmaster-03.atnet.at>... Fazer wrote:
hello,
Can anyone point me to a way on how to send a SMS message using Python?
an alternative to the already suggested SMS-webgateway would be to use the ICQ-SMS-gateway ('worldwide' SMSs, no advertisements).
either use libicq2000[1] directly (but afaik there are no python bindings yet), or setup a local jabber[2] server with an aim-transport[3] to which you can connect with python by using jabberpy[4].
cu /gst
[1] http://libicq2000.sf.net/ [2] http://www.jabber.org/about/overview.html [3] http://aim-transport.jabberstudio.org/ [4] http://jabberpy.sourceforge.net/
Wow, thanks for the reply! It was really helpful. Exactly what I was looking for. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: coder_1024 |
last post by:
I'm trying to send a packet of binary data to a UDP server. If I send
a text string, it works fine. If I attempt to send binary data, it
sends a UDP packet with 0 bytes of data (just the...
|
by: praba kar |
last post by:
Dear All,
I have doubt regarding mail sending smtplib
module. The below code is I used to send a mail.
##########################################
import email.Message
import email.Utils...
|
by: Stuart Mueller |
last post by:
I have an exchange server, that I sometimes use to perform mail shots to
clients on our database, these can be upwards of 1000 at a time.
As we don't want different clients to see who we are...
|
by: Robert A. van Ginkel |
last post by:
Hello Fellow Developer,
I use the System.Net.Sockets to send/receive data (no
tcpclient/tcplistener), I made a receivethread in my wrapper, the
receivethread loops/sleeps while waiting for data...
|
by: yaron |
last post by:
Hi,
I have a problem when sending data over TCP socket from c# client to java
server.
the connection established ok, but i can't send data from c# client to java
server.
it's work ok with...
|
by: Lau |
last post by:
I need to send 1000 emails from an asp.net website.
Normally I would use System.Web.Mail.MailMessage() to send thru an SMTP
server.
But the large amount of emails results in a timeout. My server...
|
by: Ant |
last post by:
Hi, I'm using the MailMessage & smtpMail classes in System.Web.Mail to send
mail, however it's not sending any emails.
I'm using it on a Windows 2003 server.
The simplest way to use this is...
|
by: remya1000 |
last post by:
by using FTP i can send files to server using vb.net.
if the file is big, then it will take some time to complete the sending process to server.or if we were sending 3-4 files to the server one by...
|
by: JoeP |
last post by:
Hi All,
How can I find the reason for such an error: Failure sending mail.
Some Code...
oMailMessage.IsBodyHtml = False
oMailMessage.Body = cEmailBody
Dim oSMTP As New SmtpClient...
|
by: =?Utf-8?B?R3V5IENvaGVu?= |
last post by:
Hi all
I use:
Dim message As New MailMessage(txtTo.Text, txtFrom.Text, txtSubject.Text,
txtBody.Text)
Dim emailClient As New SmtpClient(txtSMTPServer.Text)
emailClient.Send(message)
And its...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: BLUEPANDA |
last post by:
At BluePanda Dev, we're passionate about building high-quality software and sharing our knowledge with the community. That's why we've created a SaaS starter kit that's not only easy to use but also...
|
by: ezappsrUS |
last post by:
Hi,
I wonder if someone knows where I am going wrong below. I have a continuous form and two labels where only one would be visible depending on the checkbox being checked or not. Below is the...
| |