All Questions
4 questions
2
votes
3
answers
6k
views
How can we make a UML diagram (or something similar) for a project which doesn't contains classes (like non object oriented)?
I am working on a python project and I didn't use classes but created different modules and added functions in them.
Now I need to draw a diagram to describe the project/application for a paper. I ...
-1
votes
1
answer
110
views
How should I handle an object that has copies of another object?
I really hope this is a good place to ask this since the answers might be subjective, but here it my problem:
This is probably irrelevant, but I'm working with Python and Django here.
I have the ...
0
votes
1
answer
84
views
Classes for integrating both BitBucket and GitHub into our site (an inheritance and composition question)
I am writing a system of callbacks for BitBucket and GitHub which should modify our site on certain events in BitBucket or GitHub.
It is reasonable to make a base class like GitIntegration to handle ...
1
vote
2
answers
3k
views
Translating between Python-Django and Javascript
I have a conceptual question about 'translating' between objects I have stored in Django (in Postgres) that I want to use on the front-end. So I have a user object in Python that holds basic things: ...