Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #73884

Re: Image Upload with FalconFramework

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed4a.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail
Return-Path <python-python-list@m.gmane.org>
X-Original-To python-list@python.org
Delivered-To python-list@mail.python.org
X-Spam-Status OK 0.000
X-Spam-Evidence '*H*': 1.00; '*S*': 0.00; 'from:addr:yahoo.co.uk': 0.04; 'that?': 0.05; 'level,': 0.07; 'versions,': 0.07; 'function,': 0.09; 'lawrence': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'req': 0.09; 'run,': 0.09; 'undefined': 0.09; 'python': 0.11; 'django': 0.11; 'language.': 0.14; 'any.': 0.16; 'ios': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'used:': 0.16; 'language': 0.16; 'wrote:': 0.18; 'header:User-Agent:1': 0.23; 'form:': 0.24; 'cheers,': 0.24; '---': 0.24; 'defined': 0.27; 'header:X -Complaints-To:1': 0.27; 'header:In-Reply-To:1': 0.27; 'tried': 0.27; 'feature': 0.29; 'code': 0.31; 'file': 0.32; 'class': 0.32; 'run': 0.32; 'subject:with': 0.35; 'but': 0.35; 'hi,': 0.36; 'expected': 0.38; 'to:addr:python-list': 0.38; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'how': 0.40; 'free': 0.61; 'viruses': 0.61; 'simple': 0.61; 'complete': 0.62; "you've": 0.63; 'protection': 0.63; 'happen': 0.63; 'our': 0.64; 'antivirus': 0.68; 'phones:': 0.84; 'subject:skip:F 10': 0.84
X-Injected-Via-Gmane http://gmane.org/
To python-list@python.org
From Mark Lawrence <breamoreboy@yahoo.co.uk>
Subject Re: Image Upload with FalconFramework
Date Thu, 03 Jul 2014 08:06:13 +0100
References <53B4D401.8080303@gmail.com>
Mime-Version 1.0
Content-Type text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding 7bit
X-Gmane-NNTP-Posting-Host host-92-18-5-57.as13285.net
User-Agent Mozilla/5.0 (Windows NT 6.1; rv:24.0) Gecko/20100101 Thunderbird/24.6.0
In-Reply-To <53B4D401.8080303@gmail.com>
X-Antivirus avast! (VPS 140702-1, 02/07/2014), Outbound message
X-Antivirus-Status Clean
X-BeenThere python-list@python.org
X-Mailman-Version 2.1.15
Precedence list
List-Id General discussion list for the Python programming language <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.11442.1404371188.18130.python-list@python.org> (permalink)
Lines 46
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1404371189 news.xs4all.nl 2841 [2001:888:2000:d::a6]:57802
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:73884

Show key headers only | View raw


On 03/07/2014 04:54, Peter Romfeld wrote:
> Hi,
>
> I am stuck at a simple image upload function, in django i just used:
>
> for feature phones:
> file = request.body
>
> iOS with Form:
> class ImageForm(forms.Form):
>      image = forms.FileField()

What is forms?  image is defined at the class level, not the instance 
level, did you actually mean that?

> form = ImageForm(request.POST, request.FILES)
> file = request.FILES['image'].read()

file has been overwritten.

>
> with falcon i tried but not working;
> req.stream.read()

req is undefined here.

>
> Cheers,
> Peter
>

So please give us your OS and Python versions, the exact code that 
you've tried to run, how you've tried to run it, what you expected to 
happen and what actually happened including the complete traceback if any.

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Image Upload with FalconFramework Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-07-03 08:06 +0100

csiph-web