Having hard time implementing search functionality in django
I'm a complete beginner in backend development and I'm currently working on a search functionality that includes multiple advanced filters. I'm using Django Filters for filtering, but since I'm new to this, I haven't found many tutorials on YouTube. Most of the content I came across relates to Q objects, which raises the question of which is better to use: Django Filters or Q objects?
Additionally, I'm gathering data from APIs for weather, air quality, and datasets related to the cost of living. I'm unsure how to store this data so that when users apply filters in their searches, the system can display relevant cities. The project is aimed at digital nomads looking for cities based on specific criteria.
I would greatly apprciate any guidance on these topics, and I apologize if my questions seem basic.
/r/django
https://redd.it/1g98l21
I'm a complete beginner in backend development and I'm currently working on a search functionality that includes multiple advanced filters. I'm using Django Filters for filtering, but since I'm new to this, I haven't found many tutorials on YouTube. Most of the content I came across relates to Q objects, which raises the question of which is better to use: Django Filters or Q objects?
Additionally, I'm gathering data from APIs for weather, air quality, and datasets related to the cost of living. I'm unsure how to store this data so that when users apply filters in their searches, the system can display relevant cities. The project is aimed at digital nomads looking for cities based on specific criteria.
I would greatly apprciate any guidance on these topics, and I apologize if my questions seem basic.
/r/django
https://redd.it/1g98l21
Reddit
From the django community on Reddit
Explore this post and more from the django community
Tuesday Daily Thread: Advanced questions
# Weekly Wednesday Thread: Advanced Questions ๐
Dive deep into Python with our Advanced Questions thread! This space is reserved for questions about more advanced Python topics, frameworks, and best practices.
## How it Works:
1. **Ask Away**: Post your advanced Python questions here.
2. **Expert Insights**: Get answers from experienced developers.
3. **Resource Pool**: Share or discover tutorials, articles, and tips.
## Guidelines:
* This thread is for **advanced questions only**. Beginner questions are welcome in our [Daily Beginner Thread](#daily-beginner-thread-link) every Thursday.
* Questions that are not advanced may be removed and redirected to the appropriate thread.
## Recommended Resources:
* If you don't receive a response, consider exploring r/LearnPython or join the [Python Discord Server](https://discord.gg/python) for quicker assistance.
## Example Questions:
1. **How can you implement a custom memory allocator in Python?**
2. **What are the best practices for optimizing Cython code for heavy numerical computations?**
3. **How do you set up a multi-threaded architecture using Python's Global Interpreter Lock (GIL)?**
4. **Can you explain the intricacies of metaclasses and how they influence object-oriented design in Python?**
5. **How would you go about implementing a distributed task queue using Celery and RabbitMQ?**
6. **What are some advanced use-cases for Python's decorators?**
7. **How can you achieve real-time data streaming in Python with WebSockets?**
8. **What are the
/r/Python
https://redd.it/1g94p5f
# Weekly Wednesday Thread: Advanced Questions ๐
Dive deep into Python with our Advanced Questions thread! This space is reserved for questions about more advanced Python topics, frameworks, and best practices.
## How it Works:
1. **Ask Away**: Post your advanced Python questions here.
2. **Expert Insights**: Get answers from experienced developers.
3. **Resource Pool**: Share or discover tutorials, articles, and tips.
## Guidelines:
* This thread is for **advanced questions only**. Beginner questions are welcome in our [Daily Beginner Thread](#daily-beginner-thread-link) every Thursday.
* Questions that are not advanced may be removed and redirected to the appropriate thread.
## Recommended Resources:
* If you don't receive a response, consider exploring r/LearnPython or join the [Python Discord Server](https://discord.gg/python) for quicker assistance.
## Example Questions:
1. **How can you implement a custom memory allocator in Python?**
2. **What are the best practices for optimizing Cython code for heavy numerical computations?**
3. **How do you set up a multi-threaded architecture using Python's Global Interpreter Lock (GIL)?**
4. **Can you explain the intricacies of metaclasses and how they influence object-oriented design in Python?**
5. **How would you go about implementing a distributed task queue using Celery and RabbitMQ?**
6. **What are some advanced use-cases for Python's decorators?**
7. **How can you achieve real-time data streaming in Python with WebSockets?**
8. **What are the
/r/Python
https://redd.it/1g94p5f
Discord
Join the Python Discord Server!
We're a large community focused around the Python programming language. We believe that anyone can learn to code. | 412982 members
A search engine for all your memes - written in Python.
The app is open source and written entirely in Python ๐ https://github.com/neonwatty/meme\_search
# What My Project Does
The open source engine indexes your memes by their visual content and text, making them easily searchable. Drag and drop recovered memes into any messager.
The backend is built using these great open source components:
moondream: a tiny, kickass vision language model
all-MiniLM-L6-v2: a popular text embedding model
faiss: a fast and efficient vector db
sqlite: the swiss army knife of dbs
# Target Audience
This is a toy project. Open source and made for fun.
# Comparison
immich: great open source image organizer, does not (yet) have powerful image-to-text indexing
other local photo apps: some allow for indexing but not quite at the level of a vlm yet
/r/Python
https://redd.it/1g93yyw
The app is open source and written entirely in Python ๐ https://github.com/neonwatty/meme\_search
# What My Project Does
The open source engine indexes your memes by their visual content and text, making them easily searchable. Drag and drop recovered memes into any messager.
The backend is built using these great open source components:
moondream: a tiny, kickass vision language model
all-MiniLM-L6-v2: a popular text embedding model
faiss: a fast and efficient vector db
sqlite: the swiss army knife of dbs
# Target Audience
This is a toy project. Open source and made for fun.
# Comparison
immich: great open source image organizer, does not (yet) have powerful image-to-text indexing
other local photo apps: some allow for indexing but not quite at the level of a vlm yet
/r/Python
https://redd.it/1g93yyw
GitHub
GitHub - neonwatty/meme-search: The open source Meme Search Engine. Free and built to self-host locally with Python, Ruby, andโฆ
The open source Meme Search Engine. Free and built to self-host locally with Python, Ruby, and Docker. - neonwatty/meme-search
Guidance on deployment
Hi guys!!
So, I have a flask application that I want to deploy over the internet for data transmission between a webhook application and a computer doing a bunch of scientific calculations.
The idea is to deploy this app to be visible over the internet, so I can send post request (from the webhook) to the flask application, the flask application request the calculation from the machine, and send it back.
So, I'm wondering if I need some special configuration to protect the network or it should be fine just with flask. (Note such service will not be available for anyone but the backend function with the IP address and port of the machine that request the calculations).
Also, the machine running the post get request should the same one as the one running the scientific calculations or in the same local network.
Can anyone point out the risk of such idea (vulnerability on the system) or any other recommendations?
/r/flask
https://redd.it/1g9iyc3
Hi guys!!
So, I have a flask application that I want to deploy over the internet for data transmission between a webhook application and a computer doing a bunch of scientific calculations.
The idea is to deploy this app to be visible over the internet, so I can send post request (from the webhook) to the flask application, the flask application request the calculation from the machine, and send it back.
So, I'm wondering if I need some special configuration to protect the network or it should be fine just with flask. (Note such service will not be available for anyone but the backend function with the IP address and port of the machine that request the calculations).
Also, the machine running the post get request should the same one as the one running the scientific calculations or in the same local network.
Can anyone point out the risk of such idea (vulnerability on the system) or any other recommendations?
/r/flask
https://redd.it/1g9iyc3
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Micro services with Django
Hi folks
I have done two big Django project they were monolithic
But i really like the idea of micro services but i was wondering is it worth the headache
Let's make this discussion about when micro services will be indicated
So
1 why
2 when
3 design cause i found people separate db or share it between multiple services
/r/django
https://redd.it/1g9et8z
Hi folks
I have done two big Django project they were monolithic
But i really like the idea of micro services but i was wondering is it worth the headache
Let's make this discussion about when micro services will be indicated
So
1 why
2 when
3 design cause i found people separate db or share it between multiple services
/r/django
https://redd.it/1g9et8z
Reddit
From the django community on Reddit
Explore this post and more from the django community
Pyloid: A Web-Based GUI Framwork for Desktop Applications - v0.14.2 Released
# ๐ What is Pyloid?
Pyloid is the Python backend version of Electron and Tauri, designed to simplify desktop application development. This open-source project, built on QtWebEngine and PySide6, provides seamless integration with various Python features, making it easy to build powerful applications effortlessly.
# ๐ Why Pyloid?
With Pyloid, you can leverage the full power of Python in your desktop applications. Its simplicity and flexibility make it the perfect choice for both beginners and experienced developers looking for a Python-focused alternative to Electron or Tauri. It is especially optimized for building AI-powered desktop applications.
# ๐ฏ Target Audience
Pyloid is ideal for:
Python Developers: Build desktop apps with Python without learning new languages like Rust or C++.
AI/ML Enthusiasts: Easily integrate AI models into desktop applications.
Web Developers: Leverage your HTML, CSS, and JavaScript skills for desktop app development.
Electron/Tauri Users: Enjoy a similar experience with enhanced Python integration.
# Key Features ๐
Web-based GUI Generation: Easily build the UI for desktop applications using HTML, CSS, and JavaScript.
System Tray Icon Support
Multi-Window Management: Create and manage multiple windows effortlessly.
Bridge API between Python and JavaScript
Single Instance Application / Multi Instance Application Support: Supports both single and multi instance applications.
Comprehensive Desktop App Features:
/r/Python
https://redd.it/1g9hwas
# ๐ What is Pyloid?
Pyloid is the Python backend version of Electron and Tauri, designed to simplify desktop application development. This open-source project, built on QtWebEngine and PySide6, provides seamless integration with various Python features, making it easy to build powerful applications effortlessly.
# ๐ Why Pyloid?
With Pyloid, you can leverage the full power of Python in your desktop applications. Its simplicity and flexibility make it the perfect choice for both beginners and experienced developers looking for a Python-focused alternative to Electron or Tauri. It is especially optimized for building AI-powered desktop applications.
# ๐ฏ Target Audience
Pyloid is ideal for:
Python Developers: Build desktop apps with Python without learning new languages like Rust or C++.
AI/ML Enthusiasts: Easily integrate AI models into desktop applications.
Web Developers: Leverage your HTML, CSS, and JavaScript skills for desktop app development.
Electron/Tauri Users: Enjoy a similar experience with enhanced Python integration.
# Key Features ๐
Web-based GUI Generation: Easily build the UI for desktop applications using HTML, CSS, and JavaScript.
System Tray Icon Support
Multi-Window Management: Create and manage multiple windows effortlessly.
Bridge API between Python and JavaScript
Single Instance Application / Multi Instance Application Support: Supports both single and multi instance applications.
Comprehensive Desktop App Features:
/r/Python
https://redd.it/1g9hwas
Reddit
From the Python community on Reddit: Pyloid: A Web-Based GUI Framwork for Desktop Applications - v0.14.2 Released
Explore this post and more from the Python community
From jupyter to vscode
Hi everyone, Iโve been using Jupyter notebooks for a while, but as my files grow larger, maintaining them has become cumbersome. Iโd like to switch to VSCode to run selected code for testing, but every time I do, I have to rerun the entire code. How do machine learning engineers or data analysts handle large notebook files efficiently?
/r/Python
https://redd.it/1g9p2tj
Hi everyone, Iโve been using Jupyter notebooks for a while, but as my files grow larger, maintaining them has become cumbersome. Iโd like to switch to VSCode to run selected code for testing, but every time I do, I have to rerun the entire code. How do machine learning engineers or data analysts handle large notebook files efficiently?
/r/Python
https://redd.it/1g9p2tj
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
D R LLMs frameworks for research
I'm a Ph.D. student in AI and NLP and I'm currently starting a new research project with LLMs.
This time, instead of writing all the code from scratch, primarily using HuggingFace and Pytorch, I'd like to use one of the popular frameworks (like LangChain, LlamaIndex etc.).
The motivation behind this is that, ideally, I'd like to learn to use these tools to get a more compact and organised codebase, such that I can easily add pieces to include RAG, Agentic workflows etc.
I'm also interested in having an efficient way to load models and make inferences.
In your experience, which of the many available frameworks out there is the most suitable for research purposes ? And do you even use a framework or you just code everything from scratch every time you start a new project ?
/r/MachineLearning
https://redd.it/1g9k0te
I'm a Ph.D. student in AI and NLP and I'm currently starting a new research project with LLMs.
This time, instead of writing all the code from scratch, primarily using HuggingFace and Pytorch, I'd like to use one of the popular frameworks (like LangChain, LlamaIndex etc.).
The motivation behind this is that, ideally, I'd like to learn to use these tools to get a more compact and organised codebase, such that I can easily add pieces to include RAG, Agentic workflows etc.
I'm also interested in having an efficient way to load models and make inferences.
In your experience, which of the many available frameworks out there is the most suitable for research purposes ? And do you even use a framework or you just code everything from scratch every time you start a new project ?
/r/MachineLearning
https://redd.it/1g9k0te
Reddit
From the MachineLearning community on Reddit
Explore this post and more from the MachineLearning community
How to run science projects
Iโve put together my experience for running ML & science projects based on 9+ years at a FAANG company. It covers the usual stuff like figuring out vague business problems, finding the right stakeholders, setting up metrics, and getting things done. I also share some personal stories about whatโs worked (and what hasnโt), especially when stakeholders aren't on the same page. If youโve done similar work or have different approaches, Iโd love to hear what you think!
https://dzidas.com/ml/2024/10/22/implementing-data-science-projects/
/r/MachineLearning
https://redd.it/1g9kakg
Iโve put together my experience for running ML & science projects based on 9+ years at a FAANG company. It covers the usual stuff like figuring out vague business problems, finding the right stakeholders, setting up metrics, and getting things done. I also share some personal stories about whatโs worked (and what hasnโt), especially when stakeholders aren't on the same page. If youโve done similar work or have different approaches, Iโd love to hear what you think!
https://dzidas.com/ml/2024/10/22/implementing-data-science-projects/
/r/MachineLearning
https://redd.it/1g9kakg
Science & technology experiments
How to run data science projects
The article describes a framework on how to run and implement a data science project
How call a Django API from inside a Django process?
I have complex Django app with many different endpoints and pretty complicated filtering.
I want to build an export service that accepts the URL and query string. The makes a call and it pages thru the data writes to a file.
For example, say there is a User API:
"/api/users/?namestartswith=Bob"
Consider the database is larger and there are 100k "Bobs". I want to page thru this and write results to a file.
Finally, the query sets behind the API are sensitive to which user calls them. So the results are dependent on
For large exports, this has to run in background task. The question is how in the background test do I effectively fake the user auth. I can't just copy the user auth over as it may/will expire.
I could easily write the ORM again, but I really want to use the existing filters and validated business logic.
The only way I have come up so far is to use some of the test infrastructure like the
Alternative is to make some auth feature that allows for user impersonation which seems dangerous.
/r/django
https://redd.it/1g9v4p4
I have complex Django app with many different endpoints and pretty complicated filtering.
I want to build an export service that accepts the URL and query string. The makes a call and it pages thru the data writes to a file.
For example, say there is a User API:
"/api/users/?namestartswith=Bob"
Consider the database is larger and there are 100k "Bobs". I want to page thru this and write results to a file.
Finally, the query sets behind the API are sensitive to which user calls them. So the results are dependent on
request.user.For large exports, this has to run in background task. The question is how in the background test do I effectively fake the user auth. I can't just copy the user auth over as it may/will expire.
I could easily write the ORM again, but I really want to use the existing filters and validated business logic.
The only way I have come up so far is to use some of the test infrastructure like the
RequestFactory to make the calls inside my task. We do this all the time in our tests.Alternative is to make some auth feature that allows for user impersonation which seems dangerous.
/r/django
https://redd.it/1g9v4p4
Reddit
From the django community on Reddit
Explore this post and more from the django community
Am I doing it wrong for only using HTML and vanilla JS?
I've made webapps with VueJS before but it struggled with SEO. For the SEO part of that project I had to create a separate Flask-rendered page and import Vue as components on the page. I have not learned Nuxt yet.
Recently I tried Alpine.js for one project and then vanilla JS for another. I find it's easier to just use vanilla JS for the most part. Maybe because I'm relatively new to JS so I felt the vanilla JS is easier to grasp than frameworks. Granted these are very simple apps maybe that's also the reason. Am I missing something for not using a framework like Vue for simple apps? Does anyone use vanilla JS for a medium-complexity app?
/r/flask
https://redd.it/1g9p3o7
I've made webapps with VueJS before but it struggled with SEO. For the SEO part of that project I had to create a separate Flask-rendered page and import Vue as components on the page. I have not learned Nuxt yet.
Recently I tried Alpine.js for one project and then vanilla JS for another. I find it's easier to just use vanilla JS for the most part. Maybe because I'm relatively new to JS so I felt the vanilla JS is easier to grasp than frameworks. Granted these are very simple apps maybe that's also the reason. Am I missing something for not using a framework like Vue for simple apps? Does anyone use vanilla JS for a medium-complexity app?
/r/flask
https://redd.it/1g9p3o7
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Django web app hosted locally
Hello, I am currently exploring Django because it has good security and my seniors suggested it. Currently they want me to use Django and have a super user and regular user. The super user can do CRUD (create, read. update and delete) data on the cloud/local data base. The regular user has a calendar dash board that has a search function and can search specific dates: Example: January 1, 2024 - it will then list down all the information of data from that specific date only.
My seniors are also pushing Mongo DB, both used for local for User:(Signup/Login) for local and another Mongo DB in cloud that is hosted either via AWS or Google providers of MongoDB.
Is this doable? and how will you tackle this if you are in my place? Thank you for suggestions/helps.
/r/django
https://redd.it/1ga4b54
Hello, I am currently exploring Django because it has good security and my seniors suggested it. Currently they want me to use Django and have a super user and regular user. The super user can do CRUD (create, read. update and delete) data on the cloud/local data base. The regular user has a calendar dash board that has a search function and can search specific dates: Example: January 1, 2024 - it will then list down all the information of data from that specific date only.
My seniors are also pushing Mongo DB, both used for local for User:(Signup/Login) for local and another Mongo DB in cloud that is hosted either via AWS or Google providers of MongoDB.
Is this doable? and how will you tackle this if you are in my place? Thank you for suggestions/helps.
/r/django
https://redd.it/1ga4b54
Reddit
From the django community on Reddit
Explore this post and more from the django community
rending html file just get a blank page
as the title says every time, I open up my webpage I just get blank page despite my html file having content.
yes, I have it in a separate folder called templates, no my .py is not in the templates folder. they are connected to the same route i checked. and yes, I spelled it correctly when return render_template("index.html")
i dont know if this helps but im using vscode text editor.
/r/flask
https://redd.it/1ga13ew
as the title says every time, I open up my webpage I just get blank page despite my html file having content.
yes, I have it in a separate folder called templates, no my .py is not in the templates folder. they are connected to the same route i checked. and yes, I spelled it correctly when return render_template("index.html")
i dont know if this helps but im using vscode text editor.
/r/flask
https://redd.it/1ga13ew
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
I need help with Django REST JSON parse error
I am very lost with this issue.
The stack is React, Redux, Django REST framework, Gunicorn, Nginx all in Docker.
I am sending a simple POST request from the frontend, all it contains is this data:
let data = {reportid: selectedReportId}
I verified that selectedReportId is not null or undefined. Viewing the request via browser tools, I can see the request and everything looks fine, including the JSON data.
However, it returns a 400 Bad request.
The urlpatterns in urls.py:
...
path('reports/generate/', views.generatereport, name='generatereport'),
...
The corresponding view:
@csrfprotect
@apiview(['POST'])
@permissionclasses(IsAuthenticated)
def generatereport(request):
data = JSONParser().parse(request)
reportid = data.get('reportid')
if reportid is None:
return JsonResponse({'Error': 'Submitted report ID does not exist'})
else:
report = getobjector404(Report, pk=reportid, user=request.user)
/r/django
https://redd.it/1ga8jwx
I am very lost with this issue.
The stack is React, Redux, Django REST framework, Gunicorn, Nginx all in Docker.
I am sending a simple POST request from the frontend, all it contains is this data:
let data = {reportid: selectedReportId}
I verified that selectedReportId is not null or undefined. Viewing the request via browser tools, I can see the request and everything looks fine, including the JSON data.
However, it returns a 400 Bad request.
The urlpatterns in urls.py:
...
path('reports/generate/', views.generatereport, name='generatereport'),
...
The corresponding view:
@csrfprotect
@apiview(['POST'])
@permissionclasses(IsAuthenticated)
def generatereport(request):
data = JSONParser().parse(request)
reportid = data.get('reportid')
if reportid is None:
return JsonResponse({'Error': 'Submitted report ID does not exist'})
else:
report = getobjector404(Report, pk=reportid, user=request.user)
/r/django
https://redd.it/1ga8jwx
Reddit
From the django community on Reddit
Explore this post and more from the django community
How do I query a column in a custom wtf flask validator when using flask-ckeditor?
If I have a column in the db table with
In a flask wtf custom validator I tried
I know this because I went
Though when I looked at dbeaver the text column is https://imgur.com/a/fDBobqZ. Notice the weird character at the end.
Here is the relevant code.
/r/flask
https://redd.it/1g9omd5
If I have a column in the db table with
current_title = <p>A1</p> how do I query it in in flask and flask sqlalchemy. In a flask wtf custom validator I tried
post_db = db.session.execute(db.select(Posts).filter_by(title=current_title)).scalar_one_or_none() but post_db is always None. I know this because I went
flash(post_db). I am 100% of the value because I checked dbeaver. Also the reason I am getting <p>A1</p> is because I am assume I am using flask ckeditor. Though when I looked at dbeaver the text column is https://imgur.com/a/fDBobqZ. Notice the weird character at the end.
Here is the relevant code.
class Posts(FlaskForm):
title = CKEditorField('title', validators=[DataRequired('text is required'
submit = SubmitField('Submit')]
class Book(db.Model):
id: Mapped[int] = mapped_column(Integer, primary_key=True)
text: Mapped[Optional[str]] = mapped_column(Text(), unique=True)
/r/flask
https://redd.it/1g9omd5
Imgur
Discover the magic of the internet at Imgur, a community powered entertainment destination. Lift your spirits with funny jokes, trending memes, entertaining gifs, inspiring stories, viral videos, and so much more from users.
Error Appears After User Idles for A While (Assuming a Postgresql DB Connection Timeout) How can I handle this gracefully? Plus a ton of other questions.
`django.db.utils.OperationalError: consuming input failed: server closed the connection unexpectedly`
`This probably means the server terminated abnormally`
`before or while processing the request.`
`server closed the connection unexpectedly`
`This probably means the server terminated abnormally`
`before or while processing the request.`
While developing my app getting it ready for launch I have noticed that if I have accidentally left my dev server running overnight I see this error in the terminal when I refresh my browser and I get a 500 Internal server error in the browser.
My App is hosted on Railway using:
whitenoise==6.7.0
psycopg==3.2.2
psycopg-binary==3.2.2
psycopg-pool==3.2.3
gunicorn==23.0.0
Procfile:
web: gunicorn project_name.wsgi --log-file
web: python manage.py migrate && gunicorn project_name.wsgi
I am assuming I just need to change my procfile config to the following to prevent these issues. Also adding an 'CONN\_MAX\_AGE = 0' update to my DATABASES settings should correct the issue yes?
New Procfile:
release: python manage.py migrate
web: gunicorn project_name.wsgi:application --bind 0.0.0.0:$PORT --workers 3 --threads 2 --timeout 120 --master --log-level info --access-logfile '-' --error-logfile '-'
DATABASES in settings.py:
DATABASES = {
/r/django
https://redd.it/1gacktw
`django.db.utils.OperationalError: consuming input failed: server closed the connection unexpectedly`
`This probably means the server terminated abnormally`
`before or while processing the request.`
`server closed the connection unexpectedly`
`This probably means the server terminated abnormally`
`before or while processing the request.`
While developing my app getting it ready for launch I have noticed that if I have accidentally left my dev server running overnight I see this error in the terminal when I refresh my browser and I get a 500 Internal server error in the browser.
My App is hosted on Railway using:
whitenoise==6.7.0
psycopg==3.2.2
psycopg-binary==3.2.2
psycopg-pool==3.2.3
gunicorn==23.0.0
Procfile:
web: gunicorn project_name.wsgi --log-file
web: python manage.py migrate && gunicorn project_name.wsgi
I am assuming I just need to change my procfile config to the following to prevent these issues. Also adding an 'CONN\_MAX\_AGE = 0' update to my DATABASES settings should correct the issue yes?
New Procfile:
release: python manage.py migrate
web: gunicorn project_name.wsgi:application --bind 0.0.0.0:$PORT --workers 3 --threads 2 --timeout 120 --master --log-level info --access-logfile '-' --error-logfile '-'
DATABASES in settings.py:
DATABASES = {
/r/django
https://redd.it/1gacktw
Reddit
From the django community on Reddit
Explore this post and more from the django community
I want to hide the DRF API views in my production code.
I have built a full stack mobile-web application using Flutter and Svelte with Django as the backend. All of the mentioned codes have been pushed to production. All of them function on the Django rest framework APIs(GET,POST and DELETE methods).
I have deployed the Django code using Heroku, on entering the production URL API endpoints, you can see that the API views can be accessed to anyone (refer below)
https://preview.redd.it/tpjia8dmwgwd1.png?width=1233&format=png&auto=webp&s=7866a8e5957e3704b606a7fab4df01ca19c29064
I want to know how can I hide this page from others accessing it? Or how can I prevent this data being available online? Please help with this.
/r/django
https://redd.it/1ga5ool
I have built a full stack mobile-web application using Flutter and Svelte with Django as the backend. All of the mentioned codes have been pushed to production. All of them function on the Django rest framework APIs(GET,POST and DELETE methods).
I have deployed the Django code using Heroku, on entering the production URL API endpoints, you can see that the API views can be accessed to anyone (refer below)
https://preview.redd.it/tpjia8dmwgwd1.png?width=1233&format=png&auto=webp&s=7866a8e5957e3704b606a7fab4df01ca19c29064
I want to know how can I hide this page from others accessing it? Or how can I prevent this data being available online? Please help with this.
/r/django
https://redd.it/1ga5ool
Wednesday Daily Thread: Beginner questions
# Weekly Thread: Beginner Questions ๐
Welcome to our Beginner Questions thread! Whether you're new to Python or just looking to clarify some basics, this is the thread for you.
## How it Works:
1. Ask Anything: Feel free to ask any Python-related question. There are no bad questions here!
2. Community Support: Get answers and advice from the community.
3. Resource Sharing: Discover tutorials, articles, and beginner-friendly resources.
## Guidelines:
This thread is specifically for beginner questions. For more advanced queries, check out our [Advanced Questions Thread](#advanced-questions-thread-link).
## Recommended Resources:
If you don't receive a response, consider exploring r/LearnPython or join the Python Discord Server for quicker assistance.
## Example Questions:
1. What is the difference between a list and a tuple?
2. How do I read a CSV file in Python?
3. What are Python decorators and how do I use them?
4. How do I install a Python package using pip?
5. What is a virtual environment and why should I use one?
Let's help each other learn Python! ๐
/r/Python
https://redd.it/1g9wxn3
# Weekly Thread: Beginner Questions ๐
Welcome to our Beginner Questions thread! Whether you're new to Python or just looking to clarify some basics, this is the thread for you.
## How it Works:
1. Ask Anything: Feel free to ask any Python-related question. There are no bad questions here!
2. Community Support: Get answers and advice from the community.
3. Resource Sharing: Discover tutorials, articles, and beginner-friendly resources.
## Guidelines:
This thread is specifically for beginner questions. For more advanced queries, check out our [Advanced Questions Thread](#advanced-questions-thread-link).
## Recommended Resources:
If you don't receive a response, consider exploring r/LearnPython or join the Python Discord Server for quicker assistance.
## Example Questions:
1. What is the difference between a list and a tuple?
2. How do I read a CSV file in Python?
3. What are Python decorators and how do I use them?
4. How do I install a Python package using pip?
5. What is a virtual environment and why should I use one?
Let's help each other learn Python! ๐
/r/Python
https://redd.it/1g9wxn3
Discord
Join the Python Discord Server!
We're a large community focused around the Python programming language. We believe that anyone can learn to code. | 412982 members
Talks from PyData Amsterdam 2024 now on YouTube
PyData has uploaded the talks from PyData Amsterdam 2024 (18-20 Sept) to YouTube.
- https://www.youtube.com/playlist?list=PLGVZCDnMOq0reU2lzNZCn9obkyRVaSnpF
- https://www.youtube.com/@PyDataTV/playlists
- https://www.youtube.com/@PyDataTV/videos
/r/Python
https://redd.it/1ga9frr
PyData has uploaded the talks from PyData Amsterdam 2024 (18-20 Sept) to YouTube.
- https://www.youtube.com/playlist?list=PLGVZCDnMOq0reU2lzNZCn9obkyRVaSnpF
- https://www.youtube.com/@PyDataTV/playlists
- https://www.youtube.com/@PyDataTV/videos
/r/Python
https://redd.it/1ga9frr