Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
In the Django tutorial they show how to edit 2 related models on a single page here: https://docs.djangoproject.com/en/1.9/intro/tutorial07/#adding-related-objects
How can I achieve this in my app? Are there some built-in classes I can use similar to how it works in admin or would I have to create it myself?
If you have a look at the admin's source code, you'll find out it's done using formsets https://docs.djangoproject.com/en/1.9/topics/forms/formsets/
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 months ago.
Improve this question
Is there something simillar to https://ccbv.co.uk site which is offline now? There was descriptions of all class and methods, with source code, in django class-based view on the site.
The site seems to be online. https://www.isitdownrightnow.com/ccbv.co.uk.html
If you can't reach the site somehow, you can always check the views directly from the source code. The repo is commented pretty nicely. Other than that, the original documentation has a page that explains the views in detail.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I wonder if ther is flask extension or snippet that allows dynamic client web page data update (I need it for progress bar alike this one:
yet if there is a general SignalR alike library to create dynamic web application it would solve my problem?
If you would like to simulate Non-Blocking I/O Model similar to SignalR you can have a look at Flask-SocketIO - https://github.com/miguelgrinberg/Flask-SocketIO.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I would like to see some example about classical mappings and many to many relations in SQLAlchemy.
Can someone help me?
Thanks!
You can find multiple examples here: http://docs.sqlalchemy.org/en/latest/orm/examples.html
Association proxy is the most common many-to-many pattern, see example at http://docs.sqlalchemy.org/en/latest/_modules/examples/association/proxied_association.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I would like to be able to search a website (http://ned.ipac.caltech.edu/forms/nearname.html) with python and return a selection of values with the search. I want to use python and would like to know what literature to search for examples, and so I can learn how to do it.
Good places to start include the Requests module and BeautifulSoup.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking to obtain the code for PhotoHunt python (and eventually js and android), however the page on GitHub is no longer found https://github.com/googleplus/gplus-photohunt-server-python Is there a way I can still retrieve this?
The tutorial is given here https://developers.google.com/+/photohunt/python.
Using the search option, I found one fork: https://github.com/nixtish/gplus-photohunt-server-python
You'll need to check whether its history is sane, of course.