Re: Send and Receive SMS from a django app

2010-01-22 Thread Chris Withers

Alessandro Ronchi wrote:


Because of the number of the SMS I must write. I need a web app that 
makes intense use of SMS without any external dependences (like Unicef 
app).


If you want to send a *lot* of sms'es then you definitely want to be 
using a gatway sending service rather than trying to rack up a load of 
cell phones and writing to them...


Chris

--
Simplistix - Content Management, Batch Processing & Python Consulting
- http://www.simplistix.co.uk

--
You received this message because you are subscribed to the Google Groups "Django 
users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.



Re: Send and Receive SMS from a django app

2010-01-18 Thread Alessandro Ronchi
On Sun, Jan 17, 2010 at 7:18 PM, Chris Withers wrote:

> Alessandro Ronchi wrote:
>
>> I cannot use an SMS gateway for my app (I must use a SIM and an hardware
>> modem).
>>
>
> Why? This is not a sane requirement for a web app...
>
> Chris


Because of the number of the SMS I must write. I need a web app that makes
intense use of SMS without any external dependences (like Unicef app).



-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby & Giochi, l'e-commerce del divertimento
-- 

You received this message because you are subscribed to the Google Groups "Django users" group.

To post to this group, send email to django-us...@googlegroups.com.

To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/django-users?hl=en.



Re: Send and Receive SMS from a django app

2010-01-17 Thread Chris Withers

Alessandro Ronchi wrote:
I cannot use an SMS gateway for my app (I must use a SIM and an hardware 
modem).


Why? This is not a sane requirement for a web app...

Chris

--
Simplistix - Content Management, Batch Processing & Python Consulting
   - http://www.simplistix.co.uk
-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.




Re: Send and Receive SMS from a django app

2010-01-14 Thread Alessandro Ronchi
On Thu, Jan 14, 2010 at 12:26 PM, Daniel Hilton wrote:

>
> You'll need a GSM modem though.
>


Perfect!

Are all RSR232 GSM modems compatible with pygsm, or everyone needs a
proprietary or different library to be used?

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby & Giochi, l'e-commerce del divertimento
-- 

You received this message because you are subscribed to the Google Groups "Django users" group.

To post to this group, send email to django-us...@googlegroups.com.

To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/django-users?hl=en.



Re: Send and Receive SMS from a django app

2010-01-14 Thread Daniel Hilton
2010/1/14 Alessandro Ronchi :
>
>
> On Wed, Jan 13, 2010 at 2:29 PM, tback  wrote:
>>
>> Hi Alessandro,
>>
>> yes, it's possible to send sms messages (I use this myself every day)
>> and to receive sms messages (that's an assumption).
>> The easiest way is through a sms gateway.
>> http://www.celltrust.com/ is a provider that advertisises two way
>
> I cannot use an SMS gateway for my app (I must use a SIM and an hardware
> modem).
>
> Does RapidSMS include SMS receiving?
>
> Thanks in advance.

Yep take a look at this:

http://www.rapidsms.org/code/architecture/

You'll need a GSM modem though.

Cheers,
Dan

>
>
>
> --
> Alessandro Ronchi
>
> http://www.soasi.com
> SOASI - Sviluppo Software e Sistemi Open Source
>
> http://hobbygiochi.com
> Hobby & Giochi, l'e-commerce del divertimento
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>



-- 
Dan Hilton

www.twitter.com/danhilton
www.DanHilton.co.uk

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.




Re: Send and Receive SMS from a django app

2010-01-14 Thread Alessandro Ronchi
On Wed, Jan 13, 2010 at 2:29 PM, tback  wrote:

> Hi Alessandro,
>
> yes, it's possible to send sms messages (I use this myself every day)
> and to receive sms messages (that's an assumption).
> The easiest way is through a sms gateway.
> http://www.celltrust.com/ is a provider that advertisises two way
>

I cannot use an SMS gateway for my app (I must use a SIM and an hardware
modem).

Does RapidSMS include SMS receiving?

Thanks in advance.



-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby & Giochi, l'e-commerce del divertimento
-- 

You received this message because you are subscribed to the Google Groups "Django users" group.

To post to this group, send email to django-us...@googlegroups.com.

To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/django-users?hl=en.



Re: Send and Receive SMS from a django app

2010-01-13 Thread tback
Hi Alessandro,

yes, it's possible to send sms messages (I use this myself every day)
and to receive sms messages (that's an assumption).
The easiest way is through a sms gateway.
http://www.celltrust.com/ is a provider that advertisises two way
messaging.

cheers, Till

On Jan 13, 1:53 pm, Alessandro Ronchi 
wrote:
> Is it possible with linux and django to send and receive data from SMS from
> a django APP? Did anyone managed to do that?
>
> --
> Alessandro Ronchi
>
> http://www.soasi.com
> SOASI - Sviluppo Software e Sistemi Open Source
>
> http://hobbygiochi.com
> Hobby & Giochi, l'e-commerce del divertimento
-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.




Re: Send and Receive SMS from a django app

2010-01-13 Thread Tran Cao Thai
Wow, there is an answer after 2 mins. This community  really rocks :D

On Wed, Jan 13, 2010 at 8:55 PM, Daniel Hilton  wrote:
> 
>     http://www.rapidsms.org/
> 
>
> 2010/1/13 Alessandro Ronchi :
>> Is it possible with linux and django to send and receive data from SMS from
>> a django APP? Did anyone managed to do that?
>>
>> --
>> Alessandro Ronchi
>>
>> http://www.soasi.com
>> SOASI - Sviluppo Software e Sistemi Open Source
>>
>> http://hobbygiochi.com
>> Hobby & Giochi, l'e-commerce del divertimento
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To post to this group, send email to django-us...@googlegroups.com.
>> To unsubscribe from this group, send email to
>> django-users+unsubscr...@googlegroups.com.
>> For more options, visit this group at
>> http://groups.google.com/group/django-users?hl=en.
>>
>>
>
>
>
> --
> Dan Hilton
> 
> www.twitter.com/danhilton
> www.DanHilton.co.uk
> 
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to 
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/django-users?hl=en.
>
>
>
>
-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.




Re: Send and Receive SMS from a django app

2010-01-13 Thread jenlu
RapidSMS is - if I can read it correctly - basically a GSM modem hw
and
some django stuff around it. So you install it on your hw and then
send your own SMS. Still, sort of 'old-school' ;-)

We have done it by interfacing our django app towards an SMS GW
provider
(actually both SMS, MMS and sending/recieving). There are several out
there and the trick will be to find someone with a decent priceplan
that
fits your traffic volume and that can send out SMS in the region you
want to send them in. This later part is especially important if you
want
the reciever to reply back or issue some type of commands - then you
want
them to send to a local e.164 number and not some out-of-country
(both expensive and they will be reluctant to do it).

For the nordic region (Sweden, Norway...) you can contact www.imez.se.
They actually have a decent priceplan all over europe if you only want
to send out SMS. To recieve you will get a local swedish number to.

mvh / Jens

On 13 Jan, 13:55, Daniel Hilton  wrote:
> 
>      http://www.rapidsms.org/
> 
-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.




Re: Send and Receive SMS from a django app

2010-01-13 Thread jenlu
RapidSMS is - if I can read it correctly - basically a GSM modem hw
and
some django stuff around it. So you install it on your hw and then
send your own SMS. Still, sort of 'old-school' ;-)

We have done it by interfacing our django app towards an SMS GW
provider
(actually both SMS, MMS and sending/recieving). There are several out
there and the trick will be to find someone with a decent priceplan
that
fits your traffic volume and that can send out SMS in the region you
want to send them in. This later part is especially important if you
want
the reciever to reply back or issue some type of commands - then you
want
them to send to a local e.164 number and not some out-of-country
(both expensive and they will be reluctant to do it).

For the nordic region (Sweden, Norway...) you can contact www.imez.se.
They actually have a decent priceplan all over europe if you only want
to send out SMS. To recieve you will get a local swedish number to.

mvh / Jens

On 13 Jan, 13:55, Daniel Hilton  wrote:
> 
>      http://www.rapidsms.org/
> 
-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.




Re: Send and Receive SMS from a django app

2010-01-13 Thread Daniel Hilton

 http://www.rapidsms.org/


2010/1/13 Alessandro Ronchi :
> Is it possible with linux and django to send and receive data from SMS from
> a django APP? Did anyone managed to do that?
>
> --
> Alessandro Ronchi
>
> http://www.soasi.com
> SOASI - Sviluppo Software e Sistemi Open Source
>
> http://hobbygiochi.com
> Hobby & Giochi, l'e-commerce del divertimento
>
> --
> You received this message because you are subscribed to the Google Groups
> "Django users" group.
> To post to this group, send email to django-us...@googlegroups.com.
> To unsubscribe from this group, send email to
> django-users+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/django-users?hl=en.
>
>



-- 
Dan Hilton

www.twitter.com/danhilton
www.DanHilton.co.uk

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.




Send and Receive SMS from a django app

2010-01-13 Thread Alessandro Ronchi
Is it possible with linux and django to send and receive data from SMS from
a django APP? Did anyone managed to do that?

-- 
Alessandro Ronchi

http://www.soasi.com
SOASI - Sviluppo Software e Sistemi Open Source

http://hobbygiochi.com
Hobby & Giochi, l'e-commerce del divertimento
-- 

You received this message because you are subscribed to the Google Groups "Django users" group.

To post to this group, send email to django-us...@googlegroups.com.

To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/django-users?hl=en.