[Tutor] get aws path from argParser

2016-01-08 Thread sebastian cheung via Tutor
* take an s3 destination path as an argument optionally containing the string ++DATE++ as a placeholder (e.g. s3://my-bucket/objects/++DATE++/,  s3://my-bucket/objects/++DATE++/file-++DATE++.txt and s3://my-bucket/objects/ should all be valid) I already have something for something more simple, b

[Tutor] Python Optical Character Recognition

2015-09-30 Thread Sebastian Cheung via Tutor
How to read a jpg or png file into python and extract text thanks. I would imagine getting small symbols like ; or , to be difficult? Any good framework like this? Seb Sent from my iPhone ___ Tutor maillist - Tutor@python.org To unsubscribe or cha

[Tutor] Merging of two separate flask apps

2015-09-29 Thread Sebastian Cheung via Tutor
Hi, I am trying to merge two flask apps, both from Miguel Grinberg's Flask-SocketIO-Chat into another one of his Microblog so that after user login to the main microblog then the other Chat app could be launched if user selects of the options, which in this case is the Chat. The idea is learn

Re: [Tutor] skip/slice more than every second?

2015-09-29 Thread Sebastian Cheung via Tutor
print range(1,15,4) ans: [1, 5, 9,13] Sent from my iPhone > On 29 Sep 2015, at 04:16, questions anon wrote: > > a = [1,2,3,4,5,6,7,8,9,10,11,12,13,14] > > how can I show the first then skip three and show the next and so on? > For example: > show 1 > then skip 2,3,4 > then show 5 > then ski