Best Django Courses
I am a Senior Frontend Developer with +7 years. The company I am already working has a Tech Stack with Django.
One of my mission is getting certificate related to our tech stack. I want to learn Django with advanced backend concepts because it is opportunity for me.
I know that the best way to learn a new technology is reading and applying the docs. But my company rule is collecting certificate as well.
What are your suggestions in this point? Which courses do you suggest to me? Thanks in advance 🖖
/r/django
https://redd.it/1fds72q
I am a Senior Frontend Developer with +7 years. The company I am already working has a Tech Stack with Django.
One of my mission is getting certificate related to our tech stack. I want to learn Django with advanced backend concepts because it is opportunity for me.
I know that the best way to learn a new technology is reading and applying the docs. But my company rule is collecting certificate as well.
What are your suggestions in this point? Which courses do you suggest to me? Thanks in advance 🖖
/r/django
https://redd.it/1fds72q
Reddit
From the django community on Reddit
Explore this post and more from the django community
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/1fdwqji
# 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/1fdwqji
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
Dict Hash: Efficient Hashing for Python Dictionaries
# What My Project Does
Dict Hash is a Python package designed to solve the issue of hashing dictionaries and other complex data structures. By default, dictionaries in Python aren’t hashable because they’re mutable, which can be limiting when building systems that rely on efficient lookups, caching, or comparisons. Dict Hash provides a simple and robust solution by allowing dictionaries to be hashed using Python’s native hash function or other common hashing methods like
It also supports hashing of Pandas and Polars DataFrames, NumPy arrays, and Numba objects, making it highly versatile when working with large datasets or specialized data structures. Of course, the package can hash recursively, so even dictionaries containing other dictionaries (or nested structures) can be hashed without trouble. You can even implement the
One of the key features of Dict Hash is its approximated mode, which provides an efficient way to hash large data structures by subsampling. This makes it perfect for scenarios where speed and memory efficiency are more important than exact precision while maintaining determinism, meaning that the same input will always result in the same hash, even when using approximation. Typically we use this when processing large
/r/Python
https://redd.it/1fdkpkz
# What My Project Does
Dict Hash is a Python package designed to solve the issue of hashing dictionaries and other complex data structures. By default, dictionaries in Python aren’t hashable because they’re mutable, which can be limiting when building systems that rely on efficient lookups, caching, or comparisons. Dict Hash provides a simple and robust solution by allowing dictionaries to be hashed using Python’s native hash function or other common hashing methods like
sha256.It also supports hashing of Pandas and Polars DataFrames, NumPy arrays, and Numba objects, making it highly versatile when working with large datasets or specialized data structures. Of course, the package can hash recursively, so even dictionaries containing other dictionaries (or nested structures) can be hashed without trouble. You can even implement the
Hashable interface and add support for your classes.One of the key features of Dict Hash is its approximated mode, which provides an efficient way to hash large data structures by subsampling. This makes it perfect for scenarios where speed and memory efficiency are more important than exact precision while maintaining determinism, meaning that the same input will always result in the same hash, even when using approximation. Typically we use this when processing large
/r/Python
https://redd.it/1fdkpkz
GitHub
GitHub - LucaCappelletti94/dict_hash: Python package to hash dictionaries using default hash, md5, sha256 and more.
Python package to hash dictionaries using default hash, md5, sha256 and more. - LucaCappelletti94/dict_hash
pipefunc: Effortlessly Chain Statistical Analyses with DAG-based Pipelines
https://github.com/pipefunc/pipefunc
/r/pystats
https://redd.it/1fdutde
https://github.com/pipefunc/pipefunc
/r/pystats
https://redd.it/1fdutde
GitHub
GitHub - pipefunc/pipefunc: Lightweight fast function pipeline (DAG) creation in pure Python for scientific (HPC) workflows 🕸️🧪
Lightweight fast function pipeline (DAG) creation in pure Python for scientific (HPC) workflows 🕸️🧪 - pipefunc/pipefunc
Ive been working with Django professionally for a couple years now so Ive decided to make my home office more comfy!
/r/django
https://redd.it/1fdvkv0
/r/django
https://redd.it/1fdvkv0
cannot import apps.views
i am developing a django app to analyze some log files and extract data and store it to the sqlite database.one of the tasks i need is to monitor a txt file where the log lines are being written by my syslog server.for the same purpose i developed a watchlog file,which will keep monitoring this file.this setup works very well in pycharm.but when i want to install the watchlog.py file as a windows service i get an error which says cannot find module.this is the import :
files is an another app in my django project.
from files.views import uploadlogfilewithoutrequest
https://preview.redd.it/wln0z8nk15od1.jpg?width=449&format=pjpg&auto=webp&s=992e6faffc122d50a8869e0c5e06aaf0820ccea5
https://preview.redd.it/yju8tvml15od1.png?width=374&format=png&auto=webp&s=d9e3939f428adbba49c99e4635a4033c1159ec32
/r/djangolearning
https://redd.it/1fe4xnz
i am developing a django app to analyze some log files and extract data and store it to the sqlite database.one of the tasks i need is to monitor a txt file where the log lines are being written by my syslog server.for the same purpose i developed a watchlog file,which will keep monitoring this file.this setup works very well in pycharm.but when i want to install the watchlog.py file as a windows service i get an error which says cannot find module.this is the import :
files is an another app in my django project.
from files.views import uploadlogfilewithoutrequest
https://preview.redd.it/wln0z8nk15od1.jpg?width=449&format=pjpg&auto=webp&s=992e6faffc122d50a8869e0c5e06aaf0820ccea5
https://preview.redd.it/yju8tvml15od1.png?width=374&format=png&auto=webp&s=d9e3939f428adbba49c99e4635a4033c1159ec32
/r/djangolearning
https://redd.it/1fe4xnz
Database.one
Database.one - we optimize your database to let it fly again
Optimizing databases is what we do and what we are good at. Have a look what we can do for you.
Implementing Python Bindings for Dust DDS with PyO3
Hi everyone! 👋
I recently wrote an article for my company on how we created Python bindings for our native Rust implementation of the Data Distribution Service (DDS) middleware, called Dust DDS.
While the article isn't exclusively about Python, it dives deep into the process of using PyO3 for binding Rust to Python, going through the design decisions we made and how we programmatically generate the pyi file from the original Rust API. I thought it might be helpful or inspiring for anyone looking to bridge Rust and Python in their projects so you can check it out here: https://www.s2e-systems.com/2024/09/11/dust\_dds\_python\_bindings/
/r/Python
https://redd.it/1fe4w3m
Hi everyone! 👋
I recently wrote an article for my company on how we created Python bindings for our native Rust implementation of the Data Distribution Service (DDS) middleware, called Dust DDS.
While the article isn't exclusively about Python, it dives deep into the process of using PyO3 for binding Rust to Python, going through the design decisions we made and how we programmatically generate the pyi file from the original Rust API. I thought it might be helpful or inspiring for anyone looking to bridge Rust and Python in their projects so you can check it out here: https://www.s2e-systems.com/2024/09/11/dust\_dds\_python\_bindings/
/r/Python
https://redd.it/1fe4w3m
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Live polling App using flask
https://youtu.be/uv88jm8XAmc?si=jupLOM3WXmQ3xSo_
Hi, here's a video explaining the development of live poll web app using flask framework and AJAX. MySQL database is used.
/r/Python
https://redd.it/1fe89j4
https://youtu.be/uv88jm8XAmc?si=jupLOM3WXmQ3xSo_
Hi, here's a video explaining the development of live poll web app using flask framework and AJAX. MySQL database is used.
/r/Python
https://redd.it/1fe89j4
YouTube
Live Polling App Python Flask
This video explains about developing a live polling application using Python Flask framework with MySQL database , AJAX and jQuery.
other interesting videos:
Link for Python Excel Automation Part 1 -Read and write in Excel
https://youtu.be/jjS4vgnAN_c
…
other interesting videos:
Link for Python Excel Automation Part 1 -Read and write in Excel
https://youtu.be/jjS4vgnAN_c
…
Migrations
My company is making something i think it's stupid,
They don't track migrations with git, and in every environment stage, prod, local
They make migrations and migrate with every push
And every environment have different files
Is that fuckin normal, or this company is a shit? Cause i feel like I'm stupid
/r/django
https://redd.it/1fe603z
My company is making something i think it's stupid,
They don't track migrations with git, and in every environment stage, prod, local
They make migrations and migrate with every push
And every environment have different files
Is that fuckin normal, or this company is a shit? Cause i feel like I'm stupid
/r/django
https://redd.it/1fe603z
Reddit
Migrations : r/django
33 votes, 63 comments. 136K subscribers in the django community. News and links for Django developers.
My first open-source project built with Python to inspect databases through CLI fast
What My Project Does:
peepDB is a CLI tool designed for rapid database table inspection without writing SQL. It supports MySQL, PostgreSQL, and MariaDB, allowing users to view all tables or a specific table with simple commands. The tool securely stores connection details, provides output in formatted table or JSON format.
Target Audience:
peepDB is aimed at developers debugging database-driven applications, DBAs performing quick checks or audits, data analysts exploring table structures, and those learning about databases who want an easy way to explore data. It's suitable for use in both development and production environments, providing a versatile tool for various database inspection needs.
Comparison:
peepDB distinguishes itself from alternatives by focusing solely on quick table viewing, supporting multiple databases out-of-the-box, and securely storing connection details. It requires no SQL knowledge to use, has a minimal footprint compared to larger database management tools, and offers both CLI and Python library interfaces for flexibility.
GitHub Repo: https://github.com/evangelosmeklis/peepdb
if you have any suggestions for the project or comments on how to improve let me know
/r/Python
https://redd.it/1febbx0
What My Project Does:
peepDB is a CLI tool designed for rapid database table inspection without writing SQL. It supports MySQL, PostgreSQL, and MariaDB, allowing users to view all tables or a specific table with simple commands. The tool securely stores connection details, provides output in formatted table or JSON format.
Target Audience:
peepDB is aimed at developers debugging database-driven applications, DBAs performing quick checks or audits, data analysts exploring table structures, and those learning about databases who want an easy way to explore data. It's suitable for use in both development and production environments, providing a versatile tool for various database inspection needs.
Comparison:
peepDB distinguishes itself from alternatives by focusing solely on quick table viewing, supporting multiple databases out-of-the-box, and securely storing connection details. It requires no SQL knowledge to use, has a minimal footprint compared to larger database management tools, and offers both CLI and Python library interfaces for flexibility.
GitHub Repo: https://github.com/evangelosmeklis/peepdb
if you have any suggestions for the project or comments on how to improve let me know
/r/Python
https://redd.it/1febbx0
GitHub
GitHub - evangelosmeklis/peepdb: CLI tool and python library to inspect databases fast.
CLI tool and python library to inspect databases fast. - evangelosmeklis/peepdb
Integrating Stripe with Flask: A Step-by-Step Tutorial
I recently put together a beginner-friendly tutorial on how to integrate Stripe into your Flask application. If you're looking to implement payment processing but feel a bit overwhelmed, this guide breaks down the steps in a straightforward manner.
One of the key aspects of the tutorial is setting up user authentication to manage payments and subscriptions securely. We cover everything from user registration and login processes to implementing Stripe subscriptions and webhooks for handling payment events.
Additionally, you'll find snippets of code provided, which you can use as a handy template. By the end of it, you'll be equipped to start monetizing your Flask app with Stripe.
Here's what you can expect from the post:
- Setting up Stripe and your Flask app environment.
- Implementing user authentication using Flask-Login.
- Creating a checkout session for subscriptions.
- Handling webhooks to update subscription status in your database.
- Differentiating between free and premium content based on user subscriptions.
You only need a Stripe account to get started. For anyone interested, check out the full guide here: Integrating Stripe with Flask
/r/flask
https://redd.it/1fdzhr7
I recently put together a beginner-friendly tutorial on how to integrate Stripe into your Flask application. If you're looking to implement payment processing but feel a bit overwhelmed, this guide breaks down the steps in a straightforward manner.
One of the key aspects of the tutorial is setting up user authentication to manage payments and subscriptions securely. We cover everything from user registration and login processes to implementing Stripe subscriptions and webhooks for handling payment events.
Additionally, you'll find snippets of code provided, which you can use as a handy template. By the end of it, you'll be equipped to start monetizing your Flask app with Stripe.
Here's what you can expect from the post:
- Setting up Stripe and your Flask app environment.
- Implementing user authentication using Flask-Login.
- Creating a checkout session for subscriptions.
- Handling webhooks to update subscription status in your database.
- Differentiating between free and premium content based on user subscriptions.
You only need a Stripe account to get started. For anyone interested, check out the full guide here: Integrating Stripe with Flask
/r/flask
https://redd.it/1fdzhr7
ploomber.io
Integrating Stripe in a Flask Application: A Step-by-step Guide
Learn how to start accepting payments to use your Flask app
Why we wrote a new form library for Django
https://kodare.net/2024/09/11/why-we-wrote-a-new-form-library-for-django.html
/r/django
https://redd.it/1fe96ra
https://kodare.net/2024/09/11/why-we-wrote-a-new-form-library-for-django.html
/r/django
https://redd.it/1fe96ra
En kodare
Why we wrote a new form library for Django
Django comes with a form library, and yet we wrote a total replacement library as part of iommi (GitHub link). This might seem silly, but we struggled for years to not make our own form library. At a certain point we had to admit the truth: that Django forms…
how to scale a system to handle millions of concurrent updates on the backend?
i was recently asked an interview question how i would scale an architecture currently consisting of 3 boxes (a web server, a frontend, and a backend) in order to handle millions of updates to the inventory field in the database?
this could be an ecommerce website where thousands of concurrent users come in to
purchase their items 24x7 and as such the inventory field is updated constantly
and every second of the day.
the question asked was what change or an additional box i would add to scale the
current architecture containing 3 boxes so that the latest and updated
inventory information can be accessed via APIs with low latency?
note that this question is in the the same context i asked another question here couple of
days ago about the inventory data.
in this post i wanted to lay out the exact scenario what was asked by the interviewer as i am still
puzzled if another box or change in the current architecture would be necessary. i think with various cache options available today (e.g. redis etc. which was my answer) there shouldn't be a need to add an additional box but the interviewer didn't think
/r/flask
https://redd.it/1feo261
i was recently asked an interview question how i would scale an architecture currently consisting of 3 boxes (a web server, a frontend, and a backend) in order to handle millions of updates to the inventory field in the database?
this could be an ecommerce website where thousands of concurrent users come in to
purchase their items 24x7 and as such the inventory field is updated constantly
and every second of the day.
the question asked was what change or an additional box i would add to scale the
current architecture containing 3 boxes so that the latest and updated
inventory information can be accessed via APIs with low latency?
note that this question is in the the same context i asked another question here couple of
days ago about the inventory data.
in this post i wanted to lay out the exact scenario what was asked by the interviewer as i am still
puzzled if another box or change in the current architecture would be necessary. i think with various cache options available today (e.g. redis etc. which was my answer) there shouldn't be a need to add an additional box but the interviewer didn't think
/r/flask
https://redd.it/1feo261
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
Django Docker best practices for dummies?
I have created a fair few small (and one giant sprawling) Django project that are in use by small groups of consistent people (think work groups).
Up to this point, I've built sites inside python venv's and hosted with Apache mod_wsgi, all on a couple of AWS virtual machines (EC2 instances).
As I make more little Django sites, it seems like it's getting time to move into containers to keep a bit more explicit definition around package requirements/versions, transition between servers, easier local testing, etc. It seems like most tutorials out there are for toy projects on bare metal (raises hand) or using Django for Kubernetes style dynamic deployment, load balancing, etc.
Does anyone have a good resource for building / deploying relatively simple Django projects to a container for general containerization. Things like, packaging process, pros and cons of running the database in the same container / different container / bare metal, etc.
/r/django
https://redd.it/1fel39i
I have created a fair few small (and one giant sprawling) Django project that are in use by small groups of consistent people (think work groups).
Up to this point, I've built sites inside python venv's and hosted with Apache mod_wsgi, all on a couple of AWS virtual machines (EC2 instances).
As I make more little Django sites, it seems like it's getting time to move into containers to keep a bit more explicit definition around package requirements/versions, transition between servers, easier local testing, etc. It seems like most tutorials out there are for toy projects on bare metal (raises hand) or using Django for Kubernetes style dynamic deployment, load balancing, etc.
Does anyone have a good resource for building / deploying relatively simple Django projects to a container for general containerization. Things like, packaging process, pros and cons of running the database in the same container / different container / bare metal, etc.
/r/django
https://redd.it/1fel39i
Reddit
From the django community on Reddit
Explore this post and more from the django community
SEO in django
Hello, im next to build a tiny website with django and im going to deploy it. I've thinking if there is a way to configure the ceo tags with django or if i have to do it manualy.
Sorry if isn't related to django and i would be very grateful if somebody can give some advices with this.
/r/django
https://redd.it/1fevex2
Hello, im next to build a tiny website with django and im going to deploy it. I've thinking if there is a way to configure the ceo tags with django or if i have to do it manualy.
Sorry if isn't related to django and i would be very grateful if somebody can give some advices with this.
/r/django
https://redd.it/1fevex2
Reddit
From the django community on Reddit
Explore this post and more from the django community
Typical developer processes for developing features in Flask?
As a new Flask developer, I'm curious about the typical process or checklist people work through when developing a new feature.
My current flow has been working 'inside-out' in the following order:
1. Start with the models
2. Write migrations/upgrade scripts
3. Implement the view functions
4. Set up the routes
5. Build out the templates
Is this a common or recommended approach? My thinking is that I can often add new models and db migrations, etc without breaking the working app and build from there. This seems to suit the CRUD-style app I'm developing.
Or does the development approach change depending on the feature? For example, would it be different for something more complex like a stepped process, like a bank loan application form?
If so, are there a bunch of developer process patterns I should be aware of?
/r/flask
https://redd.it/1feqqr5
As a new Flask developer, I'm curious about the typical process or checklist people work through when developing a new feature.
My current flow has been working 'inside-out' in the following order:
1. Start with the models
2. Write migrations/upgrade scripts
3. Implement the view functions
4. Set up the routes
5. Build out the templates
Is this a common or recommended approach? My thinking is that I can often add new models and db migrations, etc without breaking the working app and build from there. This seems to suit the CRUD-style app I'm developing.
Or does the development approach change depending on the feature? For example, would it be different for something more complex like a stepped process, like a bank loan application form?
If so, are there a bunch of developer process patterns I should be aware of?
/r/flask
https://redd.it/1feqqr5
Reddit
From the flask community on Reddit
Explore this post and more from the flask community
PayPal vs. Stripe for Django Donations: Which Payment Gateway is Best for a Charity Site?
I’m building a charity website where the admin can manage content and handle donations. Historically, the client used PayPal for donations, but I’m considering using Stripe instead, given the better-maintained Django modules for Stripe.
Has anyone implemented both in a Django project? Which would be more straightforward for maintaining a reliable donation system? Any advice on pros/cons of sticking with PayPal vs. switching to Stripe for this use case?
/r/django
https://redd.it/1fefwpv
I’m building a charity website where the admin can manage content and handle donations. Historically, the client used PayPal for donations, but I’m considering using Stripe instead, given the better-maintained Django modules for Stripe.
Has anyone implemented both in a Django project? Which would be more straightforward for maintaining a reliable donation system? Any advice on pros/cons of sticking with PayPal vs. switching to Stripe for this use case?
/r/django
https://redd.it/1fefwpv
Reddit
From the django community on Reddit
Explore this post and more from the django community
how do you query a certain column without including it in the route's url?
Hey guys! I'll keep this concise,
Basically I'm trying to build a mini snowflake clone, and I have have this route which takes users to a SQL query interface for the worksheet they've selected (if you've used snowflake you'll know what I mean hahah).
@users.route("/<string:username>/query/<code>", methods='GET')
@loginrequired
def query(username, code):
if username != currentuser.username:
abort(403)
# what I currently have to do
selectedworksheet = Worksheet.query.filterby(code=code)
# what I'd like to be able to do
selectedworksheet = Worksheet.query.getor404(worksheetid)
# What I want to avoid doing as it seems to add the id to the url
worksheetid = request.args.get('worksheetid', type=int)
selectedworksheet = Worksheet.query.getor404(worksheetid)
# remaining code ...
each worksheet has an id, but they also have a code so the url can look something
/r/flask
https://redd.it/1fexjlx
Hey guys! I'll keep this concise,
Basically I'm trying to build a mini snowflake clone, and I have have this route which takes users to a SQL query interface for the worksheet they've selected (if you've used snowflake you'll know what I mean hahah).
@users.route("/<string:username>/query/<code>", methods='GET')
@loginrequired
def query(username, code):
if username != currentuser.username:
abort(403)
# what I currently have to do
selectedworksheet = Worksheet.query.filterby(code=code)
# what I'd like to be able to do
selectedworksheet = Worksheet.query.getor404(worksheetid)
# What I want to avoid doing as it seems to add the id to the url
worksheetid = request.args.get('worksheetid', type=int)
selectedworksheet = Worksheet.query.getor404(worksheetid)
# remaining code ...
each worksheet has an id, but they also have a code so the url can look something
/r/flask
https://redd.it/1fexjlx
Reddit
From the flask community on Reddit
Explore this post and more from the flask 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/1fep0y6
# 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/1fep0y6
Reddit
From the Python community on Reddit
Explore this post and more from the Python community
Which Python libraries would be most suitable for Time Series Forecasts and Multilinear Regression?
I am working on a project geared towards addressing the issue of software project time estimation bias. To gather data, I'm building a work-log system that gathers info with respect to time taken to accomplish commonly-known tasks. These data will subsequently be trained using time series and multi linear regression.
Which Python libraries would be the most suitable for achieving these goals?
/r/Python
https://redd.it/1fexk8e
I am working on a project geared towards addressing the issue of software project time estimation bias. To gather data, I'm building a work-log system that gathers info with respect to time taken to accomplish commonly-known tasks. These data will subsequently be trained using time series and multi linear regression.
Which Python libraries would be the most suitable for achieving these goals?
/r/Python
https://redd.it/1fexk8e
Reddit
From the Python community on Reddit
Explore this post and more from the Python community