So far there&#39;s no free available SMS Gateway protocol implementation in python if you search through the net (there is one called pySMPP but isn&#39;t maintained anymore. You can download it to have an idea).<br><br>I strongly recommend twisted-python in writing an SMS gateway implementation. It&#39;s a very powerful tool once you tame it as long you have in-depth understanding of what protocol you&#39;re going to implement (kudos to twisted-python developers). :)
<br><br>Just some advice to help you get going:<br>CIMD2 (Nokia)- can be implemented by twisted.protocols.basic.LineReceiver<br>CSP (Terabyte)- is just an exchange of http posts so it can be implemented by twisted.web<br>
SMPP (mBlox)- is packet based twisted.internet.protocol.Protocol + struct will do the trick.<br><br>Some telcos might provide a different protocol though but these three are the popular ones.<br><br><br><div class="gmail_quote">
On Dec 18, 2007 6:01 PM, Alec Matusis &lt;<a href="mailto:matusis@yahoo.com">matusis@yahoo.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
You can just send emails to most providers<br><a href="http://en.wikipedia.org/wiki/SMS_gateways" target="_blank">http://en.wikipedia.org/wiki/SMS_gateways</a><br>(section &quot;Email to SMS&quot;)<br><br>I am not sure you even need Twisted for that, you could just have a for loop
<br>sending emails I suppose...<br><br>From: <a href="mailto:twisted-python-bounces@twistedmatrix.com">twisted-python-bounces@twistedmatrix.com</a><br>[mailto:<a href="mailto:twisted-python-bounces@twistedmatrix.com">twisted-python-bounces@twistedmatrix.com
</a>] On Behalf Of Alvin Delagon<br>Sent: Tuesday, December 18, 2007 1:22 AM<br>To: Twisted general discussion<br>Subject: Re: [Twisted-Python] SMS sending with Python<br><div><div></div><div class="Wj3C7c"><br>What is your SMS provider? What protocols are they using? Is it SMPP, CIMD2,
<br>CSP?<br><br><br>On Dec 18, 2007 4:51 PM, Daniel Marfil &lt;<a href="mailto:dmarfil@citic.es">dmarfil@citic.es</a>&gt; wrote:<br>Hi, my name is Daniel from Spain, and this is my first post here ;-)<br>I&#39;ve been looking for something in twisted that allows me to send SMS
<br>messages through a server, but got no luck until the moment.<br>Could anyone give me a clue to begin?<br><br>Thank you in advance,<br><br>Daniel<br><br><br>_______________________________________________<br>Twisted-Python mailing list
<br><a href="mailto:Twisted-Python@twistedmatrix.com">Twisted-Python@twistedmatrix.com</a><br><a href="http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python" target="_blank">http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
</a><br><br><br><br>_______________________________________________<br>Twisted-Python mailing list<br><a href="mailto:Twisted-Python@twistedmatrix.com">Twisted-Python@twistedmatrix.com</a><br><a href="http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python" target="_blank">
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python</a><br></div></div></blockquote></div><br>