Re: POST method on localhost

2017-09-26 Thread Andréas Kühne
I think most frameworks are pretty much the same today. What you should be looking for is something that you feel comfortable with. If you have been programming in java - look for a java framework. If you have been programming in python - look for a python framework. That being said, I personally

Re: POST method on localhost

2017-09-26 Thread Allan
Would you have any recommendations on where to get started with this? We were originally making a desktop application, but plans have shifted and I'm not very knowledgeable about everything web. Allan On Tuesday, 26 September 2017 13:35:08 UTC-7, Andréas Kühne wrote: > > Hi again, > >

Re: POST method on localhost

2017-09-26 Thread Andréas Kühne
Hi again, Different frameworks will probably not affect your upload speed. The web server (regardless of framework) is not the main problem, but the network speed, so regardless of which framework you choose in the end, it won't be the bottleneck. The thing is your web server is probably not even

Re: POST method on localhost

2017-09-26 Thread Allan
Andreas my supervisor has asked me to determine the feasibility of using different frameworks for our web application. Django seems nice to work with mainly because it is in Python and that gives us a lot. Will different frameworks result in a huge difference in aspects such as data upload?

Re: POST method on localhost

2017-09-26 Thread Andréas Kühne
Hi! Yes that is realistic in the sense that it takes a couple of seconds to upload a 1GB file to localhost. It should take a small amount of time, because it is just copying the file (through django) to the directory you specified. However uploading a 1 GB file to a web server on the Internet

POST method on localhost

2017-09-25 Thread Allan
I've created a simple form for data upload. I'm testing it through localhost and was wondering if this is realistic. Web development is a new area for me so bare with me please if this is a laughable question. I uploaded a 1GB file and it was uploaded and moved to a folder in my project in