[google-appengine] Custom Domain not working anymore

2016-06-05 Thread Renzo Nuccitelli
The issue started june 2. https://pythonprobr.appspot.com/ but https://python.pro.br don't. It seems you guys ported custom domains to cloud console but have made previous configurations from Google Apps broken. Any information about this? Thanks, Renzo -- Renzo Nuccitelli www.python.pro.b

[google-appengine] Re: Can appengine be used for a Saas where customers have their own subdomain or point their own custom domain to my appengine app?

2015-12-14 Thread Renzo Nuccitelli
For data base and other related services like memcache and tasks you are going to use the namespaces API: https://cloud.google.com/appengine/docs/python/multitenancy/ On Monday, May 12, 2014 at 7:13:44 PM UTC-3, Gitted wrote: > > > If my application is hosted on appengine, will it allow me to cr

[google-appengine] Re: When will jinja2 "2.8" become available?

2015-10-07 Thread Renzo Nuccitelli
symlink, App Engine SDK will upload all the libs which you install in your venv. Finishing the workaround you need add this libraries on path: https://github.com/renzon/tekton/blob/master/backend/appengine/convention.py#L6. I hope it can help you guys. Cheers, Renzo Nuccitelli On Friday

[google-appengine] Validating model data in Python

2015-06-26 Thread Renzo Nuccitelli
Hi! I have just finished the documentation of a project that I wrote to validate ndb Models in similar way to DjangoForms: https://github.com/renzon/gaeforms It is only missing the internationalisation docs which I will write soon. I hope it can help someone ;) Regards, -- You received this m

[google-appengine] Re: Slow images.GetUrlBase() fn call in images.get_serving_url

2015-03-31 Thread Renzo Nuccitelli
if only need resizing or cropping, once you can do it appending the right string on url's end: https://cloud.google.com/appengine/docs/python/images/ Regards, Renzo Nuccitelli On Tuesday, March 31, 2015 at 4:02:52 AM UTC-3, Aakash Bapna wrote: > > Its taking more than a 1000ms almos

[google-appengine] Re: App Engine - Aula Gratuita Online hoje às 22 horas

2015-01-12 Thread Renzo Nuccitelli
Segue a aula: http://youtu.be/6a5sgNg2j5c . Peço só paciência, não foi planejada *Abs,* On Mon Jan 12 2015 at 6:30:14 PM Renzo Nuccitelli wrote: > Olá pessoal, > > Devido a dúvida de muitas pessoas, hoje, dia 12 de janeiro às 22 horas > (Brasília), darei um micro aula gratuita. P

[google-appengine] App Engine - Aula Gratuita Online hoje às 22 horas

2015-01-12 Thread Renzo Nuccitelli
Olá pessoal, Devido a dúvida de muitas pessoas, hoje, dia 12 de janeiro às 22 horas (Brasília), darei um micro aula gratuita. Para assistir, basta acessar o link: http://meet28169171.adobeconnect.com/appengine-demo/ Requisitos: Adobe Flash e internet banda larga de no mínimo 1M. Na aula vou ins

[google-appengine] Terceira vídeo aula sobre Web Services

2015-01-12 Thread Renzo Nuccitelli
A se sempre fosse fácil assim fazer um programa assíncrono: Realização de chamadas HTTP em paralelo utilizando a arquitetura de Comandos. https://www.youtube.com/watch?v=CteT51LgOAU&index=85&list=PLA05yVJtRWYRGIeBxag8uT-3ftcMVT5oF Abs, -- You received this message because you are subscribed t

[google-appengine] Re: Search API: How come "Ondřej" matches "ondrej"? I need to mimic that in browser.

2015-01-05 Thread Renzo Nuccitelli
In Python version I use the ComputedProperty to normalize the string from a property. After that it is only a question of normalize the user input a make the search on the computed property. You can search for prefixes with a code like this: https://github.com/renzon/gaepermission/blob/master/g

[google-appengine] Re: Testing for Python

2014-12-01 Thread Renzo Nuccitelli
that case, but could be anything) when doing my tests. This way they become independent of network or the service itself, making testing quicker and easier. Just take a look on Mock library (https://pypi.python.org/pypi/mock) to see how to do this. I hope it helps you. Regards, Renzo

[google-appengine] Re: Question about Datastore quotas

2014-11-30 Thread Renzo Nuccitelli
Yes, ndb cache only Key operations. See on "Operations on Multiple Keys or Entities": https://cloud.google.com/appengine/docs/python/ndb/entities Regards, Renzo Nuccitelli On Tuesday, November 25, 2014 3:09:51 AM UTC-2, John Louis Del Rosario wrote: > > Thanks. That clarifies

[google-appengine] Re: How to upload Adobe .air file in Google App Engine?

2014-11-13 Thread Renzo Nuccitelli
I have done this. You can deploy it as a static file and serve like any other (js, css and so on). On Sunday, November 2, 2014 2:05:26 AM UTC-2, d...@sshenterprise.com wrote: > > Can google app engine be used to store or host an adobe air file (.air)? > The .air file will be used as a software

[google-appengine] Re: Site in development on appspot domain - restrict access to developers

2014-08-27 Thread Renzo Nuccitelli
Hi, One possibility is setting up your configuration file so only admins can access your application. See: https://developers.google.com/appengine/docs/python/config/appconfig#Python_app_yaml_Secure_URLs Regards, Renzo Nuccitelli On Wednesday, August 27, 2014 12:13:44 PM UTC-3, Matt Bushell

[google-appengine] Re: Problem in google app engine using python

2014-05-09 Thread Renzo Nuccitelli
'' and without encoding problems. If you are using Jinja2 template system, you can pass the values as unicode and it will handle just fine. Good Lucky, Renzo Nuccitelli On Sunday, April 27, 2014 4:11:05 PM UTC-3, Ebtesam Ba Shammakh wrote: > > Hi... > > I read

[google-appengine] Re: Using Namespaces

2014-04-22 Thread Renzo Nuccitelli
On Tuesday, April 22, 2014 10:06:24 AM UTC-3, SMF wrote: > > Hi there > > I have a few basic questions > > 1. If I have 1000+ Namespaces, how will they get displayed in the App > Engine Admin Console (Datastore Viewer), > Right now I have few and they are displayed in a dropdown box. > I am c

[google-appengine] Project for adding properties to ndb

2014-03-26 Thread Renzo Nuccitelli
I have searched for a project but didn't find anything. Does anyone know some project for it? I have created one from scratch, but I would prefer contribute with a existing one: https://github.com/renzon/ndbext Thanks, -- Renzo Nuccitelli www.python.pro.br -- You received

Re: [google-appengine] Re: Python27 + new dev_appservery.py + debugging

2014-03-05 Thread Renzo Nuccitelli
ration I have no performance issues. But I know Pycharm itself is very heavy, so depending on you hardware, it can be very slow. I hope it helps you. -- Renzo Nuccitelli www.python.pro.br -- You received this message because you are subscribed to the Google Groups "Google App Engine&q

[google-appengine] Re: Python27 + new dev_appservery.py + debugging

2014-03-05 Thread Renzo Nuccitelli
+1 for Pycharme. I dont know why it slow down de developmente, for me it is great: Debuging, testing and even git integration is great. Most of time i don't need to use another tool for development. On Saturday, March 1, 2014 12:59:09 PM UTC-3, Cezary Wagner wrote: > > What is the best tools to

[google-appengine] Book about App Engine em pt_BR

2014-01-31 Thread Renzo Nuccitelli
Hi Folks, I just started to write a hands on book about App Engine in Portuguese (pt_BR). If anyone is interested, here is the link: https://leanpub.com/appengine Regards, -- Renzo Nuccitelli www.python.pro.br -- You received this message because you are subscribed to the Google

[google-appengine] Re: App engine examples and documentation suck -Don't waste your time

2013-12-26 Thread Renzo Nuccitelli
I've found the documentation pretty good, excellent in most cases, but I > haven't dug into a huge amount. I'm thinking you've had a frustrating time, > I can only guess its shoe-horning something that doesn't fit the GAE model > into GAE (had a few similar f

Re: [google-appengine] Indexes Building never ending

2013-10-07 Thread Renzo Nuccitelli
Ryan, After 1 hour the building was finished. The strange thing is that the app was new. so there aren't saved entities on db. Besides that, thank you anyway. Renzo Nuccitelli -- Renzo Nuccitelli 2013/10/4 Ryan Huebsch > All of the indexes for your app are currently in servi

[google-appengine] Indexes Building never ending

2013-10-03 Thread Renzo Nuccitelli
app: graphapiclone Could some one check? Thanks, -- Renzo Nuccitelli -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengin

[google-appengine] Wrong charge for email API

2013-09-17 Thread Renzo Nuccitelli
id api call. I think we should be charged for sent emails, not invalid calls. Can you guys check this? Thanks, -- Renzo Nuccitelli -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and sto

Re: [google-appengine] Best Practices for Continuous Deployment on AppEngine

2013-08-12 Thread Renzo Nuccitelli
Could you show de documentation about setting de default version from cmd line? I've searched for it but could not find. Thanks, Renzo On Sunday, August 11, 2013 9:39:10 AM UTC-3, gops wrote: > > You can set default from command line. > On Aug 10, 2013 10:38 PM, "Jeff Schnitzer" > > > wrote

[google-appengine] Re: Modeling a graph database for use with App Engine API

2013-06-25 Thread Renzo Nuccitelli
Take a look at GaeGraph: https://github.com/renzon/gaegraph. You can install it using "pip install gaegraph". A build one proof of concept with it: https://github.com/renzon/zen-gaegraph-base. You can install it with virtualenv, once there is a requirements.txt file. Good Lucky, Renzo.

[google-appengine] Re: Mommy-gae: Automate the creation of models when testing in Python

2013-06-21 Thread Renzo Nuccitelli
2013 2:33:38 PM UTC-7, Renzo Nuccitelli wrote: >> >> I wrote an open source project to automate the creation of models when >> testing: >> >>https://github.com/renzon/mommy-gae >> >> I hope it helps more people then only my team. >> >> --

[google-appengine] Mommy-gae: Automate the creation of models when testing in Python

2013-06-11 Thread Renzo Nuccitelli
I wrote an open source project to automate the creation of models when testing: https://github.com/renzon/mommy-gae I hope it helps more people then only my team. -- Renzo Nuccitelli www.qmagico.com.br -- You received this message because you are subscribed to the Google Groups

[google-appengine] Deploy issues

2013-06-07 Thread Renzo Nuccitelli
fering=True) File "/usr/lib/python2.7/httplib.py", line 1030, in getresponse response.begin() File "/usr/lib/python2.7/httplib.py", line 407, in begin version, status, reason = self._read_status() File "/usr/lib/python2.7/httplib.py", line 371, in _rea

Re: [google-appengine] UnicodeEncodeError but still saves to the Datastore

2013-06-04 Thread Renzo Nuccitelli
What i do in my application is setting unicode literals in my scripts. All of them start with: from __future__ import unicode_literals Once GAE and Jinja, my template system, work just fine with this configuration, i have no hadaches with strings. Good Lucky, Renzo On Monday, June 3, 2013 3

[google-appengine] Re: Accumulated lots of data - deleting is is too expensive

2013-05-24 Thread Renzo Nuccitelli
a. Is this an option? Goog Lucky, Renzo Nuccitelli On Thursday, May 23, 2013 8:56:43 PM UTC-3, John Wheeler wrote: > > Been having trouble posting. I posted this but it appears it was deleted - > I might have inadvertently deleted it. > > I created an application two years ago

[google-appengine] Re: Amazon S3 Server on GAE (Java)

2013-05-15 Thread Renzo Nuccitelli
Take a look at www.*appscale*.com. On Tuesday, May 14, 2013 5:51:52 AM UTC-3, xybrek wrote: > > Hello, I am currently working on a project that aims to provide > S3-compatible object storage API on top of th Google App Engine Platform. > The project is a fork of littles3

[google-appengine] Re: ssl client side certificate support for urlfetch - is this ever going to be resolved?

2013-05-01 Thread Renzo Nuccitelli
 I have never tried, but you can:  http://www.appscale.com/  An open implementation of GAE for other cloud platforms On Apr 26, 8:34 pm, Iain Wade wrote: > sockets and SSL (including client side certificate support) were introduced > in the last release > (1.7.7):https://developers.google.com/ap

[google-appengine] Re: What is the most common IDE for GAE/Python?

2013-05-01 Thread Renzo Nuccitelli
+1 for Pycharm. I have used Pydev, but I change because some features: 1) Refactoring is easier 2) better autcompletion, including jinja templates, JS and CSS 3) Building of less file out of the box 4) Git integration far better than Eclipse's Egit Kaan: Anyone has their preferences and al

[google-appengine] Re: 1.7.8 Pre-release SDKs Available

2013-04-30 Thread Renzo Nuccitelli
Are you using linux? If so, take care of changing the place where datastore file is stored. By default it saves on tmp, so when you turn off the computer the files you save are gonne. On Tuesday, April 30, 2013 4:07:21 PM UTC-3, Kaan Soral wrote: > > Is this all? > I was hoping for some Search

[google-appengine] Re: Important for Python developers - Updates to the Development Server in 1.7.6

2013-03-22 Thread Renzo Nuccitelli
+1 for debuging. I will keep the 1.7.5 version until Pycharm implements de debuger. Renzo On Tuesday, March 19, 2013 9:57:02 PM UTC-3, Andrew Jessup wrote: > > In the 1.7.6 release of App Engine we’ve included a major upgrade to the > Development Server in the Python SDK, designed to make dev

[google-appengine] Re: Breakpoints broken in new dev_appserver (1.7.6)?

2013-03-22 Thread Renzo Nuccitelli
This is related with the local server improvements. So keep the 1.7.5 with you want to debug your program until they fix it. Renzo On Wednesday, March 20, 2013 12:21:47 AM UTC-3, Dylan Sale wrote: > > Hi, > > I have updated to 1.7.6 and noticed the new dev_appserver. Nice! I did > notice that

Re: [google-appengine] Re: Important for Python developers - Updates to the Development Server in 1.7.6

2013-03-21 Thread Renzo Nuccitelli
Disagree, Debugging and hot patch is the killer feature. The problens with diferent behavior of local and production was easily with a test or homolog enviroment. On the other hand, using just log to fix and find bugs will increase too much the development time. Until it is not solved, I will

[google-appengine] Re: 1.7.6 Speedy Deploy

2013-03-21 Thread Renzo Nuccitelli
Congrats for the work. I am using 1.7.5 too and noted this improvement. Thanks, Renzo On Thursday, March 21, 2013 5:04:26 AM UTC-3, Shay Erlichmen wrote: > > unsung heroes! > Feel free to mention this sort of updates in the release notes I'm sure no > one is going to complain. > > On Wednesd

[google-appengine] Re: Best strategy

2013-03-13 Thread Renzo Nuccitelli
I am part of team anti "Java/GAE". There are a lot of reason because I prefer Python, but the main on is the cold start problem already mentioned. The fact that the cold start time more o less proportional to the number of class you have in you project make Java not first citizen on GAE. Just t

[google-appengine] Re: Problems with deploying

2013-02-04 Thread Renzo Nuccitelli
Same here. App id: qmaghomolog, qmagtest, qmagicobr2 Sábado, 2 de Fevereiro de 2013 9:27:33 UTC-2, Jesús Espejo escreveu: > > Hello, > > Is anyone experimenting issues uploading applications to GAE? I cannot do > it, it remains in the exponential back-off algorithm in 60 seconds > "forever"..

[google-appengine] Re: Indexes Stucked

2013-01-28 Thread Renzo Nuccitelli
I forgot to tell: there is only one UserRoles on db, so 30 minutes to build a index is too much. Segunda-feira, 28 de Janeiro de 2013 18:35:42 UTC-2, Renzo Nuccitelli escreveu: > > Application: qmaghomolog > Index: UserRoles > > It stucked on Building Indexes. I hav

[google-appengine] Re: an html5 + bootstrap template app for a python appengine app

2013-01-24 Thread Renzo Nuccitelli
Very nice idea. All the time a copy an old project and just delete the file to start a new. This is what should do. Congratulation. Renzo Quarta-feira, 23 de Janeiro de 2013 4:05:34 UTC-2, Gilbert Corrales escreveu: > > Hi guys, > > I've been working on a couple of websites lately and they

[google-appengine] Re: Working with images : need help regarding tilling of images

2013-01-24 Thread Renzo Nuccitelli
,indexed=False) picBig=ndb.ComputedProperty(_resize(_SIZE_BIG),indexed=False) I Wrote this code when there were not asyncronous API for images, so it can be improved using this new API. I hope it helps you, Renzo Nuccitelli Quarta-feira, 23 de Janeiro de 2013 12:34:54 UTC-2, Bhavya Srav

[google-appengine] Re: Our application is very slow and appengine.google.com is unreachable

2013-01-15 Thread Renzo Nuccitelli
Same thing here. Em terça-feira, 15 de janeiro de 2013 13h52min38s UTC-2, Jason Collins escreveu: > > Us too - across many of our apps, and the console itself. > j > > On Tuesday, 15 January 2013 09:50:25 UTC-6, Jacob G wrote: >> >> Me too, plus Pingdom is reporting GAE down. >> >> Issue created

[google-appengine] Re: db versus ndb

2012-12-19 Thread Renzo Nuccitelli
GAE team should put NDB docs on a menu at same lavel of Storage. Putting ndb inside db doc and as the last link make devs find it only after using db. So if ndb is the prefered API, the documention make this transition harder. Quarta-feira, 19 de Dezembro de 2012 1:34:18 UTC-2, Emmanuel Mayssa

[google-appengine] Re: Impossible to change budget

2012-09-05 Thread Renzo Nuccitelli
Google Wallet directly and make it charge manually. Sorry for botter and thanks for attention, Renzo Nuccitelli Terça-feira, 4 de Setembro de 2012 15:27:13 UTC-3, Renzo Nuccitelli escreveu: > > My app with id qmagicohomog is almost reached quote. I am trying to > change it, but admi

[google-appengine] Impossible to change budget

2012-09-04 Thread Renzo Nuccitelli
more then a week from last budge change, I think my app is stucked in some process. Thanks for any help, -- Renzo Nuccitelli www.qmagico.com.br -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, sen

Re: [google-appengine] Re: Java instance startup time out of control

2012-06-20 Thread Renzo Nuccitelli
gt; > > > Jeff, > > > > FYI, I've just started an internal discussion about this issue, and > > we're taking this issue very seriously. > > I also promise that I'll continue pushing the core engineering team > > hard with this issue

[google-appengine] Re: Java instance startup time out of control

2012-06-19 Thread Renzo Nuccitelli
I started on JAVA GAE about 3 years ago. At that time I was trying to use Spring and the startup were very expensive. A made some experiments and in one of them I removed all frameworks and the statup decrease 90%. Once Java is poor productive without frameworks, I give Python a try. Once it

[google-appengine] Schedule Datastore backups.

2012-04-25 Thread Renzo Nuccitelli
I read that on 1.6.5 release notes this feature is included, but have not found any documentation about it. I´ve searched on Cron and App Cfg docs. Could anyone point out the docs? Thanks, Renzo -- You received this message because you are subscribed to the Google Groups "Google App Engine

[google-appengine] Re: In your opinion what are the most complex web applications built on top of google app engine ?

2012-03-28 Thread Renzo Nuccitelli
My apps are not so complex, but I have a site to Photo Laboratories receive orders through internet running since september 2010 (www.revelacaovirtual.com.br). It has transmited more than 300 thousing pics and there are paying clients too. Domingo, 25 de Março de 2012 12h04min39s UTC-3, gops e

[google-appengine] Re: Handling GAE BlobStore Exception via webapp2 handler

2012-01-13 Thread Renzo Nuccitelli
One possible way to do that is uploading your image through AJAX and handling the error on client, once you your BlobstoreHandler is called just when uploading is sucessfully. Renzo Nuccitelli On 12 jan, 17:24, mozart27 wrote: > I have been banging my head around on this issue for a bit

[google-appengine] Re: BlazeDS compatibility with GAE

2012-01-11 Thread Renzo Nuccitelli
I forgot, Granite has tools for converting Java to Action Script classes. I wrote a simpler one, less complete, J2AS: http://www.nuccitec.com.br/microapps/j2as/ This save me time when I was developing in Adobe Flex On 11 jan, 19:09, Renzo Nuccitelli wrote: >  Once I begin developing

[google-appengine] Re: BlazeDS compatibility with GAE

2012-01-11 Thread Renzo Nuccitelli
helps you, Renzo Nuccitelli On 11 jan, 04:30, Narinder Kumar wrote: > Hi All, > > I am trying to build a Web Application with Flex as front-end and Java, > Spring as back-end In order for both of them to interact, I thought of > using Spring-Flex integration <http://www.springsour

[google-appengine] Re: Query fatch()

2012-01-04 Thread Renzo Nuccitelli
Because if you know the desired number of results in advance, fetch is faster than iterating over query when you are using cursors. You can read it on documentation: http://code.google.com/intl/en/appengine/docs/python/datastore/queries.html#Query_Cursors just above Limitations of Cursors. On 4 j

[google-appengine] Re: how to develop on tomcat and deploy on GAE

2011-11-26 Thread Renzo Nuccitelli
Like Ian said, don´t use Tomcat, use GAE Eclipse plugin for development. For debuging in this enviroment, one option is testing your application through Unit Testing (http://code.google.com/intl/en/ appengine/docs/java/tools/localunittesting.html). There is no need to generate a wtp project,

[google-appengine] Re: Google App Engine's Team Dishonesty

2011-11-18 Thread Renzo Nuccitelli
This input about System status is True. I have seen the system status indicating problems in some days and some days later just "erase" that the problem ocurred. On 18 nov, 16:25, Robert Kluin wrote: > I've seen at least two or three *major* disruptions on high-replication > apps since GAE went

[google-appengine] Re: HRD uses more datastore writes?

2011-10-21 Thread Renzo Nuccitelli
I didn´t know it was just to testers. I have sent the mail when they offer it to test and I have migrated my app to HRD too. Great tool. Only blobs from blostore were not migrated, but i could move around this problem. On 19 out, 15:54, Jason Collins wrote: > I believe the tool is still in Trus