Re: Deploying my Django project

2020-09-17 Thread Maverick Moore
Python Anywhere can get a simple web app online quick and easy. AWS / Heroku might be more appropriate for complex applications with separate staging environments. It is hard to make a specific recommendation without knowing more about your project. On Thursday, September 17, 2020 at 9:47:29

Our new startup site build on Django and GAE is now live!

2011-06-02 Thread maverick
We build a pretty cool website LOCQL (www.LOCQL.com) purely on Django and run on GAE has just went live! I would say development with Django is purely enjoyable experience, however the Google Apps Engine does bring us some headache esp. we are a location based service, the geo-location related sea

Custom tag displayed in different tabs

2011-02-22 Thread Maverick
please give me some pointers to solve this? Thanks in Advance, Regards - Maverick. -- 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, sen

Re: How to invoke a request to an URL inside a web app without making a real request?

2008-10-01 Thread maverick
riendly. Since I am pretty new to django and python, pls. let me know if there is already something similar or better. and I would also like to hear what you think on this idea. I will contribute this python sitemesh alike as a open source project. On Oct 1, 4:08 pm, Carl Meyer <[EMAIL PROTECT

Re: How to invoke a request to an URL inside a web app without making a real request?

2008-10-01 Thread maverick
gt; Erik > > On 01.10.2008, at 14:13, bruno desthuilliers wrote: > > > > > On 1 oct, 09:52, maverick <[EMAIL PROTECTED]> wrote: > >> @keith, your suggestion seemed to be make a "real" request? I don't > >> want to make real request since i

Re: How to invoke a request to an URL inside a web app without making a real request?

2008-10-01 Thread maverick
ngo code to see how to do so. On Oct 1, 1:58 am, Jeff Anderson <[EMAIL PROTECTED]> wrote: > maverick wrote: > > Hi, I have a django web application, I want to invoke a request of one > > URL inside this application, e.g.  "/getdata/", and capture the output > > o

How to invoke a request to an URL inside a web app without making a real request?

2008-09-30 Thread maverick
Hi, I have a django web application, I want to invoke a request of one URL inside this application, e.g. "/getdata/", and capture the output of such URL and do some further processing. Of course I can do that by make a real request, however I feel this may not be the best solution, is there any