🌈 I created a modern Python logging utility: Tamga
What My Project Does
Tamga is a Python logging package that provides colorful console output and supports multiple logging formats (file, JSON, MongoDB, etc.). It makes Python logging more visually appealing and easier to use.
Target Audience
I originally created this for my FlaskBlog project and kept reusing it in other projects. After copying the code multiple times, I decided to turn it into a package. Anyone who wants prettier and more flexible logging in their Python projects might find it useful.
Comparison
While there are many logging solutions available, Tamga offers colorful output using Tailwind CSS colors and combines multiple features like MongoDB support, email notifications, and file rotation in a simple package.
Quick example:
from tamga import Tamga
logger = Tamga()
logger.info("This is an info message")
logger.warning("This is a warning")
logger.success("This is a success message")
https://github.com/dogukanurker/tamga
/r/Python
https://redd.it/1i5uncl
What My Project Does
Tamga is a Python logging package that provides colorful console output and supports multiple logging formats (file, JSON, MongoDB, etc.). It makes Python logging more visually appealing and easier to use.
Target Audience
I originally created this for my FlaskBlog project and kept reusing it in other projects. After copying the code multiple times, I decided to turn it into a package. Anyone who wants prettier and more flexible logging in their Python projects might find it useful.
Comparison
While there are many logging solutions available, Tamga offers colorful output using Tailwind CSS colors and combines multiple features like MongoDB support, email notifications, and file rotation in a simple package.
Quick example:
from tamga import Tamga
logger = Tamga()
logger.info("This is an info message")
logger.warning("This is a warning")
logger.success("This is a success message")
https://github.com/dogukanurker/tamga
/r/Python
https://redd.it/1i5uncl
GitHub
GitHub - DogukanUrker/flaskBlog: Simple blog app.
Simple blog app. . Contribute to DogukanUrker/flaskBlog development by creating an account on GitHub.
Python Fixed-Point Converter
Hey everyone, [PyFi](https://github.com/CesarPiresSevero/pyfi) is a library that helps converting fixed-point to floating-point and vice-versa.
* What My Project Does: Converts floating and fixed-point implementations
* Target Audience: Algorithm developers
* Comparison: Simpler solution with only one class and method
It can be very hand for someone doing fixed-point algorithm implementations. Here is an example:
>PYTHON FIXED POINT CONVERTER
>Configuration:
-Type of conversion: Floating to fixed point
-Signedness: Signed
-Total bits: 32
-Fractional bits: 31
>WARNING: 1.0 can not be represented, 0.99999999977 will be used instead ( index: 0 )
>Converted values:
>-Dec (Input): 0.99999999977,-0.50000000000
>-Hex (Output): 0x7fffffff,0xc0000000
>-Bin (Output): 0b01111111111111111111111111111111,0b1100000000000000000000000000000
/r/Python
https://redd.it/1i6qeh7
Hey everyone, [PyFi](https://github.com/CesarPiresSevero/pyfi) is a library that helps converting fixed-point to floating-point and vice-versa.
* What My Project Does: Converts floating and fixed-point implementations
* Target Audience: Algorithm developers
* Comparison: Simpler solution with only one class and method
It can be very hand for someone doing fixed-point algorithm implementations. Here is an example:
>PYTHON FIXED POINT CONVERTER
>Configuration:
-Type of conversion: Floating to fixed point
-Signedness: Signed
-Total bits: 32
-Fractional bits: 31
>WARNING: 1.0 can not be represented, 0.99999999977 will be used instead ( index: 0 )
>Converted values:
>-Dec (Input): 0.99999999977,-0.50000000000
>-Hex (Output): 0x7fffffff,0xc0000000
>-Bin (Output): 0b01111111111111111111111111111111,0b1100000000000000000000000000000
/r/Python
https://redd.it/1i6qeh7
GitHub
GitHub - CesarPiresSevero/pyfi: Python Fixed Point package to convert floating point to/from fixed point
Python Fixed Point package to convert floating point to/from fixed point - CesarPiresSevero/pyfi
Docker + Django: Containerize the Right Way with Nginx, Postgresql & Gunicorn
https://youtu.be/1v3lqIITRJA
/r/django
https://redd.it/1i6tkok
https://youtu.be/1v3lqIITRJA
/r/django
https://redd.it/1i6tkok
YouTube
Docker + Django: Containerize the Right Way with Nginx, Postgresql & Gunicorn
Learn how to deploy Django with Docker the right way! Say goodbye to common mistakes like using runserver for production or broken static files. This tutorial covers:
- Setting up Gunicorn for optimal traffic handling
- Fixing Django admin and static files…
- Setting up Gunicorn for optimal traffic handling
- Fixing Django admin and static files…
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/1i6xdhu
# 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/1i6xdhu
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
I don’t understand models
Hello, I’m new to Django and am kinda struggling with understanding models and their structure. If anyone could provide information that would be appreciated.
/r/djangolearning
https://redd.it/1i4yull
Hello, I’m new to Django and am kinda struggling with understanding models and their structure. If anyone could provide information that would be appreciated.
/r/djangolearning
https://redd.it/1i4yull
Reddit
From the djangolearning community on Reddit
Explore this post and more from the djangolearning community
Where is the community?
I’m learning Python and Flask as I’ll need it for a job I’m starting soon. Previously I’ve been involved with the iOS development community and there’s a pretty big community on X (Twitter). Is there a similar community for Flask/Python on X? Is it here on Reddit? What’s the best way to get involved?
/r/flask
https://redd.it/1i6saf4
I’m learning Python and Flask as I’ll need it for a job I’m starting soon. Previously I’ve been involved with the iOS development community and there’s a pretty big community on X (Twitter). Is there a similar community for Flask/Python on X? Is it here on Reddit? What’s the best way to get involved?
/r/flask
https://redd.it/1i6saf4
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
PhotoshopAPI - bulk read/write PSD files without Photoshop App
Here's some more info about this project: https://github.com/EmilDohne/PhotoshopAPI
What my Project does
PhotoshopAPI is a C++20 Library with Python bindings for reading and writing of Photoshop Files (*.psd and *.psb) based on previous works from psd_sdk, pytoshop and psd-tools. As well as the official Photoshop File Format Specification, where applicable. The library is continuously tested for correctness in its core functionality. If you do find a bug please submit an issue to the github page.
The motivation to create another library despite all the other works present is that there isn't a library which has layer editing as a first class citizen while also supporting all bit-depths known to Photoshop (8-bits, 16-bits, 32-bits). This Library aims to create an abstraction between the raw binary file format and the structure that the user interfaces against to provide a more intuitive approach to the editing of Photoshop Files.
COMPARISON
Photoshop itself is unfortunately often slow to read/write files and the built-in tools for automatically/programmatically modifying files suffer this same issue. On top of this, due to the extensive history of the Photoshop File Format, Photoshop files written out by Photoshop itself are often unnecessarily bloated to add backwards compatibility or cross-software compatibility.
The PhotoshopAPI tries to address these
/r/Python
https://redd.it/1i6t9l7
Here's some more info about this project: https://github.com/EmilDohne/PhotoshopAPI
What my Project does
PhotoshopAPI is a C++20 Library with Python bindings for reading and writing of Photoshop Files (*.psd and *.psb) based on previous works from psd_sdk, pytoshop and psd-tools. As well as the official Photoshop File Format Specification, where applicable. The library is continuously tested for correctness in its core functionality. If you do find a bug please submit an issue to the github page.
The motivation to create another library despite all the other works present is that there isn't a library which has layer editing as a first class citizen while also supporting all bit-depths known to Photoshop (8-bits, 16-bits, 32-bits). This Library aims to create an abstraction between the raw binary file format and the structure that the user interfaces against to provide a more intuitive approach to the editing of Photoshop Files.
COMPARISON
Photoshop itself is unfortunately often slow to read/write files and the built-in tools for automatically/programmatically modifying files suffer this same issue. On top of this, due to the extensive history of the Photoshop File Format, Photoshop files written out by Photoshop itself are often unnecessarily bloated to add backwards compatibility or cross-software compatibility.
The PhotoshopAPI tries to address these
/r/Python
https://redd.it/1i6t9l7
GitHub
GitHub - EmilDohne/PhotoshopAPI: A modern and performant C++20 read/write parser of Photoshop Files (*.psd and *.psb) with fully…
A modern and performant C++20 read/write parser of Photoshop Files (*.psd and *.psb) with fully fledged Python bindings hosted on PyPi - EmilDohne/PhotoshopAPI
D: A 3blue1brown Video that Explains Attention Mechanism in Detail
- YouTube video
- subtitle
# Timestamps
02:21 : token embedding
02:33 : in the embedding space \
there are multiple distinct directions for a word \
encoding the multiple distinct meanings for the word.
02:40 : a well-trained attention block \
calculates what you need to add to the generic embedding \
to move it to one of these specific directions, \
as a function of the context. \
07:55 : Conceptually think of the Ks as potentially answering the Qs.
11:22 : ( did not understand )
/r/MachineLearning
https://redd.it/1i6zh6p
- YouTube video
- subtitle
# Timestamps
02:21 : token embedding
02:33 : in the embedding space \
there are multiple distinct directions for a word \
encoding the multiple distinct meanings for the word.
02:40 : a well-trained attention block \
calculates what you need to add to the generic embedding \
to move it to one of these specific directions, \
as a function of the context. \
07:55 : Conceptually think of the Ks as potentially answering the Qs.
11:22 : ( did not understand )
/r/MachineLearning
https://redd.it/1i6zh6p
YouTube
Attention in transformers, step-by-step | Deep Learning Chapter 6
Demystifying attention, the key mechanism inside transformers and LLMs.
Instead of sponsored ad reads, these lessons are funded directly by viewers: https://3b1b.co/support
Special thanks to these supporters: https://www.3blue1brown.com/lessons/attention#thanks…
Instead of sponsored ad reads, these lessons are funded directly by viewers: https://3b1b.co/support
Special thanks to these supporters: https://www.3blue1brown.com/lessons/attention#thanks…
Can you share tutorials on django channels?
Hi I am building a app which creates a chat room in a local network for sending messages and files. This is my semester's final project and I thought how hard could it be. I knew how to use python sockets to make this work and thought how hard could it be to integrate it with django. I bit off way more than I could chew.
All I want it that the page updates it real time to display message. From what I read online I have to use websockets and channels to accomplish this, but I have no idea how any of this works. I have seen tutorials online and they all are too complicated and I am overwhelmed. Is there another way around this. All I want is to establish a connection between sockets and django channels. Please help
/r/djangolearning
https://redd.it/1i4ylfu
Hi I am building a app which creates a chat room in a local network for sending messages and files. This is my semester's final project and I thought how hard could it be. I knew how to use python sockets to make this work and thought how hard could it be to integrate it with django. I bit off way more than I could chew.
All I want it that the page updates it real time to display message. From what I read online I have to use websockets and channels to accomplish this, but I have no idea how any of this works. I have seen tutorials online and they all are too complicated and I am overwhelmed. Is there another way around this. All I want is to establish a connection between sockets and django channels. Please help
/r/djangolearning
https://redd.it/1i4ylfu
Reddit
From the djangolearning community on Reddit
Explore this post and more from the djangolearning community
Integrating Node-RED and Django for Easy Smart Applications Development
Hi Redditors! 👋
I’m excited to share my latest project:
**Node-RED - Django Integration**, which aims to combine **Node-RED**, a fantastic tool for visually building flows, with **Django**, one of the most popular frameworks for web application development.
# What Makes This Project Unique?
In Node-RED, you cannot control user access permissions.
* For example, if you want one user to view a device's readings but not modify them, while another user can both view and edit the device's readings, this is impossible in Node-RED.
* In Django, advanced permission handling is possible.
* You can define specific permissions for each device, allowing precise control over who can view or modify data.
* However, in Django, it is challenging to connect and manage multiple devices or control the flow of data.
* Unlike Node-RED, Django is not designed for creating seamless data flows or automation
Why This Project?
I wanted to explore the possibility of simplifying the development of smart applications using flexible and accessible tools. The goal is to empower developers to create fast, efficient applications by leveraging the strengths of both Node-RED and Django.
[link of project](https://github.com/taha2samy/node_red_-_django-quack_quack-)
# Examples from the Project:)
https://preview.redd.it/ynvvutm1tiee1.png?width=853&format=png&auto=webp&s=b9da984a3aaf91d7bf79bd98faabb32484c8a7b0
#
https://preview.redd.it/sngy1fm3tiee1.png?width=427&format=png&auto=webp&s=f07bbca6a3e38c121d926de806035a7925e12715
https://preview.redd.it/ht9s5ki5tiee1.png?width=1383&format=png&auto=webp&s=a8237be3ff909b68d0a02eec671ce168e6c0ffe7
/r/django
https://redd.it/1i77ztn
Hi Redditors! 👋
I’m excited to share my latest project:
**Node-RED - Django Integration**, which aims to combine **Node-RED**, a fantastic tool for visually building flows, with **Django**, one of the most popular frameworks for web application development.
# What Makes This Project Unique?
In Node-RED, you cannot control user access permissions.
* For example, if you want one user to view a device's readings but not modify them, while another user can both view and edit the device's readings, this is impossible in Node-RED.
* In Django, advanced permission handling is possible.
* You can define specific permissions for each device, allowing precise control over who can view or modify data.
* However, in Django, it is challenging to connect and manage multiple devices or control the flow of data.
* Unlike Node-RED, Django is not designed for creating seamless data flows or automation
Why This Project?
I wanted to explore the possibility of simplifying the development of smart applications using flexible and accessible tools. The goal is to empower developers to create fast, efficient applications by leveraging the strengths of both Node-RED and Django.
[link of project](https://github.com/taha2samy/node_red_-_django-quack_quack-)
# Examples from the Project:)
https://preview.redd.it/ynvvutm1tiee1.png?width=853&format=png&auto=webp&s=b9da984a3aaf91d7bf79bd98faabb32484c8a7b0
#
https://preview.redd.it/sngy1fm3tiee1.png?width=427&format=png&auto=webp&s=f07bbca6a3e38c121d926de806035a7925e12715
https://preview.redd.it/ht9s5ki5tiee1.png?width=1383&format=png&auto=webp&s=a8237be3ff909b68d0a02eec671ce168e6c0ffe7
/r/django
https://redd.it/1i77ztn
GitHub
GitHub - taha2samy/node_red_-_django-quack_quack-: An integrated system combining Django and Node-RED for flexible device management…
An integrated system combining Django and Node-RED for flexible device management, offering fine-grained access control, event logging, and high security, designed for scalability and customization...
Hello dear friends, I use Django 5 and I have problem
*\*\** $ python [manage.py](http://manage.py) runserver
Watching for file changes with StatReloader Performing system checks... System check identified no issues (0 silenced). Error: You don't have permission to access that port. (venv) *\*\**
How I can solve it ?
/r/django
https://redd.it/1i7bo7h
*\*\** $ python [manage.py](http://manage.py) runserver
Watching for file changes with StatReloader Performing system checks... System check identified no issues (0 silenced). Error: You don't have permission to access that port. (venv) *\*\**
How I can solve it ?
/r/django
https://redd.it/1i7bo7h
Reddit
From the django community on Reddit
Explore this post and more from the django community
I am using flask for Google sign-in with fedcm but getting following errors...
/r/flask
https://redd.it/1i7dbdq
/r/flask
https://redd.it/1i7dbdq
Hardening my Django server
I've had a Django app running on a Digital Ocean droplet for several years without issue. Lately it would run out of memory on complex queries. The CPU was also hitting high levels. I decided to move to a Hetzner VM - 4 times the CPU and 4 times the memory for about the same price. Having updated all the software dependencies and dome lots of testing I finally migrated to the new server on Sunday. On Tuesday, by coincidence, I got a notification from Digital Ocean Security saying that they had received a report that my old DO server was making unauthorized connection attempts on a remote third-party server via SSH. As I now no longer needed that server, I responded by destroying it. (I don't have the time and expertise to analyse exactly what was going on.
Of course, I want to avoid such an issue recurring on the new server. So my question is: What measures beyond the standard Django deployment checklist (which I had followed) do you recommend for your Django servers? I'm using Nginx and Gunicorn on an ARM platform. I'm thinking of libraries like fail2ban, maybe a Web Application Firewall, scanners for malicious code
/r/django
https://redd.it/1i7br7c
I've had a Django app running on a Digital Ocean droplet for several years without issue. Lately it would run out of memory on complex queries. The CPU was also hitting high levels. I decided to move to a Hetzner VM - 4 times the CPU and 4 times the memory for about the same price. Having updated all the software dependencies and dome lots of testing I finally migrated to the new server on Sunday. On Tuesday, by coincidence, I got a notification from Digital Ocean Security saying that they had received a report that my old DO server was making unauthorized connection attempts on a remote third-party server via SSH. As I now no longer needed that server, I responded by destroying it. (I don't have the time and expertise to analyse exactly what was going on.
Of course, I want to avoid such an issue recurring on the new server. So my question is: What measures beyond the standard Django deployment checklist (which I had followed) do you recommend for your Django servers? I'm using Nginx and Gunicorn on an ARM platform. I'm thinking of libraries like fail2ban, maybe a Web Application Firewall, scanners for malicious code
/r/django
https://redd.it/1i7br7c
Reddit
From the django community on Reddit
Explore this post and more from the django community
TIL:
More details here: https://pythonspeed.com/articles/faster-pip-installs/
/r/Python
https://redd.it/1i7jz7c
uv pip install doesn't compile bytecode installationuv pip install is way faster than pip install, but today I learned that is not a completely fair comparison out of the box. By default, pip will compile .py files to .pyc as part of installation, and uv will not. That being said, uv is still faster even once you enable bytecode compilation (and you might want to if you're e.g. building a Docker image), but it's not as fast.More details here: https://pythonspeed.com/articles/faster-pip-installs/
/r/Python
https://redd.it/1i7jz7c
Python⇒Speed
Faster pip installs: caching, bytecode compilation, and uv
Installing packages with pip can be slow. Learn some ways to speed it up.
Setting Up Django for Success
Hello everyone,
I wrote a getting started guide I wish I had myself when I got started with Django around 8 years ago. It goes from setting up a virtual environment using `uv` to having a server side rendered front-end application hydrated using Vue. I tried to write it in such a way that you could achieve the same by using React/Svelte instead of Vue by only changing the Vite template. It contains a short piece of Django Rest Framework to demonstrate persistence via an authenticated API.
It's a collection of ideas that worked for me and others in the Django community. Some from books such as Two Scoops of Django. Others from resources such as LearnDjango.com or DjangoCon US talks. Of course duly credited where mentioned.
https://jilles.me/setting-up-django-for-success/
Hopefully there is something useful in there for everyone. I think it's a nice middle-ground between a completely empty Django project and a fully fledged django-cookiecutter.
/r/django
https://redd.it/1i7ekq1
Hello everyone,
I wrote a getting started guide I wish I had myself when I got started with Django around 8 years ago. It goes from setting up a virtual environment using `uv` to having a server side rendered front-end application hydrated using Vue. I tried to write it in such a way that you could achieve the same by using React/Svelte instead of Vue by only changing the Vite template. It contains a short piece of Django Rest Framework to demonstrate persistence via an authenticated API.
It's a collection of ideas that worked for me and others in the Django community. Some from books such as Two Scoops of Django. Others from resources such as LearnDjango.com or DjangoCon US talks. Of course duly credited where mentioned.
https://jilles.me/setting-up-django-for-success/
Hopefully there is something useful in there for everyone. I think it's a nice middle-ground between a completely empty Django project and a fully fledged django-cookiecutter.
/r/django
https://redd.it/1i7ekq1
Learndjango
Home
LearnDjango is a platform for learning Django, a popular Python web framework for building web
applications. It offers tutorials and courses to help you master your craft and boost your
career.
applications. It offers tutorials and courses to help you master your craft and boost your
career.
Unable to create virtual environment
I just started learning Flask and want to create a virtual environment within VSCode. I did install the virtualenv package using pip
pip install virtualenv
But when I enter the prompt "virtualenv env" to create a directory, I get a file not found error saying that "system cannot find file specified".
Why am I getting this error and how can I fix this?
/r/flask
https://redd.it/1i7imed
I just started learning Flask and want to create a virtual environment within VSCode. I did install the virtualenv package using pip
pip install virtualenv
But when I enter the prompt "virtualenv env" to create a directory, I get a file not found error saying that "system cannot find file specified".
Why am I getting this error and how can I fix this?
/r/flask
https://redd.it/1i7imed
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Best practice for allowing access to users without an account
I need to provide access to users who don't have an account on the site, and I want it to be properly routed. We manage condo associations, and want to let tenants report problems. Owners are no problem, they already have a website account to pay condo fees etc. But tenants don't. Is there a better way to do it than just giving them a url with a long UUID (ie domain.com/request/\[UUID\](http://domain.com/request/UUID) or similar) where the UUID would be tied to a particular unit so we could share it with the appropriate condo board?
/r/django
https://redd.it/1i7pxeo
I need to provide access to users who don't have an account on the site, and I want it to be properly routed. We manage condo associations, and want to let tenants report problems. Owners are no problem, they already have a website account to pay condo fees etc. But tenants don't. Is there a better way to do it than just giving them a url with a long UUID (ie domain.com/request/\[UUID\](http://domain.com/request/UUID) or similar) where the UUID would be tied to a particular unit so we could share it with the appropriate condo board?
/r/django
https://redd.it/1i7pxeo
D Comment on CVPR reviews and ICLR decisions.
Hey everyone,
We all know how reviews and decisions can be controversial, and I’m sure many of you are feeling disappointed with the results (My rating from CVPR is all 2 😅). But remember, it’s not the end of the world!
Rejection doesn’t mean you’re at fault—it’s often just bad luck (though, of course, we should always strive to improve our work).
Take a break—grab some chicken and beers, get a good night’s sleep, and gear up to submit your work to another venue. You’ve got this! 💪
/r/MachineLearning
https://redd.it/1i7nvix
Hey everyone,
We all know how reviews and decisions can be controversial, and I’m sure many of you are feeling disappointed with the results (My rating from CVPR is all 2 😅). But remember, it’s not the end of the world!
Rejection doesn’t mean you’re at fault—it’s often just bad luck (though, of course, we should always strive to improve our work).
Take a break—grab some chicken and beers, get a good night’s sleep, and gear up to submit your work to another venue. You’ve got this! 💪
/r/MachineLearning
https://redd.it/1i7nvix
Reddit
From the MachineLearning community on Reddit
Explore this post and more from the MachineLearning community
Jypter Tries Opening in Photoshop instead of Browser
I am taking a Python class at my college, and as part of the class, we installed Anaconda and the Jypter Notebook to write our code in. Whenever I try to open Jypter Notebook, it opens up Photoshop on my laptop.
The TA for my class had me uninstall Photoshop, and it got Jypter Notebook to run. However, I need to keep Photoshop on my laptop for my internship, so I would prefer not to have to uninstall and re-install it.
Do y'all know a potential work around for this?
I appreciate any advice, thank you all.
Edit:
I just realized that i misspelled Juypter, my bad
/r/IPython
https://redd.it/1i7plj8
I am taking a Python class at my college, and as part of the class, we installed Anaconda and the Jypter Notebook to write our code in. Whenever I try to open Jypter Notebook, it opens up Photoshop on my laptop.
The TA for my class had me uninstall Photoshop, and it got Jypter Notebook to run. However, I need to keep Photoshop on my laptop for my internship, so I would prefer not to have to uninstall and re-install it.
Do y'all know a potential work around for this?
I appreciate any advice, thank you all.
Edit:
I just realized that i misspelled Juypter, my bad
/r/IPython
https://redd.it/1i7plj8
Reddit
From the IPython community on Reddit
Explore this post and more from the IPython community
Thursday Daily Thread: Python Careers, Courses, and Furthering Education!
# Weekly Thread: Professional Use, Jobs, and Education 🏢
Welcome to this week's discussion on Python in the professional world! This is your spot to talk about job hunting, career growth, and educational resources in Python. Please note, this thread is not for recruitment.
---
## How it Works:
1. Career Talk: Discuss using Python in your job, or the job market for Python roles.
2. Education Q&A: Ask or answer questions about Python courses, certifications, and educational resources.
3. Workplace Chat: Share your experiences, challenges, or success stories about using Python professionally.
---
## Guidelines:
- This thread is not for recruitment. For job postings, please see r/PythonJobs or the recruitment thread in the sidebar.
- Keep discussions relevant to Python in the professional and educational context.
---
## Example Topics:
1. Career Paths: What kinds of roles are out there for Python developers?
2. Certifications: Are Python certifications worth it?
3. Course Recommendations: Any good advanced Python courses to recommend?
4. Workplace Tools: What Python libraries are indispensable in your professional work?
5. Interview Tips: What types of Python questions are commonly asked in interviews?
---
Let's help each other grow in our careers and education. Happy discussing! 🌟
/r/Python
https://redd.it/1i7q0kh
# Weekly Thread: Professional Use, Jobs, and Education 🏢
Welcome to this week's discussion on Python in the professional world! This is your spot to talk about job hunting, career growth, and educational resources in Python. Please note, this thread is not for recruitment.
---
## How it Works:
1. Career Talk: Discuss using Python in your job, or the job market for Python roles.
2. Education Q&A: Ask or answer questions about Python courses, certifications, and educational resources.
3. Workplace Chat: Share your experiences, challenges, or success stories about using Python professionally.
---
## Guidelines:
- This thread is not for recruitment. For job postings, please see r/PythonJobs or the recruitment thread in the sidebar.
- Keep discussions relevant to Python in the professional and educational context.
---
## Example Topics:
1. Career Paths: What kinds of roles are out there for Python developers?
2. Certifications: Are Python certifications worth it?
3. Course Recommendations: Any good advanced Python courses to recommend?
4. Workplace Tools: What Python libraries are indispensable in your professional work?
5. Interview Tips: What types of Python questions are commonly asked in interviews?
---
Let's help each other grow in our careers and education. Happy discussing! 🌟
/r/Python
https://redd.it/1i7q0kh
Reddit
From the Python community on Reddit
Explore this post and more from the Python community