Speeds up the query of a database with a lot of data
Hello everyone
I am working on an Oauth2 project App 1, one has a model company with 20 fields, when the user creates for example 20,000 company, when I created App 2 which can introspect App 1 and the model company , it takes 5 minutes for my request to return the companies to me and create or update them if they exist, I however used blinkcreate and blinkupdate when it is a new company, the others I update company by company is where the query takes a lot of time...
I also tried to overwrite the data received on the existing one, but my database or the Django ORM refuses because the foreight key already exists
Do you have any solutions when I update a list to do one by one and come update all at once?
Thanks to you
/r/django
https://redd.it/1he5055
Hello everyone
I am working on an Oauth2 project App 1, one has a model company with 20 fields, when the user creates for example 20,000 company, when I created App 2 which can introspect App 1 and the model company , it takes 5 minutes for my request to return the companies to me and create or update them if they exist, I however used blinkcreate and blinkupdate when it is a new company, the others I update company by company is where the query takes a lot of time...
I also tried to overwrite the data received on the existing one, but my database or the Django ORM refuses because the foreight key already exists
Do you have any solutions when I update a list to do one by one and come update all at once?
Thanks to you
/r/django
https://redd.it/1he5055
Reddit
From the django community on Reddit
Explore this post and more from the django community
Deploy Flask App
Hi everyone, I'm new to web app development and have created a Flask-based application that requests data from a PostgreSQL database, which is then updated on a Vanilla JS-based frontend.
Currently, the application is running on my local Windows environment, and want to publish it so it can be accessed by everyone on the internet. I'm finding it challenging to choose the right path and tools.
My company has a Windows server on Azure. Should deploy the app on an server, or is there a simpler, better approach? Any documentation or tutorials on the recommended deployment path would be very helpful.
/r/flask
https://redd.it/1hed4l9
Hi everyone, I'm new to web app development and have created a Flask-based application that requests data from a PostgreSQL database, which is then updated on a Vanilla JS-based frontend.
Currently, the application is running on my local Windows environment, and want to publish it so it can be accessed by everyone on the internet. I'm finding it challenging to choose the right path and tools.
My company has a Windows server on Azure. Should deploy the app on an server, or is there a simpler, better approach? Any documentation or tutorials on the recommended deployment path would be very helpful.
/r/flask
https://redd.it/1hed4l9
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Django DRF serializers best practices
👋Hi everyone, I'm new to Django Rest Framework, I've been wondering about whether I should use two different ModelSerializers, one for read and the other for write, I hope it's clear, if not then just enlighten me with the best practices of drf serializers for a scalable, and to add on top of that, I have a post model which requires different fields for read and write.
Thanks in advance🙏
/r/django
https://redd.it/1heewq6
👋Hi everyone, I'm new to Django Rest Framework, I've been wondering about whether I should use two different ModelSerializers, one for read and the other for write, I hope it's clear, if not then just enlighten me with the best practices of drf serializers for a scalable, and to add on top of that, I have a post model which requires different fields for read and write.
Thanks in advance🙏
/r/django
https://redd.it/1heewq6
Reddit
From the django community on Reddit
Explore this post and more from the django community
Sunday Daily Thread: What's everyone working on this week?
# Weekly Thread: What's Everyone Working On This Week? 🛠️
Hello /r/Python! It's time to share what you've been working on! Whether it's a work-in-progress, a completed masterpiece, or just a rough idea, let us know what you're up to!
## How it Works:
1. Show & Tell: Share your current projects, completed works, or future ideas.
2. Discuss: Get feedback, find collaborators, or just chat about your project.
3. Inspire: Your project might inspire someone else, just as you might get inspired here.
## Guidelines:
Feel free to include as many details as you'd like. Code snippets, screenshots, and links are all welcome.
Whether it's your job, your hobby, or your passion project, all Python-related work is welcome here.
## Example Shares:
1. Machine Learning Model: Working on a ML model to predict stock prices. Just cracked a 90% accuracy rate!
2. Web Scraping: Built a noscript to scrape and analyze news articles. It's helped me understand media bias better.
3. Automation: Automated my home lighting with Python and Raspberry Pi. My life has never been easier!
Let's build and grow together! Share your journey and learn from others. Happy coding! 🌟
/r/Python
https://redd.it/1heg422
# Weekly Thread: What's Everyone Working On This Week? 🛠️
Hello /r/Python! It's time to share what you've been working on! Whether it's a work-in-progress, a completed masterpiece, or just a rough idea, let us know what you're up to!
## How it Works:
1. Show & Tell: Share your current projects, completed works, or future ideas.
2. Discuss: Get feedback, find collaborators, or just chat about your project.
3. Inspire: Your project might inspire someone else, just as you might get inspired here.
## Guidelines:
Feel free to include as many details as you'd like. Code snippets, screenshots, and links are all welcome.
Whether it's your job, your hobby, or your passion project, all Python-related work is welcome here.
## Example Shares:
1. Machine Learning Model: Working on a ML model to predict stock prices. Just cracked a 90% accuracy rate!
2. Web Scraping: Built a noscript to scrape and analyze news articles. It's helped me understand media bias better.
3. Automation: Automated my home lighting with Python and Raspberry Pi. My life has never been easier!
Let's build and grow together! Share your journey and learn from others. Happy coding! 🌟
/r/Python
https://redd.it/1heg422
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Flask-JWT-Extended and "Invalid crypto padding"
Hi,
This is my first message on this subreddit.
I've been learning to write backend in Flask for some time now and now I'm trying to familiarize myself with using JWT in it. I have encountered a problem related to the use of the Flask-JWT-Extended library, and more precisely, when I try to send the generated token back, I get the error: "Invalid crypto padding".
It seems to me that token generation is done correctly but I could be wrong, below are some code snippets related to this.
@app.route('/login', methods='POST')
def login():
if request.method == 'POST': return logincontroller()
else:
return 'Method is Not Allowed'
def logincontroller():
requestform = request.json
print(requestform)
password = requestform['password']
try:
login = requestform'username'
/r/flask
https://redd.it/1hedkxa
Hi,
This is my first message on this subreddit.
I've been learning to write backend in Flask for some time now and now I'm trying to familiarize myself with using JWT in it. I have encountered a problem related to the use of the Flask-JWT-Extended library, and more precisely, when I try to send the generated token back, I get the error: "Invalid crypto padding".
It seems to me that token generation is done correctly but I could be wrong, below are some code snippets related to this.
@app.route('/login', methods='POST')
def login():
if request.method == 'POST': return logincontroller()
else:
return 'Method is Not Allowed'
def logincontroller():
requestform = request.json
print(requestform)
password = requestform['password']
try:
login = requestform'username'
/r/flask
https://redd.it/1hedkxa
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
[P] Curated list of LLM papers 2024
https://magazine.sebastianraschka.com/p/llm-research-papers-the-2024-list
/r/MachineLearning
https://redd.it/1he4htl
https://magazine.sebastianraschka.com/p/llm-research-papers-the-2024-list
/r/MachineLearning
https://redd.it/1he4htl
Sebastianraschka
LLM Research Papers: The 2024 List
A curated list of interesting LLM-related research papers from 2024, shared for those looking for something to read over the holidays.
Streaming HTTP Response Factory
In django I have a few API integrations that take a few seconds in a single HTTP request to finish. Rather than just letting the page spin, I decided it would be way better UX to send back "status updates" for each step.
Im using the StreamingHttpResponse and a custom factory I built. I'm trying to implement a few more solid design patterns in the app. So this is kind of practice, but also being used in prod. The way it functions is very similar to how ChatGPT's typed text is streamed back to the client.
Here's the code below:
# task_factory.py
class MyTaskFactory:
def __init__(self):
self.tasks = []
def _build(self):
return [task.build() for task in self.tasks]
def add_task(self, name):
task = MyTask(name, self)
/r/django
https://redd.it/1hek6g5
In django I have a few API integrations that take a few seconds in a single HTTP request to finish. Rather than just letting the page spin, I decided it would be way better UX to send back "status updates" for each step.
Im using the StreamingHttpResponse and a custom factory I built. I'm trying to implement a few more solid design patterns in the app. So this is kind of practice, but also being used in prod. The way it functions is very similar to how ChatGPT's typed text is streamed back to the client.
Here's the code below:
# task_factory.py
class MyTaskFactory:
def __init__(self):
self.tasks = []
def _build(self):
return [task.build() for task in self.tasks]
def add_task(self, name):
task = MyTask(name, self)
/r/django
https://redd.it/1hek6g5
Reddit
From the django community on Reddit
Explore this post and more from the django community
Looking to Switch from MERN to Django – Seeking Resources and Guidance for a Smooth Transition!
Hi,
I just wanna switch my tech stack from MERN to django I just need suggestions to find resources nd for the sake of references I have made projects like c++ code editor which is basically a serverless website user just visits write,run and compiles the code nd they gets the output as simple as that. And also a vitagaurd a micro nutrition tracker which tracks users micronutrients such as vitamins, minerals stuff it also have a profile which shows a piechart of all nutritions consumed in a day. couple other projects those were like very common such as social media platform,course selling, chat application etc...
The reason why I wanna switch is cuz wanna explore django nd how it works yeah
Any suggestions might help hehe
/r/django
https://redd.it/1heb2ls
Hi,
I just wanna switch my tech stack from MERN to django I just need suggestions to find resources nd for the sake of references I have made projects like c++ code editor which is basically a serverless website user just visits write,run and compiles the code nd they gets the output as simple as that. And also a vitagaurd a micro nutrition tracker which tracks users micronutrients such as vitamins, minerals stuff it also have a profile which shows a piechart of all nutritions consumed in a day. couple other projects those were like very common such as social media platform,course selling, chat application etc...
The reason why I wanna switch is cuz wanna explore django nd how it works yeah
Any suggestions might help hehe
/r/django
https://redd.it/1heb2ls
Reddit
From the django community on Reddit
Explore this post and more from the django community
NGL Like project updates.
A small update from my NGL like project built with flask and react with following feature.
\- Reset password
\- New profile & settings design
\- Added an email
You can try:
https://stealthmessage.vercel.app/
Send me a message:
https://stealthmessage.vercel.app/secret/c3aec79d0c
Code:
https://github.com/nordszamora/Stealth-Message.git
Send me your feedback:)
/r/flask
https://redd.it/1he3hg9
A small update from my NGL like project built with flask and react with following feature.
\- Reset password
\- New profile & settings design
\- Added an email
You can try:
https://stealthmessage.vercel.app/
Send me a message:
https://stealthmessage.vercel.app/secret/c3aec79d0c
Code:
https://github.com/nordszamora/Stealth-Message.git
Send me your feedback:)
/r/flask
https://redd.it/1he3hg9
stealthmessage.vercel.app
StealthMessage | Message Anonymously
Anonymous user will send a message for you.
Practice Probs is awesome!
Who ever is the creator of this site, thank you very much! Your content is very useful for learning and practicing. I am using this for Pandas and Numpy!
Link
/r/Python
https://redd.it/1heasge
Who ever is the creator of this site, thank you very much! Your content is very useful for learning and practicing. I am using this for Pandas and Numpy!
Link
/r/Python
https://redd.it/1heasge
Practiceprobs
Home
Fun programming practice problems to help you learn including numpy, pandas, matplotlib, pytorch, pytest, regular expressions, sparse matrices, bigquery, selenium, git, and more! All problems include explained solutions. Tons of free content, including tutorials…
How to navigate through file tree using
I'm having trouble making my web app to read static style
# Project structure
Below is the file structure tree:
main.py
coolestapp/
├── init.py
└── pages/
├── init.py
├── templates/
│ ├── base.html
└── static/
└── styles/
└── base.css
There are in total 5 files within this project. But, I'm only giving the content of 4 files only since the `.css` file content is irrelevant.
a. [`main.py`](http://main.py) file
from coolestapp import createapp
app = createapp()
if name == "main":
app.run(debug=True, host="0.0.0.0", port="10000")
b.
/r/flask
https://redd.it/1he36l5
url_for with flask buleprint?I'm having trouble making my web app to read static style
.css file when using flask blueprint. The HTML fails to read this stylesheet. I'm going describe how the project files are structured followed by the content of each files.# Project structure
Below is the file structure tree:
main.py
coolestapp/
├── init.py
└── pages/
├── init.py
├── templates/
│ ├── base.html
└── static/
└── styles/
└── base.css
There are in total 5 files within this project. But, I'm only giving the content of 4 files only since the `.css` file content is irrelevant.
a. [`main.py`](http://main.py) file
from coolestapp import createapp
app = createapp()
if name == "main":
app.run(debug=True, host="0.0.0.0", port="10000")
b.
coolest_app/__init__.py/r/flask
https://redd.it/1he36l5
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Redirect from a called function
let's say I have a route, where the second function is in another file. The redirect is not working.
route
def fun1():
fun2()
def fun2():
redirect(url_for())
/r/flask
https://redd.it/1het5j4
let's say I have a route, where the second function is in another file. The redirect is not working.
route
def fun1():
fun2()
def fun2():
redirect(url_for())
/r/flask
https://redd.it/1het5j4
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
New to JWTs: How to Maintain User Login Beyond Token Expiration?
Hey everyone! I'm new to working with JWTs and have created a REST API that uses them for authentication, with a token validity of 15 minutes. As I integrate this API with a frontend framework, I'm facing a challenge: after the user logs in, the token expires after 15 minutes.
I want to ensure that users remain logged in indefinitely unless they explicitly log out. What are the best practices for handling JWT expiration? Should I implement a refresh token system, and if so, how should it be structured? Any guidance or examples would be greatly appreciated as I navigate this! Thanks in advance for your help!
/r/flask
https://redd.it/1hdbkcx
Hey everyone! I'm new to working with JWTs and have created a REST API that uses them for authentication, with a token validity of 15 minutes. As I integrate this API with a frontend framework, I'm facing a challenge: after the user logs in, the token expires after 15 minutes.
I want to ensure that users remain logged in indefinitely unless they explicitly log out. What are the best practices for handling JWT expiration? Should I implement a refresh token system, and if so, how should it be structured? Any guidance or examples would be greatly appreciated as I navigate this! Thanks in advance for your help!
/r/flask
https://redd.it/1hdbkcx
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
D Simple Questions Thread
Please post your questions here instead of creating a new thread. Encourage others who create new posts for questions to post here instead!
Thread will stay alive until next one so keep posting after the date in the noscript.
Thanks to everyone for answering questions in the previous thread!
/r/MachineLearning
https://redd.it/1hevk2a
Please post your questions here instead of creating a new thread. Encourage others who create new posts for questions to post here instead!
Thread will stay alive until next one so keep posting after the date in the noscript.
Thanks to everyone for answering questions in the previous thread!
/r/MachineLearning
https://redd.it/1hevk2a
Reddit
From the MachineLearning community on Reddit
Explore this post and more from the MachineLearning community
Time Series Analysis using First Return Time Statistics
Hi All,
I am currently working on a project focused on classifying chaotic and regular/quasi-periodic time series and am encountering some difficulties related to first return time statistics.
Some references suggest that for ergodic time series, the first return time statistics display an exponential decay, whereas this behavior does not generally apply to regular or quasi-periodic time series. However, I have observed that the Python code I implemented generates an exponential decay even for sin(t), which is a periodic function.
In light of this, I would greatly appreciate your insights on the general validity of the claim that first return time statistics exhibit exponential decay for ergodic time series but not for regular time series. Additionally, I would like to understand whether first return time statistics are an effective and sufficient method for analyzing the underlying dynamics of a time series. If so, I would be grateful for any suggestions regarding potential errors in my Python code (attached).
img1
img2
/r/pystats
https://redd.it/1heo3ef
Hi All,
I am currently working on a project focused on classifying chaotic and regular/quasi-periodic time series and am encountering some difficulties related to first return time statistics.
Some references suggest that for ergodic time series, the first return time statistics display an exponential decay, whereas this behavior does not generally apply to regular or quasi-periodic time series. However, I have observed that the Python code I implemented generates an exponential decay even for sin(t), which is a periodic function.
In light of this, I would greatly appreciate your insights on the general validity of the claim that first return time statistics exhibit exponential decay for ergodic time series but not for regular time series. Additionally, I would like to understand whether first return time statistics are an effective and sufficient method for analyzing the underlying dynamics of a time series. If so, I would be grateful for any suggestions regarding potential errors in my Python code (attached).
img1
img2
/r/pystats
https://redd.it/1heo3ef
This media is not supported in your browser
VIEW IN TELEGRAM
[P] I made wut – a CLI that explains your last command using a LLM
/r/MachineLearning
https://redd.it/1hew6wy
/r/MachineLearning
https://redd.it/1hew6wy
best django course request
Hi friends, I'm new to django and i want to boost my learning to finish it faster so would appreciate suggesting django course for me.
thanks i advance.
/r/django
https://redd.it/1hfblp9
Hi friends, I'm new to django and i want to boost my learning to finish it faster so would appreciate suggesting django course for me.
thanks i advance.
/r/django
https://redd.it/1hfblp9
Reddit
From the django community on Reddit
Explore this post and more from the django community
Flask with apache2 issues with routing.
I have a flask app running in a docker container open to port 5000 on my server. Apache2 is proxying port 5000 to myserver.com/myapp (not real). I have used url_for in all my templates however all the addresses it generates go to myserver.com/address instead of myserver.com/myapp/address how do I fix this?
/r/flask
https://redd.it/1hf9gze
I have a flask app running in a docker container open to port 5000 on my server. Apache2 is proxying port 5000 to myserver.com/myapp (not real). I have used url_for in all my templates however all the addresses it generates go to myserver.com/address instead of myserver.com/myapp/address how do I fix this?
/r/flask
https://redd.it/1hf9gze
Report of big data. Experience stories
Good day🙋
Is there someone who works on a project where there's big data involved, i mean big database ( we use postgresql) where in one table for example, there is a lot of entries and there is a need of generating a report of them. For us we have celery and redis doing the work. The best part, It is not blocking the application but we are not very satisfied with the generation part. For example in order to generate a report of 10000 identifications, it takes around 20min. I would like to hear other stories and experience of dealing with generation of big report with a lot of data.
/r/django
https://redd.it/1hey4ft
Good day🙋
Is there someone who works on a project where there's big data involved, i mean big database ( we use postgresql) where in one table for example, there is a lot of entries and there is a need of generating a report of them. For us we have celery and redis doing the work. The best part, It is not blocking the application but we are not very satisfied with the generation part. For example in order to generate a report of 10000 identifications, it takes around 20min. I would like to hear other stories and experience of dealing with generation of big report with a lot of data.
/r/django
https://redd.it/1hey4ft
Reddit
From the django community on Reddit
Explore this post and more from the django community
Monday Daily Thread: Project ideas!
# Weekly Thread: Project Ideas 💡
Welcome to our weekly Project Ideas thread! Whether you're a newbie looking for a first project or an expert seeking a new challenge, this is the place for you.
## How it Works:
1. **Suggest a Project**: Comment your project idea—be it beginner-friendly or advanced.
2. **Build & Share**: If you complete a project, reply to the original comment, share your experience, and attach your source code.
3. **Explore**: Looking for ideas? Check out Al Sweigart's ["The Big Book of Small Python Projects"](https://www.amazon.com/Big-Book-Small-Python-Programming/dp/1718501242) for inspiration.
## Guidelines:
* Clearly state the difficulty level.
* Provide a brief denoscription and, if possible, outline the tech stack.
* Feel free to link to tutorials or resources that might help.
# Example Submissions:
## Project Idea: Chatbot
**Difficulty**: Intermediate
**Tech Stack**: Python, NLP, Flask/FastAPI/Litestar
**Denoscription**: Create a chatbot that can answer FAQs for a website.
**Resources**: [Building a Chatbot with Python](https://www.youtube.com/watch?v=a37BL0stIuM)
# Project Idea: Weather Dashboard
**Difficulty**: Beginner
**Tech Stack**: HTML, CSS, JavaScript, API
**Denoscription**: Build a dashboard that displays real-time weather information using a weather API.
**Resources**: [Weather API Tutorial](https://www.youtube.com/watch?v=9P5MY_2i7K8)
## Project Idea: File Organizer
**Difficulty**: Beginner
**Tech Stack**: Python, File I/O
**Denoscription**: Create a noscript that organizes files in a directory into sub-folders based on file type.
**Resources**: [Automate the Boring Stuff: Organizing Files](https://automatetheboringstuff.com/2e/chapter9/)
Let's help each other grow. Happy
/r/Python
https://redd.it/1hf62db
# Weekly Thread: Project Ideas 💡
Welcome to our weekly Project Ideas thread! Whether you're a newbie looking for a first project or an expert seeking a new challenge, this is the place for you.
## How it Works:
1. **Suggest a Project**: Comment your project idea—be it beginner-friendly or advanced.
2. **Build & Share**: If you complete a project, reply to the original comment, share your experience, and attach your source code.
3. **Explore**: Looking for ideas? Check out Al Sweigart's ["The Big Book of Small Python Projects"](https://www.amazon.com/Big-Book-Small-Python-Programming/dp/1718501242) for inspiration.
## Guidelines:
* Clearly state the difficulty level.
* Provide a brief denoscription and, if possible, outline the tech stack.
* Feel free to link to tutorials or resources that might help.
# Example Submissions:
## Project Idea: Chatbot
**Difficulty**: Intermediate
**Tech Stack**: Python, NLP, Flask/FastAPI/Litestar
**Denoscription**: Create a chatbot that can answer FAQs for a website.
**Resources**: [Building a Chatbot with Python](https://www.youtube.com/watch?v=a37BL0stIuM)
# Project Idea: Weather Dashboard
**Difficulty**: Beginner
**Tech Stack**: HTML, CSS, JavaScript, API
**Denoscription**: Build a dashboard that displays real-time weather information using a weather API.
**Resources**: [Weather API Tutorial](https://www.youtube.com/watch?v=9P5MY_2i7K8)
## Project Idea: File Organizer
**Difficulty**: Beginner
**Tech Stack**: Python, File I/O
**Denoscription**: Create a noscript that organizes files in a directory into sub-folders based on file type.
**Resources**: [Automate the Boring Stuff: Organizing Files](https://automatetheboringstuff.com/2e/chapter9/)
Let's help each other grow. Happy
/r/Python
https://redd.it/1hf62db
YouTube
Build & Integrate your own custom chatbot to a website (Python & JavaScript)
In this fun project you learn how to build a custom chatbot in Python and then integrate this to a website using Flask and JavaScript.
Starter Files: https://github.com/patrickloeber/chatbot-deployment
Get my Free NumPy Handbook: https://www.python-engi…
Starter Files: https://github.com/patrickloeber/chatbot-deployment
Get my Free NumPy Handbook: https://www.python-engi…
1-Year Perplexity Pro Promo Code for Only $25 (Save $175!)
Get a 1-Year Perplexity Pro Promo Code for Only $25 (Save $175!)
Enhance your AI experience with top-tier models and tools at a fair price:
Advanced AI Models: Access GPT-4o, o1 & Llama 3.1 also utilize Claude 3.5 Sonnet, Claude 3.5 Haiku, and Grok-2.
Image Generation: Explore Flux.1, DALL-E 3, and Playground v3 Stable Diffusion XL
Available for users without an active Pro subnoscription, accessible globally.
Easy Purchase Process:
Join Our Community: Discord with 450 members.
Secure Payment: Use PayPal for your safety and buyer protection.
Instant Access: Receive your code via a straightforward promo link.
Why Choose Us?
Our track record speaks for itself.
Check our verified Verified Buyers + VIP Buyers and Customer Feedback 2, Feedback 3, Feedback 4, Feedback 5
I WILL SEND YOU THE PROMO CODE
/r/flask
https://redd.it/1hf9l81
Get a 1-Year Perplexity Pro Promo Code for Only $25 (Save $175!)
Enhance your AI experience with top-tier models and tools at a fair price:
Advanced AI Models: Access GPT-4o, o1 & Llama 3.1 also utilize Claude 3.5 Sonnet, Claude 3.5 Haiku, and Grok-2.
Image Generation: Explore Flux.1, DALL-E 3, and Playground v3 Stable Diffusion XL
Available for users without an active Pro subnoscription, accessible globally.
Easy Purchase Process:
Join Our Community: Discord with 450 members.
Secure Payment: Use PayPal for your safety and buyer protection.
Instant Access: Receive your code via a straightforward promo link.
Why Choose Us?
Our track record speaks for itself.
Check our verified Verified Buyers + VIP Buyers and Customer Feedback 2, Feedback 3, Feedback 4, Feedback 5
I WILL SEND YOU THE PROMO CODE
/r/flask
https://redd.it/1hf9l81
Discord
Join the GPT Code Shop™ Discord Server!
Welcome to GPT Code Shop! This server is your one-stop shop for Perplexity, LinkedIn & many other premium digital items. | 442 members