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 years ago.
Improve this question
I did enough search in google before posting here about this topic and I didn't find what I am searching for.
I just finished learning Django. Now,I would like to practise Django and become an expert in Django. I would like to practise Django by doing simple,intermediate and expert level Django exercises and assignments. Where Can I find such assignments or exercises?
Django book itself covers a lot but you will learn when you can work on some project or task. All it is a matter of practice.
Choose any best website to implement from internet that you can implement and work on it to the end with some deadlines so that you can come across different issues and learn more from those.
I would recommend you to work on a single db first and finish these tutorials before https://www.gitbook.com/book/djangogirls/django-girls-tutorial-extensions/details and https://docs.djangoproject.com/en/1.10/intro/
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 7 months ago.
Improve this question
I'm starting a new personal server in a VPS (debian). I am doing the mainpage with django. I will like to add to this server/site other external apps (such as GitLab CE, Veloren , FluxRSS and Wallabag).
The idea is to centralize everything through django. To have something like :
Blog : webpage.com
GitLab : gitlab.webpage.com
Nevertheless, I cannot seem to find any tutorials or information to do this. I think there is something related to nginx and reverse proxy, but still cant find good information.
I know the question is very broad but I'm out of resources and do not know where to search...
I've been searching through the web (including stackoverflow) and can't seem to find what I'm looking for, so even if it is just keyword recommendations or links to possible solutions/implementations I'll be extremely happy.
You are looking for virtual hosts
https://linuxiac.com/nginx-virtual-host/
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 2 years ago.
Improve this question
I'm learning python myself, but I just don't understand Classes. I've watched multiple Youtube videos, but everyone just starts typing code without really explaining every part of it. Do you know any good documentation, or tutorials on it?
You can finish this small but effective sololearn course of python 3
https://www.sololearn.com/Course/Python/?ref=app
Or you can follow this link to specifically know more about python class
Learn more about python class
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 4 years ago.
Improve this question
I need to import this python project to Unity3d. How can i do that? Based on my search, i see that there are plugins like this. However, i need to perform this tasks without using any plugin? How should i do that, i am experienced in Unity but i have no python experience? Can i get .dlls from python project so that i can use the .dlls in Unity. Or should i do something else?
If someone lead me, i'd appereciate.
I'm not sure if you can. I know that's not what you're looking for, and don't let me discourage you, but start looking for another answer. I've been trying for a while now, and even with plugins the best I could do cost about $40, and that guy spent about a year working on it. Maybe try manually converting it to C#?
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 started to learn Django, and I have downloaded some videos from youtube and downloaded some free Django books. I feel that we can only develop blogs in Django. In every video or book explaining the framework, it is about making a blog.
Please correct me if we could develop another web application like a Tracking System, HR system, finance systems or sales application.
You can definitely build things that not blogs in Django. Blogs are used as example projects because they are fairly straightforward to design and understand, but you can build pretty much anything in Django as long as its a restful web service.
Here you can find couple of example which are not BLOG examples.
http://lightbird.net/dbe2/
you can find there: calendarapp, tracking_issues app.
shop:
https://www.packtpub.com/books/content/setting-complete-django-e-commerce-store-30-minutes
here you can find few good examples:
https://codingforentrepreneurs.com/
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 1 year ago.
Improve this question
I'd like to look at some good web-app code written in python, just so I can learn some of the patterns / see how I can improve my code.
I've already googled around a bit, used google code search and run a search on github too - but haven't come across a well built, comprehensive app.
Perhaps a book could work as well. Basically, I'm just trying to find a way to learn the basic programming patterns for web-applications.
Any suggestions?
Why not start with the publicly available flask.pocoo.org?
Note: I'm linking to the Github repository on which he has published the code for his website (which runs on flask) rather than the website itself.
IMHO your time would be better invested learning something like Django, because much of what you could improve in a micro framework is already builtin on a bigger framework.