Hospital Management System || Django || Free Source Code
https://youtube.com/watch?v=qQWUROjhyLo&feature=share
/r/djangolearning
https://redd.it/upiuuu
https://youtube.com/watch?v=qQWUROjhyLo&feature=share
/r/djangolearning
https://redd.it/upiuuu
YouTube
Hospital Management System || Django || Free Source Code
Download Link :
https://yctacademy.blogspot.com/p/hospital-management-project-django-free.html
Python Django Projects : https://www.youtube.com/playlist?list=PLDLLuBZ1-EttZIZ60gOKr24hX2_ymSD91
Django Sweets Shop Project - 300 Rs Only - https://youtu.be/ytCDV1vGhEQ…
https://yctacademy.blogspot.com/p/hospital-management-project-django-free.html
Python Django Projects : https://www.youtube.com/playlist?list=PLDLLuBZ1-EttZIZ60gOKr24hX2_ymSD91
Django Sweets Shop Project - 300 Rs Only - https://youtu.be/ytCDV1vGhEQ…
Saturday Daily Thread: Resource Request and Sharing! Daily Thread
Found a neat resource related to Python over the past week? Looking for a resource to explain a certain topic?
Use this thread to chat about and share Python resources!
/r/Python
https://redd.it/up4vg6
Found a neat resource related to Python over the past week? Looking for a resource to explain a certain topic?
Use this thread to chat about and share Python resources!
/r/Python
https://redd.it/up4vg6
reddit
Saturday Daily Thread: Resource Request and Sharing! Daily Thread
Found a neat resource related to Python over the past week? Looking for a resource to explain a certain topic? Use this thread to chat about and...
hey is there anny option to remove obj from table but not delete from DB?
for example i got start and stop button i want with the stop button that the obj removes from todays jobs. Anny functions ?
/r/django
https://redd.it/upge19
for example i got start and stop button i want with the stop button that the obj removes from todays jobs. Anny functions ?
/r/django
https://redd.it/upge19
reddit
hey is there anny option to remove obj from table but not delete...
for example i got start and stop button i want with the stop button that the obj removes from todays jobs. Anny functions ?
i want to Redirect to the same view after delete??
**so after deleting comment i can't back to detailviews of my comments , i need back with the pk of the post**
\#error
`Reverse for 'CommentsBack' not found. 'CommentsBack' is not a valid view function or pattern`
#views
# list all the comments of ever post l
class comment_back (DetailView):
model=Post
template_name='CommentsBack.html'
#delete comment by his primary key
def delete_comment(self,pk):
event=Comment.objects.get(pk=pk)
event.delete()
return redirect('CommentBack')
​
#urls
path('mypost/<int:pk>/commentBack', comment_back.as_view(),name="commentBack"),
path('DeleteComment/<int:pk>/remove', views.delete_comment,name="delete_comment"),
/r/djangolearning
https://redd.it/uplkto
**so after deleting comment i can't back to detailviews of my comments , i need back with the pk of the post**
\#error
`Reverse for 'CommentsBack' not found. 'CommentsBack' is not a valid view function or pattern`
#views
# list all the comments of ever post l
class comment_back (DetailView):
model=Post
template_name='CommentsBack.html'
#delete comment by his primary key
def delete_comment(self,pk):
event=Comment.objects.get(pk=pk)
event.delete()
return redirect('CommentBack')
​
#urls
path('mypost/<int:pk>/commentBack', comment_back.as_view(),name="commentBack"),
path('DeleteComment/<int:pk>/remove', views.delete_comment,name="delete_comment"),
/r/djangolearning
https://redd.it/uplkto
reddit
i want to Redirect to the same view after delete??
**so after deleting comment i can't back to detailviews of my comments , i need back with the pk of the post** \#error `Reverse for...
Hi all , weird one happening for me tonight . Started a new project and created my first few tables . When I created a super user via manage.py shell it won’t let me log in to /admin/
Any idea why it’s not allowing me in ?
/r/django
https://redd.it/upr3t4
Any idea why it’s not allowing me in ?
/r/django
https://redd.it/upr3t4
reddit
Hi all , weird one happening for me tonight . Started a new...
Any idea why it’s not allowing me in ?
Biometrics Enrollment in Django.
Please who has an idea on biometrics enrollment using Django? I am currently working on a web application that requires fingerprint capturing from users. The fingerprints are captured and saved to the database and users can also login through their username and their fingerprints.
Please I need your suggestions.
Thank you.
/r/djangolearning
https://redd.it/uph56b
Please who has an idea on biometrics enrollment using Django? I am currently working on a web application that requires fingerprint capturing from users. The fingerprints are captured and saved to the database and users can also login through their username and their fingerprints.
Please I need your suggestions.
Thank you.
/r/djangolearning
https://redd.it/uph56b
reddit
Biometrics Enrollment in Django.
Please who has an idea on biometrics enrollment using Django? I am currently working on a web application that requires fingerprint capturing from...
Hey, I have question on how adding a click event to my plotly object in a dash app. Actually, I am trying to open the ensembl website by clicking on a scatter structure (see figure attached) inside my plotly figure.
/r/IPython
https://redd.it/n5doto
/r/IPython
https://redd.it/n5doto
Sunday Daily Thread: What's everyone working on this week?
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.
/r/Python
https://redd.it/uptmup
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.
/r/Python
https://redd.it/uptmup
reddit
Sunday Daily Thread: What's everyone working on this week?
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your...
How do you name the project directory?
It is about convention so I can do whatever I want at the end of the day. But let me ask this question.
By "project directory" I mean the inner mysite/ directory in the official Django tutorial.
In the official tutorial, the outer directory and the inner directory have the same name and I find it kind of confusing.
So I named it "config". But something doesn't feel right.
And I still find it confusing because you can have other config files or directories when developing with Django such as setup.cfg and pre-commit-config.yaml etc...
I prefer "project_config". But the name's kinda long and as far as I know, nobody uses it.
Some people apparently prefer"project".
https://forum.djangoproject.com/t/project-naming-conventions/339
What do you think about the name "project_config"? Redundant?
And how do you name the project directory?
/r/django
https://redd.it/uq06st
It is about convention so I can do whatever I want at the end of the day. But let me ask this question.
By "project directory" I mean the inner mysite/ directory in the official Django tutorial.
In the official tutorial, the outer directory and the inner directory have the same name and I find it kind of confusing.
So I named it "config". But something doesn't feel right.
And I still find it confusing because you can have other config files or directories when developing with Django such as setup.cfg and pre-commit-config.yaml etc...
I prefer "project_config". But the name's kinda long and as far as I know, nobody uses it.
Some people apparently prefer"project".
https://forum.djangoproject.com/t/project-naming-conventions/339
What do you think about the name "project_config"? Redundant?
And how do you name the project directory?
/r/django
https://redd.it/uq06st
Django Forum
"Project" Naming Conventions
Django newb here, I have seen a few articles touching on this topic but nothing that answered the question for me. I’m wondering how people prefer to name their project in Django. I’ve seen a variety of different ways: “project”, “config”, or even “app”.…
how can I create a startup notebook in jupyterlab preloaded with some imports and other code?
/r/JupyterNotebooks
https://redd.it/ubprl6
/r/JupyterNotebooks
https://redd.it/ubprl6
reddit
r/JupyterNotebooks - how can I create a startup notebook in jupyterlab preloaded with some imports and other code?
3 votes and 2 comments so far on Reddit
I made a package that prints trees to the console
​
https://preview.redd.it/ig0oabgn6lz81.jpg?width=469&format=pjpg&auto=webp&s=5d4114e527373799d18d77d193f1071f1c6c13c0
https://github.com/AharonSambol/PrettyPrintTree
I couldn't find any good way to print trees to the console... So I made one :)
It helps a ton with debugging!
/r/Python
https://redd.it/uq0bdo
​
https://preview.redd.it/ig0oabgn6lz81.jpg?width=469&format=pjpg&auto=webp&s=5d4114e527373799d18d77d193f1071f1c6c13c0
https://github.com/AharonSambol/PrettyPrintTree
I couldn't find any good way to print trees to the console... So I made one :)
It helps a ton with debugging!
/r/Python
https://redd.it/uq0bdo
Convert your Jupyter notebook into Machine Learning web app using Mercury framework..
https://www.analyticsvidhya.com/blog/2022/04/how-to-convert-jupyter-notebook-into-ml-web-app/
/r/JupyterNotebooks
https://redd.it/twk2jm
https://www.analyticsvidhya.com/blog/2022/04/how-to-convert-jupyter-notebook-into-ml-web-app/
/r/JupyterNotebooks
https://redd.it/twk2jm
Analytics Vidhya
How to Convert Jupyter Notebook into ML Web App?
In this article, we will see how to convert the Jupyter notebook into an application and deploy it on the Heroku platform.
Web Scraping with Python: Everything you need to know to get started (2022)
https://www.scrapingbee.com/blog/web-scraping-101-with-python/
/r/Python
https://redd.it/uqabuy
https://www.scrapingbee.com/blog/web-scraping-101-with-python/
/r/Python
https://redd.it/uqabuy
Scrapingbee
Python Web Scraping: Full Tutorial With Examples (2025) | ScrapingBee
Learn about web scraping in Python with this step-by-step tutorial. We will cover almost all of the tools Python offers to scrape the web. From Requests to BeautifulSoup, Scrapy, Selenium and more.
Length, First, Last Three Characters of a String Character at a Given Index Reverse a String
http://www.youtube.com/watch?v=hZsRWblEKwg
/r/IPython
https://redd.it/nlv6mp
http://www.youtube.com/watch?v=hZsRWblEKwg
/r/IPython
https://redd.it/nlv6mp
YouTube
01 Length, First, Last Three Characters of a String Character at a Given Index Reverse a String
Length of a String
Character at a Given Index
Reverse a String
First and Last Three Characters of a String
THANKS FOR WATCHING AND DON'T FORGET TO LIKE, COMMENT, SUBSCRIBE, AND HIT THE BELL ICON TO WATCH THE LATEST VIDEO!
#edudream #python
-~-~~-~~~…
Character at a Given Index
Reverse a String
First and Last Three Characters of a String
THANKS FOR WATCHING AND DON'T FORGET TO LIKE, COMMENT, SUBSCRIBE, AND HIT THE BELL ICON TO WATCH THE LATEST VIDEO!
#edudream #python
-~-~~-~~~…
Monday Daily Thread: Project ideas!
Comment any project ideas beginner or advanced in this thread for others to give a try! If you complete one make sure to reply to the comment with how you found it and attach some source code! If you're looking for project ideas, you might be interested in checking out Al Sweigart's, "The Big Book of Small Python Projects" which provides a list of projects and the code to make them work.
/r/Python
https://redd.it/uqixn0
Comment any project ideas beginner or advanced in this thread for others to give a try! If you complete one make sure to reply to the comment with how you found it and attach some source code! If you're looking for project ideas, you might be interested in checking out Al Sweigart's, "The Big Book of Small Python Projects" which provides a list of projects and the code to make them work.
/r/Python
https://redd.it/uqixn0
reddit
Monday Daily Thread: Project ideas!
Comment any project ideas beginner or advanced in this thread for others to give a try! If you complete one make sure to reply to the comment with...
Is it safe to send JWT token in register verification email in Django rest framework?
/r/django
https://redd.it/urfgwj
/r/django
https://redd.it/urfgwj
reddit
Is it safe to send JWT token in register verification email in...
Posted in r/django by u/Okayokay1026 • 5 points and 4 comments
How to multiply matrices in Python (Spyder IDE)
https://youtube.com/watch?v=hVhRHOqlJ2I&feature=share
/r/IPython
https://redd.it/lqrva5
https://youtube.com/watch?v=hVhRHOqlJ2I&feature=share
/r/IPython
https://redd.it/lqrva5
YouTube
How to multiply matrices in Python (Spyder IDE)
❖ This tutorial video provides a basic introduction to How to Multiply Matrices in Python. We have used Spyder IDE for programming in the Python language. Also, this video contains many examples and practice problems on Matrix Multiplication.
❖ Any matrix…
❖ Any matrix…
Where to put things to be shared among different apps
I'm working on a personal project relating the backend for a point of sale app. I'd like to know the best approach for locating things like Models, Serializers and Views (among other things) that are not related to a specific app and are shared among all of them.
For example, my apps are:
* authentication (relating users)
* client
* quote
* sale
I added a new app called helper which for example has:
* A model module where a have a BaseModel with *created\_at* and *updated\_ad* fields from which most of my models on my apps inherit.
* A views module that has CRDViewSet and CRViewSet, which are Create Read Delete and Create Read ViewSets which inherit from GenericViewSet and the needed mixins, and are used on some views on the other apps.
* A validators module with functions that validate things like a positive value, not negative value, and acceptable future date, among other things which also are validations shared and used in different serializers on my apps.
Is it okay for this *helper* app to exist or is there a more recommended way to have these different structures which are shared among apps?
​
Edit: Thanks for all your answers, I agree that core sounds a lot better
/r/django
https://redd.it/urddpe
I'm working on a personal project relating the backend for a point of sale app. I'd like to know the best approach for locating things like Models, Serializers and Views (among other things) that are not related to a specific app and are shared among all of them.
For example, my apps are:
* authentication (relating users)
* client
* quote
* sale
I added a new app called helper which for example has:
* A model module where a have a BaseModel with *created\_at* and *updated\_ad* fields from which most of my models on my apps inherit.
* A views module that has CRDViewSet and CRViewSet, which are Create Read Delete and Create Read ViewSets which inherit from GenericViewSet and the needed mixins, and are used on some views on the other apps.
* A validators module with functions that validate things like a positive value, not negative value, and acceptable future date, among other things which also are validations shared and used in different serializers on my apps.
Is it okay for this *helper* app to exist or is there a more recommended way to have these different structures which are shared among apps?
​
Edit: Thanks for all your answers, I agree that core sounds a lot better
/r/django
https://redd.it/urddpe
reddit
Where to put things to be shared among different apps
I'm working on a personal project relating the backend for a point of sale app. I'd like to know the best approach for locating things like...
Trying to access an element in the dictionary but it's printing the entire dictionary
debug={
"cat":"cat-value",
"dog":"dog-value
}
When I run the following:
{% for cat, value in debug.items %}
{{ value }}
{% endfor %}
The output is "cat-value dog-value", the entire dictionary. How do I only take "cat"
/r/django
https://redd.it/urszoo
debug={
"cat":"cat-value",
"dog":"dog-value
}
When I run the following:
{% for cat, value in debug.items %}
{{ value }}
{% endfor %}
The output is "cat-value dog-value", the entire dictionary. How do I only take "cat"
/r/django
https://redd.it/urszoo
reddit
Trying to access an element in the dictionary but it's printing...
debug={ "cat":"cat-value", "dog":"dog-value } When I run the following: {% for cat, value in debug.items %} {{...