Hello,

I have a client that needs to constantly send data to Django-based
backend. The client code follows the pattern:

...
s = socket.socket( socket.AF_INET, socket.SOCK_STREAM )
s.connect( ( '10.20.30.40',  8080 ) )
while True :
    data = s.recv( 2048 )
    print data

    s.send( r'something' )
...

Could you advice on possible approaches to come up with a Django
implementation of a backend that can work with such client, please?

Thank you,
Chris

--

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.


Reply via email to