Hello, > I'm trying to make application in wich you will search some product > and for response my application will list you products from other > pages(for example amazon or some e-shop).. I want to do it with web > service and I have no idea where to start..does someone know how to > do it? Or give me some link where I can see how to work with web > services in django?! What do you think that will be best choice for > this problem?
You're talking about being a client of web services rather than a server so it's often as simple as just querying the relevant web service from your views.py file. Using Amazon as an example: http://code.djangoproject.com/wiki/WebServices http://pyaws.sourceforge.net/ The quick start in that second link shows how simple it could be. Just use that example in views.py and pass the info to your template. Then since you're going to be making queries to a service that, depending on your network, may or may be available or may be slow, take a look at caching that information. Nick --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@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 -~----------~----~----~----~------~----~------~--~---