Old parameters being processed
In my app I have an HTML table showing values on one of my Flask app pages. The values are being stored in a simple list:
I want to be able to clear the table, but it seems very inconsistent; sometimes it will clear the values on the page, other times nothing happens, even though the list object is showing as empty in my logging/console output.
Possibly it's a caching thing in the browser, but is there anything I'm doing wrong here?
@app.route('/predictions/',methods=('GET', 'POST'))
def predictions():
if request.method == 'POST':
# This bit seems to work fine... calls a "predict" function and adds a row to the predictions table
if request.form'action' == 'predict':
home = request.form'home'
away = request.form'away'
/r/flask
https://redd.it/1eugz2t
In my app I have an HTML table showing values on one of my Flask app pages. The values are being stored in a simple list:
prediction_list=[]I want to be able to clear the table, but it seems very inconsistent; sometimes it will clear the values on the page, other times nothing happens, even though the list object is showing as empty in my logging/console output.
Possibly it's a caching thing in the browser, but is there anything I'm doing wrong here?
@app.route('/predictions/',methods=('GET', 'POST'))
def predictions():
if request.method == 'POST':
# This bit seems to work fine... calls a "predict" function and adds a row to the predictions table
if request.form'action' == 'predict':
home = request.form'home'
away = request.form'away'
/r/flask
https://redd.it/1eugz2t
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
[P] Updates on OpenCL backend for Pytorch
I develop [the OpenCL backend for pytorch](https://github.com/artyom-beilis/pytorch_dlprim) - it allows to train your networks on AMD, NVidia and Intel GPUs on both Windows and Linux. Unlike cuda/cudnn based solution - it is cross platform and fully open source.
Updates:
1. With an assistance from pytorch core developers now pytorch 2.4 is supported
2. Now it is easy to install it - I provide now prebuild packages for Linux and Windows - just install whl package and you are good to go
3. Lots of other improvements
How do you use it:
- Download whl file from project page according to operating system, python version and pytorch version
- Install CPU version of pytorch and install whl you downloaded, for example `pytorch_ocl-0.1.0+torch2.4-cp310-none-linux_x86_64.whl`
- Now just `import pytorch_ocl` and now you can train on OpenCL `ocl` devices: `torch.randn(10,10,dev='ocl:2')
How is the performance: while it isn't as good as native NVidia cuda or AMD rocm it still gives [reasonable performance](https://github.com/artyom-beilis/pytorch_dlprim/blob/master/benchmark.md) depending on platform, network - usually around 60-70% for training and 70-80% for inference.
/r/MachineLearning
https://redd.it/1euamk8
I develop [the OpenCL backend for pytorch](https://github.com/artyom-beilis/pytorch_dlprim) - it allows to train your networks on AMD, NVidia and Intel GPUs on both Windows and Linux. Unlike cuda/cudnn based solution - it is cross platform and fully open source.
Updates:
1. With an assistance from pytorch core developers now pytorch 2.4 is supported
2. Now it is easy to install it - I provide now prebuild packages for Linux and Windows - just install whl package and you are good to go
3. Lots of other improvements
How do you use it:
- Download whl file from project page according to operating system, python version and pytorch version
- Install CPU version of pytorch and install whl you downloaded, for example `pytorch_ocl-0.1.0+torch2.4-cp310-none-linux_x86_64.whl`
- Now just `import pytorch_ocl` and now you can train on OpenCL `ocl` devices: `torch.randn(10,10,dev='ocl:2')
How is the performance: while it isn't as good as native NVidia cuda or AMD rocm it still gives [reasonable performance](https://github.com/artyom-beilis/pytorch_dlprim/blob/master/benchmark.md) depending on platform, network - usually around 60-70% for training and 70-80% for inference.
/r/MachineLearning
https://redd.it/1euamk8
GitHub
GitHub - artyom-beilis/pytorch_dlprim: DLPrimitives/OpenCL out of tree backend for pytorch
DLPrimitives/OpenCL out of tree backend for pytorch - artyom-beilis/pytorch_dlprim
confession wall
Source code: https://github.com/IdanHajbeko/Confession-Wall
website: **https://unified-first-rooster.ngrok-free.app/**
What My Project Does
My Python application hosts a website where people can post confessions anonymously.
Target Audience
Anyone who wants to post confessions anonymously or learn about backend development with python
/r/flask
https://redd.it/1eu2fqu
Source code: https://github.com/IdanHajbeko/Confession-Wall
website: **https://unified-first-rooster.ngrok-free.app/**
What My Project Does
My Python application hosts a website where people can post confessions anonymously.
Target Audience
Anyone who wants to post confessions anonymously or learn about backend development with python
/r/flask
https://redd.it/1eu2fqu
GitHub
GitHub - IdanHajbeko/Confession-Wall: a place to Confess anonymously
a place to Confess anonymously. Contribute to IdanHajbeko/Confession-Wall development by creating an account on GitHub.
DjangoCon US: anyone looking to share hotel/airbnb?
I’m looking for a room share, either in a hotel or Airbnb, as there aren’t many feasible options available at the moment. I’ll be in town from September 21 until early morning on September 29.
Please let me know if you have space or any leads!
/r/django
https://redd.it/1euppvm
I’m looking for a room share, either in a hotel or Airbnb, as there aren’t many feasible options available at the moment. I’ll be in town from September 21 until early morning on September 29.
Please let me know if you have space or any leads!
/r/django
https://redd.it/1euppvm
Reddit
From the django community on Reddit
Explore this post and more from the django community
Pythonanywhere —> Azure?
I am testing a flask api, that’s exposed to the internet, on pythonanywhere.
If I need to move it to something that’s on “azure” (for enterprise reasons), may I ask what’s the right service, and that’s hopefully low cost, to use on Azure? Thank you!
/r/flask
https://redd.it/1eu56yr
I am testing a flask api, that’s exposed to the internet, on pythonanywhere.
If I need to move it to something that’s on “azure” (for enterprise reasons), may I ask what’s the right service, and that’s hopefully low cost, to use on Azure? Thank you!
/r/flask
https://redd.it/1eu56yr
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Multiple api at one vm
Hi I have azure vm with linux I want to create multiple APIs with flask and each api have his own venv with derren python version, can I do that ?
/r/flask
https://redd.it/1eu5048
Hi I have azure vm with linux I want to create multiple APIs with flask and each api have his own venv with derren python version, can I do that ?
/r/flask
https://redd.it/1eu5048
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Posting user uploads to Cloudflare Images
I'm working on an app, and (for the first time ever) I'm allowing users to upload image files to Cloudflare Images.
Is the best (and safest) option to:
1. add a file input on the front end (inside a form),
2. submit the form,
3. save the file locally in a temp folder,
4. post the file to Cloudflare Images with a Celery task,
5. and then delete the local file?
Is there a safe and secure way to do it from the front-end instead of having to do all the file saving/deleting on every request?
/r/django
https://redd.it/1eupm7f
I'm working on an app, and (for the first time ever) I'm allowing users to upload image files to Cloudflare Images.
Is the best (and safest) option to:
1. add a file input on the front end (inside a form),
2. submit the form,
3. save the file locally in a temp folder,
4. post the file to Cloudflare Images with a Celery task,
5. and then delete the local file?
Is there a safe and secure way to do it from the front-end instead of having to do all the file saving/deleting on every request?
/r/django
https://redd.it/1eupm7f
Reddit
From the django community on Reddit
Explore this post and more from the django community
applying for job
I've been working as a Django developer for a year, and I'm considering applying for a new position elsewhere. However, I'm not sure if there are any specific things I should learn or know by now. What skills and knowledge should I have at this point, and what kind of interview questions can I expect with my level of experience?
/r/django
https://redd.it/1ev1347
I've been working as a Django developer for a year, and I'm considering applying for a new position elsewhere. However, I'm not sure if there are any specific things I should learn or know by now. What skills and knowledge should I have at this point, and what kind of interview questions can I expect with my level of experience?
/r/django
https://redd.it/1ev1347
Reddit
From the django community on Reddit
Explore this post and more from the django community
D Self-Promotion Thread
Please post your personal projects, startups, product placements, collaboration needs, blogs etc.
Please mention the payment and pricing requirements for products and services.
Please do not post link shorteners, link aggregator websites , or auto-subscribe links.
--
Any abuse of trust will lead to bans.
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 title.
--
Meta: This is an experiment. If the community doesnt like this, we will cancel it. This is to encourage those in the community to promote their work by not spamming the main threads.
/r/MachineLearning
https://redd.it/1euyfi6
Please post your personal projects, startups, product placements, collaboration needs, blogs etc.
Please mention the payment and pricing requirements for products and services.
Please do not post link shorteners, link aggregator websites , or auto-subscribe links.
--
Any abuse of trust will lead to bans.
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 title.
--
Meta: This is an experiment. If the community doesnt like this, we will cancel it. This is to encourage those in the community to promote their work by not spamming the main threads.
/r/MachineLearning
https://redd.it/1euyfi6
Reddit
From the MachineLearning community on Reddit
Explore this post and more from the MachineLearning community
How do I make my application interactive while being able to bundle my JavaScript
So far my Django app was just basic CRUD but now my front end displays a form and the form has a table. With a button I can delete rows and add rows. This might sound simple but I’m horribly lost. I want to use the JavaScript to populate the form, even when the template is populated by Django. But now how to I pass values from Django to the front end so my JavaScript can use it. Do I have to check if a variable is set in local storage or something?
/r/django
https://redd.it/1euzrsy
So far my Django app was just basic CRUD but now my front end displays a form and the form has a table. With a button I can delete rows and add rows. This might sound simple but I’m horribly lost. I want to use the JavaScript to populate the form, even when the template is populated by Django. But now how to I pass values from Django to the front end so my JavaScript can use it. Do I have to check if a variable is set in local storage or something?
/r/django
https://redd.it/1euzrsy
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 script 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/1euvt6o
# 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 script 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/1euvt6o
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Any good tutorials on Django channels ?
Can anybody tell me or suggest any tutorials or methods that you used to study django channels
/r/djangolearning
https://redd.it/1evam2q
Can anybody tell me or suggest any tutorials or methods that you used to study django channels
/r/djangolearning
https://redd.it/1evam2q
Reddit
From the djangolearning community on Reddit
Explore this post and more from the djangolearning community
Hype About .NET
Microsoft puts in their landing page that .NET-based web servers can handle 7 million requests making it the fastest web server out there. What is your opinion on this? Personally, I'm attracted towards it, however the development experience is pure shit compared to Python (not talking about writing actual program, but about setting up environments, hot reloading, memory consumption etc.).
Why Django is underperforming except for the reason that Python is an interpreted language? Can me make it match the speed of .NET?
PS: Django is the best framework out there that provides the right balance between abstraction and ease-of-use and its my most favorite framework.
/r/django
https://redd.it/1ev7kux
Microsoft puts in their landing page that .NET-based web servers can handle 7 million requests making it the fastest web server out there. What is your opinion on this? Personally, I'm attracted towards it, however the development experience is pure shit compared to Python (not talking about writing actual program, but about setting up environments, hot reloading, memory consumption etc.).
Why Django is underperforming except for the reason that Python is an interpreted language? Can me make it match the speed of .NET?
PS: Django is the best framework out there that provides the right balance between abstraction and ease-of-use and its my most favorite framework.
/r/django
https://redd.it/1ev7kux
Reddit
From the django community on Reddit
Explore this post and more from the django community
I made a Spotify Genre Tracker with the goal of broadening my music taste.
# What My Project Does
Recently I've noticed that I spend way too much time listening to the same playlists/genres over and over again so with the goal of expanding my music knowledge I've decided to make this program that keeps track of the listening time for all the genres in Spotify.
It works by having two threads, one for the cli and user input and another that constantly pings the Spotify API for the currently playing song and keeps track of the listening time in an sqlite database.
# Target Audience
This project is meant for anyone that has a hard time finding new music genres to listen to. It is by no means production ready but if I see people enjoy it I might setup a website for it and make it public.
# Comparison
As far as I'm aware there aren't any projects like this one. The one's available out there keep track of all your stats but none give you a set goal or have the option to track the listening time for a given genre.
Any comments/recommendations are welcome. Hope it helps someone learn more about music!
Here's the repo for anyone that wants to check it
/r/Python
[https://redd.it/1evbgzb
# What My Project Does
Recently I've noticed that I spend way too much time listening to the same playlists/genres over and over again so with the goal of expanding my music knowledge I've decided to make this program that keeps track of the listening time for all the genres in Spotify.
It works by having two threads, one for the cli and user input and another that constantly pings the Spotify API for the currently playing song and keeps track of the listening time in an sqlite database.
# Target Audience
This project is meant for anyone that has a hard time finding new music genres to listen to. It is by no means production ready but if I see people enjoy it I might setup a website for it and make it public.
# Comparison
As far as I'm aware there aren't any projects like this one. The one's available out there keep track of all your stats but none give you a set goal or have the option to track the listening time for a given genre.
Any comments/recommendations are welcome. Hope it helps someone learn more about music!
Here's the repo for anyone that wants to check it
/r/Python
[https://redd.it/1evbgzb
Reddit
From the Python community on Reddit: I made a Spotify Genre Tracker with the goal of broadening my music taste.
Explore this post and more from the Python community
Local to Live Question
I'm considering starting a bigger project than I'm used to. I've flipped through a lot of tutorials but haven't found a solid answer to a question I have.
Most of my projects have just been php and sql based. I just have the files on a webhost and it's live.
Can I do that with Django? It seems like a way different process to go live with Django. I was considering starting with a Django boilerplate.
/r/django
https://redd.it/1evd7gh
I'm considering starting a bigger project than I'm used to. I've flipped through a lot of tutorials but haven't found a solid answer to a question I have.
Most of my projects have just been php and sql based. I just have the files on a webhost and it's live.
Can I do that with Django? It seems like a way different process to go live with Django. I was considering starting with a Django boilerplate.
/r/django
https://redd.it/1evd7gh
Reddit
From the django community on Reddit
Explore this post and more from the django community
Django project links.
I’ve been doing django for couple of weeks. Gained basic knowledge now I want to test it and learn advance concepts by doing and tinkering. Can you guys please provide me some git repo based on django projects?Tnx…
/r/django
https://redd.it/1evp5mh
I’ve been doing django for couple of weeks. Gained basic knowledge now I want to test it and learn advance concepts by doing and tinkering. Can you guys please provide me some git repo based on django projects?Tnx…
/r/django
https://redd.it/1evp5mh
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 description 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
**Description**: 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
**Description**: 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
**Description**: Create a script 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/1evnvtp
# 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 description 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
**Description**: 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
**Description**: 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
**Description**: Create a script 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/1evnvtp
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…
Checks before deploying an app
I know of CSRF for forms and debug set to false and allowed hosts to my domain name. is there anything more? specially security wise.
/r/django
https://redd.it/1ev6xf1
I know of CSRF for forms and debug set to false and allowed hosts to my domain name. is there anything more? specially security wise.
/r/django
https://redd.it/1ev6xf1
Reddit
[deleted by user] : r/django
144K subscribers in the django community. News and links for Django developers.
Pro tips for matplotlib figures to really feel right in LaTeX publications
I wrote up some tips that I think will help academics, or anybody else who happens to use matplotlib to make figures that end up in LaTeX documents. A long time ago I was a layout/typography nerd, so I've been trained to be anal, hence the tips below!
https://duetosymmetry.com/code/latex-mpl-fig-tips/
/r/Python
https://redd.it/1evp7ip
I wrote up some tips that I think will help academics, or anybody else who happens to use matplotlib to make figures that end up in LaTeX documents. A long time ago I was a layout/typography nerd, so I've been trained to be anal, hence the tips below!
https://duetosymmetry.com/code/latex-mpl-fig-tips/
/r/Python
https://redd.it/1evp7ip
Leo C. Stein
Fonts/sizes in matplotlib figures for LaTeX publications
Here are a few tips for making yourmatplotlib figures look really “right” in aLaTeX publication.
I Created the Definitive AUTOMATIC Shiny Hunter for Pokémon BDSP in Python
What My Project Does: Hey everyone! I am Dinones! I coded a Python program using object detection that lets my computer hunt for shiny Pokémon on my physical Nintendo Switch while I sleep. So far, I’ve automatically caught shiny Pokémon like Giratina, Dialga or Azelf, Rotom, Drifloon, all three starters, and more in Pokémon BDSP. Curious to see how it works? Check it out! The program is available for everyone! Obviously, for free; I'm just a student who likes to program this stuff in his free time :)
The games run on a Nintendo Switch (not emulated, a real one). The program gets the output images using a capture card, then, it process them to detect whether the pokemon is shiny or not (OpenCV). Finally, it emulates the joycons using bluetooth (NXBT) and control the Nintendo.
I also want to know what do you think about it: Is it fair to use it in singleplayer? And multiplayer?
Target Audience: All Pokémon BDSP gamers.
Comparison: As far as I know, nobody did this before.
📽️ Youtube: https://www.youtube.com/watch?v=84czUOAvNyk
🤖 Github: https://github.com/Dinones/Nintendo-Switch-Pokemon-Shiny-Hunter
/r/Python
https://redd.it/1evng2g
What My Project Does: Hey everyone! I am Dinones! I coded a Python program using object detection that lets my computer hunt for shiny Pokémon on my physical Nintendo Switch while I sleep. So far, I’ve automatically caught shiny Pokémon like Giratina, Dialga or Azelf, Rotom, Drifloon, all three starters, and more in Pokémon BDSP. Curious to see how it works? Check it out! The program is available for everyone! Obviously, for free; I'm just a student who likes to program this stuff in his free time :)
The games run on a Nintendo Switch (not emulated, a real one). The program gets the output images using a capture card, then, it process them to detect whether the pokemon is shiny or not (OpenCV). Finally, it emulates the joycons using bluetooth (NXBT) and control the Nintendo.
I also want to know what do you think about it: Is it fair to use it in singleplayer? And multiplayer?
Target Audience: All Pokémon BDSP gamers.
Comparison: As far as I know, nobody did this before.
📽️ Youtube: https://www.youtube.com/watch?v=84czUOAvNyk
🤖 Github: https://github.com/Dinones/Nintendo-Switch-Pokemon-Shiny-Hunter
/r/Python
https://redd.it/1evng2g
YouTube
I Created the Definitive AUTOMATIC Shiny Hunter for Pokémon BDSP
I made your dream of catching shiny pokémon while sleeping real. It works on a physical Nintendo Switch, not an emulator. Be the coolest of your friends with all those shinies in BDSP.
🤖 Github Link: https://github.com/Dinones/Nintendo-Switch-Pokemon-Shiny…
🤖 Github Link: https://github.com/Dinones/Nintendo-Switch-Pokemon-Shiny…