All Questions
Tagged with python web-development
39 questions
48
votes
6
answers
130k
views
How do I learn Python from zero to web development? [closed]
I am looking into learning Python for web development.
Assuming I already have some basic web development experience with Java (JSP/Servlets), I'm already familiar with web design (HTML, CSS, JS), ...
33
votes
4
answers
131k
views
How to develop front end (UI) for my Django website
I am learning Django and new to web development. Please excuse me if you find this question too dumb.
So, I am creating a Facebook application using Django which I would like to host in Google App ...
32
votes
10
answers
10k
views
What is a good approach to handling exceptions?
I have trouble reconciling "best practices" and real-world approaches to handling exceptions. In my day to day routine, I find myself running into the following examples:
try:
...
25
votes
8
answers
5k
views
Do frameworks put too much abstraction? [closed]
I've been programming for a little under a year and have some experience writing systems applications, web apps, and scripts for businesses/organizations. However, one thing I've never really done is ...
23
votes
1
answer
18k
views
SQLite with two python processes accessing it: one reading, one writing
I'm developing a small system with two components: one polls data from an internet resource and translates it into sql data to persist it locally; the second one reads that sql data from the local ...
19
votes
5
answers
19k
views
How difficult is Python and Django to pick up for a Java/.NET web developer? [closed]
I just started a new job a couple months ago at a small company where I am currently leading all development efforts present and future. I personally have years of experience in software design and ...
16
votes
2
answers
23k
views
What are hooks? [closed]
I keep coming across this term hooks in various programming articles. However I don't understand what they are, and how can they be used. So I just wanted to know what is the concept of hooks; if ...
13
votes
8
answers
3k
views
Choosing between CL and Python for web development
I'm coming from a Java background and after I read this little essay by Paul Graham I started wondering about picking up a new language namely Common Lisp to speed up my work (I'm a web developer).
I'...
10
votes
3
answers
13k
views
How does Python work?
This question may seems a little bit silly, but what the heck.
I started to learn Python. I know basic syntax, etc.
When I work with HTML, PHP, etc., I simply write code, put it inside .html or ....
9
votes
1
answer
2k
views
Options to handle large (multi-gigabyte) file uploads
How would you implement a very large file upload functionality with a Django application and S3?
In my side job as a photographer, I have several clients for which I have a need to share multi-...
7
votes
13
answers
957
views
Type of computer for a developer on the road [closed]
I am planning to be traveling through eurasia and asia (russia, china, korea, japan, south east asia...) for a while and, although there are plenty of marvelous things to see and to do, I must keep on ...
7
votes
3
answers
4k
views
What's special about "non-blocking" node.js?
In the short chapter, What is Node by McLaughlin, he writes:
"Node has no blocks, no threads competing for the same resource (Node
is happy to just let things happen however they happen), nothing ...
7
votes
2
answers
3k
views
Web development in a small team - best practices
Currently developing a web app in a team of two maybe three in the near future. Tech stack is at the moment : flask, mongodb, and extjs for the fontend. I currently have the project under version ...
7
votes
2
answers
4k
views
Migrating from Python to Scala wise when a lot of work is already done in Python?
Me and my friend are developing a web-app in Python + Flask + PostgreSQL. We have been working on it for the past few months and have developed a lot of schema/use-cases specific to Python + Flask + ...
7
votes
5
answers
3k
views
How can I keep a production Python environment secure?
Most of my work is creating websites in Django (a Python web framework) and deploying them to my own or clients' servers. I work from a virtualenv to separate site from system packages and have ...