a Python web framework
-1
votes
0answers
42 views
Python Script running without installing python
I am a beginner in Python/Web development/Django Framework.
I have python installed in my local computer (A).I have written an application in Python language using the Django framework which works as ...
-3
votes
0answers
52 views
Could I develop a big scale website with only python (no frameworks)? [on hold]
I just started grasping python and as I have some general knowledge on how dynamic websites are built, I'd like to straight away develop a website with Python. I've tried Django and it seems I have to ...
0
votes
1answer
72 views
Is it ok to start with templates in MVC development?
I'm new to web development and I've started working on a project in my company that uses DJANGO. I feel it flexible to start my development straight first from the templates. I think it will be easier ...
-1
votes
0answers
30 views
Easy Web interface development framework [closed]
So, I'm actually a DBA but a formerly Java/Python/Powerbuilder/C programmer.
In the past I joined a team as developer for a large government website written in Java + Struts 1.3 + Hibernate + Sencha ...
0
votes
0answers
23 views
Rewriting/decoupling important service of the Django website in Erlang
We have application written entirely in Django, which consist of three separate components. Admin, Service for generating invoices + API and UI for users. Problem is, that they are very tightly ...
-1
votes
0answers
69 views
Should I learn CGI or a framework for web development with Python? [closed]
My background:
Fluent with Python (conditionals, loops, functions, classes), HTML & CSS. Have some background in JavaScript and can create sign-up pages, users having their own accounts etc. ...
2
votes
3answers
58 views
Should custom data elements be stored as XML or database entries?
There are a ton of questions like this, but they are mostly very generalized, so I'd like to get some views on my specific usage.
General:
I'm building a new project on my own in Django. It's focus ...
0
votes
1answer
49 views
Storing primary keys of objects in Redis and then querying them in Postgres through Django
This is probably my second time posting in programmers. I'm usually on stackoverflow but this question is more fit for the community here.
All suggestions, advice and insight on this matter is ...
0
votes
1answer
64 views
How do you handle domain logic that spans multiple model objects in an ORM?
So I know that business logic should be placed in the model. But using an ORM it is not as clear where I should place code that handles multiple objects.
E.g. let's say we have a Customer model which ...
27
votes
4answers
4k views
Is backing up a MySQL database in Git a good idea?
I am trying to improve the backup situation for my application. I have a Django application and MySQL database. I read an article suggesting backing up the database in Git.
On the one hand I like ...
8
votes
3answers
235 views
Storing editable site content?
We have a Django-based website for which we wanted to make some of the content (text, and business logic such as pricing plans) easily editable in-house, and so we decided to store it outside the ...
3
votes
3answers
145 views
Unit Testing: How much more code? [duplicate]
I'm fairly new to unit testing. In school it's always been, "hey it works, onward!" But I've started to write professionally, and even at work that's been basically the mantra. However, I've started ...
1
vote
0answers
25 views
Using Django to Create Child Sites
I am creating a series of small sites, I'm using the django framework. The theory goes a user comes to a master site, signs up, then he gets his own child site.
Example:
navigate to example.com
...
1
vote
1answer
67 views
How to secure a Django application's source code? [duplicate]
I have developed a Django application for a company. Now I am about to ship it to my customer. After reading through online articles and books, I understood that securing the source code of any web ...
3
votes
2answers
537 views
Decoupling Server and Client using REST API
I was thinking about how I can decouple a web-application completely into a server-side and a client-side component. I want to decouple the app to the extent that I can host both components on ...
0
votes
1answer
272 views
Front-end structure of large scale Django project
Few days ago, I started to work in new company. Before me, all front-end and backend code was written by one man (oh my...).
As you know, Django app contains two main directories for front-end: ...
0
votes
0answers
224 views
Django web app with websockets
I want to make a web service using Django, but that also has websocket functionality. Having done a bit of reading, this is the tech stack that I'm looking at:
---------------------------------
...
0
votes
2answers
268 views
How can I convince my client that the task was complex and the time I took is fair?
I am the single programmer working on a website handling both frontend and backend. Recently in my task list I have to provide a social news feed (activities among friends) which should summarize ...
0
votes
0answers
128 views
Extending user registration in Django site that uses both site admin tables and my own module?
I'm writing a Django site that registers a particular type of user and this is done by the resources that come with the framework, the site administration.
The issue: I'd like to create a new model ...
1
vote
2answers
186 views
Using a web framework as python GUI
If I built some useful piece of python code to e.g. scrape a website or to calculate something big, at some point I might want to add a GUI to my project. For this I could use Tk, Qt, Pygame or any ...
3
votes
1answer
693 views
Database design/relationship for threading messages
What's the database design or business logic for creating an app for messaging between users?
I am having difficulties with choosing how to approach the relationship between each Conversation of User ...
0
votes
2answers
209 views
What could be the Model Layer when consuming Web-Services and no Database in Django?
I'm using Django as an application framework and it only needs to consume web services (no need to have traditional Django Models and the related ORM).
In this case, since Django is a variant on the ...
2
votes
3answers
2k views
REST API at backend and MVC Javascript framework at client side
I am building an online social network. I have finished writing RESTful API service using Django. This will return only JSON response (No HTML will be generated from server side) so that this JSON ...
2
votes
1answer
152 views
Merge two different API calls into One
I have two different apps in my django project. One is "comment" and an other one is "files". A comment might save some file attached to it.
The current way of creating a comment with attachments is ...
1
vote
2answers
801 views
Django REST + Backbone/Ember/Angular Implementation Method
http://stackoverflow.com/questions/10941249/separate-rest-json-api-server-and-client
In light of this post, I wanted to ask questions regarding Django and specifically the implementation methods of ...
1
vote
1answer
230 views
Architecture design for a web application that runs SSH connections to remote servers
This is a followup to my question here.
I have to make a web GUI for a library that manages remote clusters via SSH.
The main point is that this library spawns threads and subprocesses (Popen) ...
5
votes
3answers
398 views
Multiple sites with the same codebase in Python
I am trying to run a large amount of sites which share about 90% of their code. They are simply designed to query an API and return the results. They will have a common userbase / database but will be ...
0
votes
1answer
132 views
Best practices when dealing with lots of empty table columns?
I have a schema that allows for multiple post types in my Django project (kinda like Tumblr). Users can make Posts of different types. One of those types is a photo, which I'll want the EXIF data for. ...
3
votes
1answer
442 views
Web app outgrowing current framework
I have quite a bit of experience with using Django for websites and so when I started a new project I naturally chose to use Django for it. Everything went well for a time but now the application is ...
0
votes
2answers
134 views
Should model / table names be as generic as possible?
When naming a model, should the name be as generic as possible-- even if that won't be the name displayed to users?
For example let's imagine a Django model for liking another user's posts.
Does it ...
0
votes
4answers
248 views
Do I need a database to implement AJAX functionality for my app?
I am new to the construction and design of a web app so I'd like some advice please (Django is my framework). I'm trying to code up a "how-to" website instructing users the step-by-step process for ...
0
votes
2answers
538 views
How my website should use its own API?
Im building small web-service which will provide my users with data through API.
Also, some data will be available right on my website.
The question is about how to use my own API? Should my website ...
5
votes
4answers
458 views
How to create different paths for users to take through the pages in my site?
I have a website where users are directed to go through a sequence of pages to perform a sequence of work tasks (transcribe a paragraph, answer a survey, interact with another user, etc). For short, ...
0
votes
1answer
1k views
One to Many Relationship Django
let say I want my User model to have only one location and my Post model to have many location. How Do I design the model? This is what I have in mind so far. Is this going to work? Do I need to ...
3
votes
1answer
539 views
Python, magic and objects that add attributes to its owner
Let me start with a disclaimer: I'm not the best programmer out there. I do however study I.T. and learnt a bit of Java and C.
I'm getting stuck into Python and Django + Mongoengine, I'm not going to ...
2
votes
4answers
574 views
Notify players every x seconds in a multiplayer game
I'm working on a realtime multiplayer game using Django and gevent-socketio, I'm facing some issues:
I need to send an update of the game state to connected players every X seconds (~4 seconds), so ...
2
votes
3answers
510 views
How to get a Web Application to communicate between users
I am developing a multipalyer web Application for Anti-Chess. It would be hosted on Google App Engine.
I have a few questions:
How do I get two different users who have opened the webapp on their ...
7
votes
1answer
443 views
Unit testing in Django
I'm really struggling to write effective unit tests for a large Django project. I have reasonably good test coverage, but I've come to realize that the tests I've been writing are definitely ...
2
votes
1answer
355 views
Does it violate the DRY principle to use an MVC server-side framework and a client-side MVC framework
When using a MVC pattern for server side code (in my case django), the model definition is defined once in the model component. When using a client side MVC based library(in my case backbone) the ...
2
votes
1answer
226 views
How to dynamically add new posts once they are created
I am trying to design an application where users can make posts with Django on the backend. Right now I have to refresh the page with JavaScript every 20 or 30 seconds to check for new posts that ...
1
vote
6answers
467 views
git: having separate folder for development, why?
until now I was using dropbox as my main vcs (it is not, but for a single dev does the job pretty decent).
However I decided to give git a go and see if it fits my needs. Today I was reading this ...
0
votes
1answer
190 views
Handling table name collisions in Django
Django creates a table name by joining the app label with the model name. A project can have many apps. If two have the same label, how can both be used in the same database?
I'm currently using very ...
1
vote
1answer
196 views
Restrict access to backend
This might be one of those "not answerable" or "just opinions"-questions but I thought I'd give it a shot.
I'm developing an app with health care information with a friend who's a doctor. The basics ...
3
votes
1answer
1k views
What are your techniques for storing numpy structures in django database fields and how do you serialize them for http?
I want to publish a small web project that is supposed to contain some of my research results to present it to the scientific community. All my analysis I ran so far have been written in python ...
-2
votes
1answer
156 views
Where can I find out about basic python usage, cli, editor and testing? [closed]
I'm coming from Ruby / Ruby on Rails to Python.
Where can I find or find resources about:
The command prompt, what is python's version of 'irb'
info and recommendations on editors, plugins and IDE's
...
10
votes
6answers
3k views
Execute code every hour
I need to create a web service that executes every hour. It will be used to review data in a database and add alerts to a table in the same database if certain conditions are met/not met. What we ...
1
vote
2answers
382 views
Which web framework to use under Backbonejs?
For a previous project, I was using Backbonejs alongside Django, but I found out that I didn't use many features from Django. So, I am looking for a lighter framework to use underneath a Backbonejs ...
5
votes
3answers
565 views
Should we have a database independent SQL like query language in Django?
Note :
I know we have Django ORM already that keeps things database independent and converts to the database specific SQL queries.
Once things starts getting complicated it is preferred to write raw ...
1
vote
2answers
834 views
Is it worth converting a Django project to Rails?
I have a project I shelved a while back- it was essentially a working web app built in django but I stopped working on it to work on something else.
I plan on starting it up again in my spare time, ...
6
votes
2answers
1k views
Django application strategy
I have been working a while on a Django project which has been growing a bit lately. I have been think a bit about what strategy to use to make it easier to handle. One thing I would like to get some ...