pythondaily | Education

Telegram-канал pythondaily - Python Daily

1102

Daily Python News Question, Tips and Tricks, Best Practices on Python Programming Language Find more reddit channels over at @r_channels

Subscribe to a channel

Python Daily

htmx accessibility gaps: data and recommendations
https://wagtail.org/blog/htmx-accessibility-gaps-data-and-recommendations/

/r/django
https://redd.it/1lj9vci

Читать полностью…

Python Daily

Tuesday Daily Thread: Advanced questions

# Weekly Wednesday Thread: Advanced Questions 🐍

Dive deep into Python with our Advanced Questions thread! This space is reserved for questions about more advanced Python topics, frameworks, and best practices.

## How it Works:

1. **Ask Away**: Post your advanced Python questions here.
2. **Expert Insights**: Get answers from experienced developers.
3. **Resource Pool**: Share or discover tutorials, articles, and tips.

## Guidelines:

* This thread is for **advanced questions only**. Beginner questions are welcome in our [Daily Beginner Thread](#daily-beginner-thread-link) every Thursday.
* Questions that are not advanced may be removed and redirected to the appropriate thread.

## Recommended Resources:

* If you don't receive a response, consider exploring r/LearnPython or join the [Python Discord Server](https://discord.gg/python) for quicker assistance.

## Example Questions:

1. **How can you implement a custom memory allocator in Python?**
2. **What are the best practices for optimizing Cython code for heavy numerical computations?**
3. **How do you set up a multi-threaded architecture using Python's Global Interpreter Lock (GIL)?**
4. **Can you explain the intricacies of metaclasses and how they influence object-oriented design in Python?**
5. **How would you go about implementing a distributed task queue using Celery and RabbitMQ?**
6. **What are some advanced use-cases for Python's decorators?**
7. **How can you achieve real-time data streaming in Python with WebSockets?**
8. **What are the

/r/Python
https://redd.it/1liwla2

Читать полностью…

Python Daily

Interview Advice for fresher role as backend Django Developer ( AWS is a plus )

Greetings to everyone,

I received an email saying there is an interview scheduled on upcoming wednesday 26june2025 this is my first interview which is technical round 1 (there are two+hr round). I am a bit nervous right now and wanted to ask for the resources or topics to prepare well for these interviews. The job opening is for freshers and hiring for django+aws.

About my resume : I have written two internships but those are frontend based and two projects which are of django and three certifications (aws,django,react).
As people here always help students therefore I came straight here to ask.
Thank you.

For the people who work in similar position, what do they expect you on your interview?

/r/django
https://redd.it/1linndz

Читать полностью…

Python Daily

If someone have pdf for django please send

I am learning django and yt tutorial are good but they explain less. While CBVs are considered best practices but many youtube tutorial are old or new just doesn't cover CBVs that much.if you have pdf please send me.

/r/djangolearning
https://redd.it/1lin4io

Читать полностью…

Python Daily

R Reinforcement Learning Teachers of Test Time Scaling

TL;DR: The raw outputs of our new 7B RL model provide stronger distillation and cold-starting than the filtered and post-processed reasoning traces of orders-of-magnitude larger LMs such as DeepSeek-R1.

How did we achieve this result? We turned the RL task on its head. Rather than training to solve challenging problems from scratch, we optimize our models to generate clear, step-by-step "explanations" to "teach" their students, providing both the problem’s question and its solution already in their input prompt.

This makes the RL training task much easier and also directly aligned with downstream distillation, allowing us to train tiny 7B teachers, boosting the performance of even larger 32B students.

If you are interested to learn more, please check out our new work:

Paper: https://arxiv.org/abs/2506.08388

Blog: https://sakana.ai/rlt/

Open source code: https://github.com/SakanaAI/RLT

If you have any questions, please ask them below or feel free to get in touch, any discussion is more than welcome :)

/r/MachineLearning
https://redd.it/1lid95g

Читать полностью…

Python Daily

D Conceptually/On a Code Basis - Why does Pytorch work with CUDA out of the box, with minimal setup required, but tensorflow would require all sorts of dependencies?

Hopefully this question doesn't break rule 6.

When I first learned machine learning, we primarily used TensorFlow on platforms like Google Colab or cloud platforms like Databricks, so I never had to worry about setting up Python or TensorFlow environments myself.

Now that I’m working on personal projects, I want to leverage my gaming PC to accelerate training using my GPU. Since I’m most familiar with the TensorFlow model training process, I started off with TensorFlow.

But my god—it was such a pain to set up. As you all probably know, getting it to work often involves very roundabout methods, like using WSL or setting up a Docker dev container.

Then I tried PyTorch, and realized how much easier it is to get everything running with CUDA. That got me thinking: conceptually, why does PyTorch require minimal setup to use CUDA, while TensorFlow needs all sorts of dependencies and is just generally a pain to get working?

/r/MachineLearning
https://redd.it/1lialoj

Читать полностью…

Python Daily

[Showcase] leetfetch – A CLI tool to fetch and organize your LeetCode submissions

**GitHub**: [https://github.com/Rage997/leetfetch](https://github.com/Rage997/leetfetch)
**Example output repo**: [https://github.com/Rage997/LeetCode](https://github.com/Rage997/LeetCode)

# What It Does

**leetfetch** is a command-line Python tool that downloads all your LeetCode submissions and problem descriptions using your browser session (no password or API key needed). It groups them by problem and language, and creates Markdown summaries.

# Target Audience

Anyone who solves problems on LeetCode and wants to:

* Back up their work
* Track progress locally or on GitHub

# How It’s Different

Compared to other tools, leetfetch:

* Uses the current GraphQL API
* Filters by accepted (or all) submissions
* Generates a clean, browsable folder structure

# Example Usage

# Download accepted Python3 submissions
python3 main.py --languages python3

# Download all submissions in all languages
python3 main.py --no-only-accepted --all-languages

# Only fetch problems not yet saved
python3 main.py --sync


No login needed – just need to be signed in with your browser.

Let me know what you think.

/r/Python
https://redd.it/1liej6o

Читать полностью…

Python Daily

pandas/python functions (pushing and calling dataframe)

Hello all,
I am fairly new to python and all so i am having difficulty managing next.
So i wanted to create a dim table in separate file, then push few columns to SQL, and allow somehow for few other columns to be allowed to be pulled in another python file, where i would merge it with that data-frame.(creating ID keys basically),
But i am having difficulties doing that,its giving me some long as error. (This part when i am calling in other file : (product_table= Orders_product() )
Could someone point me to right direction?

Product table:

import pandas as pd
from MySQL import getmysqlengine

#getting file
File=r"Excel
FilePath"
Sheet="Orders"
df=pd.readexcel(File, sheetname=Sheet)
productcolumns=["Product Category","Product Sub-Category","Product Container","Product Name"]

def Orders
product():
#cleaning text/droping duplicates

    dfproducts = df[productcolumns].copy()
    for productCol in productcolumns:
        dfproducts[productCol] = dfproducts[productCol].str.strip()
    dfproducts['ProductKeyJoin'] = dfproductsproduct_columns.agg('|'.join, axis=1)


/r/Python
https://redd.it/1lhyni4

Читать полностью…

Python Daily

Fenix: I built an algorithmic trading bot with CrewAI, Ollama, and Pandas.

Hey r/Python,

I'm excited to share a project I've been passionately working on, built entirely within the Python ecosystem: Fenix Trading Bot. The post was removed earlier for missing some sections, so here is a more structured breakdown.

GitHub Link: https://github.com/Ganador1/FenixAI\_tradingBot

# What My Project Does

Fenix is an open-source framework for algorithmic cryptocurrency trading. Instead of relying on a single strategy, it uses a crew of specialized AI agents orchestrated by CrewAI to make decisions. The workflow is:

1. It scrapes data from multiple sources: news feeds, social media (Twitter/Reddit), and real-time market data.
2. It uses a Visual Agent with a vision model (LLaVA) to analyze screenshots of TradingView charts, identifying visual patterns.
3. A Technical Agent analyzes quantitative indicators (RSI, MACD, etc.).
4. A Sentiment Agent reads news/social media to gauge market sentiment.
5. The analyses are passed to Consensus and Risk Management agents that weigh the evidence, check against user-defined risk parameters, and make the final BUY, SELL, or HOLD decision. The entire AI analysis runs 100% locally using Ollama, ensuring privacy and zero API costs.

# Target Audience

This project is aimed at:

Python Developers & AI Enthusiasts: Who want to see a real-world, complex application of modern Python libraries like CrewAI, Ollama, Pydantic, and Selenium working together. It serves as a great case study for building multi-agent systems.
Algorithmic Traders & Quants: Who are looking for a flexible, open-source framework that goes beyond

/r/Python
https://redd.it/1li8id5

Читать полностью…

Python Daily

I made Flask-Squeeze which minifies and compresses responses!
https://github.com/mkrd/Flask-Squeeze

/r/flask
https://redd.it/1lhn2yu

Читать полностью…

Python Daily

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/1li2gwg

Читать полностью…

Python Daily

[P] This has been done like a thousand time before, but here I am presenting my very own image denoising model

https://redd.it/1lhny9b
@pythondaily

Читать полностью…

Python Daily

Parallel and Concurrent Programming in Python: A Practical Guide

Hey, I made a video about Parallel and Concurrent Programming in Python with threading and multiprocessing.

First we make a program which doesn't use any of those methods and after that we take advantage of those methods and see the differences in terms of performance

https://www.youtube.com/watch?v=IQxKjGEVteI

/r/Python
https://redd.it/1lhgxek

Читать полностью…

Python Daily

What would be the best way to share my flask app on GitHub so that anyone can self host it?

I’ve been working on a small side project that’s a simple flask web app.

The project is mainly a learning exercise for me but I also want to learn how to properly open source code.

It’s in a state at this point where I feel it’s useable and I’ve been slowly building up a proper readme for my GitHub page.

My goal is to simplify the installation process as much as possible so for now I’ve written 2 batch files that handle the installation and the execution. But I am wondering if there is a better way to go about this.

Keen to hear any advice.

/r/flask
https://redd.it/1lh3t1v

Читать полностью…

Python Daily

Django Progress Bar + Django Unfold?

Hi, I would like to know if there is any recommended package or solution to implement a file upload progress bar in Django. I have a model with a field intended to store files (specifically videos), and I want to display the upload progress percentage on the frontend while the file is being uploaded to the backend. The goal is to achieve an experience similar to YouTube, where the upload progress is visually displayed in real time.
I would like this to be shown within the Django admin panel, which is using django-unfold.

/r/django
https://redd.it/1lh96wd

Читать полностью…

Python Daily

Is it good idea to use debug_toolbar to learn ORM and SQL?

I have recently found out about this tool and it has enormously helped me in understanding ORM and the SQL magic behind it

/r/django
https://redd.it/1lj5ccd

Читать полностью…

Python Daily

C++ in JupyterLite (WebAssembly) — Interpreting C++ in the Web
https://blog.jupyter.org/c-in-jupyter-interpreting-c-in-the-web-c9d93542f20b

/r/IPython
https://redd.it/1lj57en

Читать полностью…

Python Daily

How to export editing history of a model

Hi bro,

I have a Django web app

1. How can I export the add, editing history of a model. I want to export all the history of all objects of specific model

https://preview.redd.it/lfswatd76s8f1.png?width=917&format=png&auto=webp&s=fb1cab85d7175af24eadf6d0ba591b2f32af0f79

2. How can I export history activities of user?

Thank you very much

/r/django
https://redd.it/1liyuto

Читать полностью…

Python Daily

How to implement multi-tenancy with django-tenants for my SaaS ?


Hey devs,

I'm building a SaaS healthcare CRM targeting small or solo medical practices. I want each clinic (tenant) to have its own isolated database schema using django-tenants.

So far, I’ve done the following:

Created a Clinic model using TenantMixin and set autocreateschema = True

Added a Domain model for routing using DomainMixin

Created a custom User model for each tenant

Installed and configured django-tenants


But I still have questions to clarify the right implementation:

1. How should I structure the signup process?
Should I register the tenant (clinic), then switch to that schema and create users?


2. Should the user model be shared (in the public schema) or be tenant-specific?
I need users (doctors/staff) to be isolated per clinic.


3. How can I make sure user login works correctly and is scoped to the right schema?


4. What's the best way to handle domain/subdomain routing for tenants (ex: clinic1.mycrm.com, clinic2.mycrm.com)?


5. Any example repo, best practices, or gotchas I should be aware of?



I’d love to get some feedback or code architecture examples from anyone who’s implemented a similar setup. My goal is to keep tenant data fully isolated and support a clean onboarding experience for new clinics.

Thanks a lot in advance!


/r/django
https://redd.it/1lilzpg

Читать полностью…

Python Daily

I made a FOSS feature rich Python template with SOTA tools, security, CI/CD, yet easy to use

## Introduction

Hey, created a FOSS Python library template with features I have never seen (especially in Python development) and which IMO is the most comprehensive, yet focused on usability (template setup is one click and one `pdm setup` command to setup locally, after that only `src`, `tests` and `pyproject.toml` should be of your concern), but I'll let you be the judge.

> GitHub repository: https://github.com/open-nudge/opentemplate

Feedback, questions, ideas, all are welcome, either here or on the GitHub's [discussions](https://github.com/open-nudge/opentemplate/discussions) or [issues](https://github.com/open-nudge/opentemplate/issues) (if you find some
bugs), thanks in advance!

- This was posted previously, but reposting as I think I did a very poor job describing what it does, hopefully I did a better job this time, but [here](https://www.reddit.com/r/Python/comments/1lelh8a/opentemplate_foss_python_template_focused_on/) it is anyway.
Also thanks to [u/wyattxdev](https://www.reddit.com/user/wyattxdev/) and his template [here](https://www.reddit.com/r/Python/comments/1lcz532/a_modern_python_project_cookiecutter_template/) for a great showcase how to present the project correctly!
- __This post is also featured on `r/cybersecurity` subreddit__ (focused more on the security side of things, but feel free to check it out if you are interested): https://www.reddit.com/r/cybersecurity/comments/1lim3k5/i_made_a_foss_python_template_with_cicd_security/

## TLDR Overview

- [__Truly open source__](https://open-nudge.github.io/opentemplate/template/about/philosophy): no tokens, no fees, no premium plans, open source software only
- [__State of the art__](https://open-nudge.github.io/opentemplate/template/details): best checkers for Python, YAML, Markdown, prose, and more unified
- [__Easy to use__](https://open-nudge.github.io/opentemplate/template/quickstart/usage): clone templated repo, run `pdm

/r/Python
https://redd.it/1lim6fb

Читать полностью…

Python Daily

django-hstore-field, An easy to use postgres hstore field that is based on django-hstore-widget

Hello everyone,

Today i released django-hstore-field, an easy to use postgres hstore field that is based on `django-hstore-widget`.

This project is based on stencil.js framework and uses web-components

# 🧐 Usage:

# yourapp/models.py
from django.db import models
from django_hstore_field import HStoreField


class ExampleModel(models.Model):
data = HStoreField()


# 🚀 Features:

Drop in replacement for `django.contrib.postgres.HStoreField`
It leverages postgres hstore to give developers a key:value widget in the admin field.
It includes a admin panel widget to input and visualize the data.
It has error detection, to prevent malformed json in the widget.
It has a fallback json textarera (same one shipped with django's default implementation)
The widgets have the same style as the admin panel.
Only one [file](https://github.com/baseplate-admin/django-hstore-field/blob/master/src/django_hstore_field/fields.py).

# ⚖ Comparison with other project:

django-postgres-extensions: As far as i checked, the postgres extensions does not offer the built in admin panel extension. Also this package dosen't align with my philosophy "do one thing and do it well".

# 😎 Example:

Picture:

Rendered using django-hstore-field

Thank you guys all, if you guys like the project a ⭐ please.

/r/django
https://redd.it/1lig4t8

Читать полностью…

Python Daily

I built a new package for processing documents for LLM applications: SplitterMR

Hi!

Over the past few months, I've been mulling over the idea of ​​making a Python library. I work as an AI engineer, and I was a little tired of having to reinvent the wheel every time I had to make an RAG to process documents: chunking, reading, image processing, etc.

So, I've started working on a personal project and developed a library to process files you pass in Markdown format and then easily chunk them. I have called it SplitterMR. This library uses several cool things: it has support for Docling, MarkItDown, and PDFPlumber; it can split tables, describe images using VLMs, split text recursively, or do it by tokens. It is very very simple to use!

It's still in development, and I need to keep working on it, but if you could take a look at it in the meantime and tell me how it goes, I'd appreciate it :)

The code repository is: https://github.com/andreshere00/Splitter\_MR/, and the PyPi package is published here: https://pypi.org/project/splitter-mr/

I've also posted a documentation server with several plug-and-play examples so you can try them out and take a look: https://andreshere00.github.io/Splitter\_MR/

And as I said, I'm here for anything. Let me know!

/r/Python
https://redd.it/1liepo1

Читать полностью…

Python Daily

sodalite - an open source media downloader with a pure python backend

Made this as a passion project, hope you'll like it :) If you did, please star it! did it as a part of a hackathon and l'd appreciate the support.

What my project does
It detects a link you paste from a supported service, parses it via a network request and serves the file through a FastAPI backend.

Intended audience
Mostly someone who's willing to host this, production ig?

Repo link
https://github.com/oterin/sodalite

/r/Python
https://redd.it/1li6ek4

Читать полностью…

Python Daily

[P] I made a website to visualize machine learning algorithms + derive math from scratch

/r/MachineLearning
https://redd.it/1lhtkr4

Читать полностью…

Python Daily

Run background tasks in Django with zero external dependencies. Here's an update on my library, django-async-manager.

Hey Django community!

I've posted here before about **django-async-manager**, a library I've been developing, and I wanted to share an update on its progress and features.

**What is django-async-manager?**

It's a lightweight, database-backed task queue for Django that provides a Celery-like experience without external dependencies. Perfect for projects where you need background task processing but don't want the overhead of setting up Redis, RabbitMQ, etc.

**✨ New Feature: Memory Management**

The latest update adds memory limit capabilities to prevent tasks from consuming too much RAM. This is especially useful for long-running tasks or when working in environments with limited resources.

# Task with Memory Limit

@background_task(memory_limit=512) # Limit to 512MB
def memory_intensive_task():
# This task will be terminated if it exceeds 512MB
large_data = process_large_dataset()
return analyze_data(large_data)

# Key Features

* **Simple decorator-based API** \- Just add `@background_task` to any function
* **Task prioritization** \- Set tasks as low, medium, high, or critical priority
* **Multiple queues** \- Route tasks to different workers
* **Task dependencies** \- Chain tasks together
* **Automatic retries** \- With configurable exponential backoff
* **Scheduled tasks** \- Cron-like scheduling for periodic tasks
* **Timeout control** \- Prevent tasks from running too long
* **Memory limits** \- Stop tasks from consuming

/r/django
https://redd.it/1lhxz7r

Читать полностью…

Python Daily

FastAPI Guard v3.0 - Now with Security Decorators and AI-like Behavior Analysis

Hey r/Python!

So I've been working on my FastAPI security library (fastapi-guard) for a while now, and it's honestly grown way beyond what I thought it would become. Since my last update on r/Python (I wasn't able to post on r/FastAPI until today), I've basically rebuilt the whole thing and added some pretty cool features.

What My Project Does:

Still does all the basic stuff - IP whitelisting/blacklisting, rate limiting, penetration attempt detection, cloud provider blocking, etc. But now it's way more flexible and you can configure everything per route.

What's new:

The biggest addition is Security Decorators. You can now secure individual routes instead of just using the global middleware configuration. Want to rate limit just one endpoint? Block certain countries from accessing your admin panel? Done. No more "all or nothing" approach.

from fastapi_guard.decorators import SecurityDecorator

@app.get("/admin")
@SecurityDecorator.access_control.block_countries(["CN", "RU"])
@SecurityDecorator.rate_limiting.limit(requests=5, window=60)
async def admin_panel():
return {"status": "admin"}


Other stuff that got fixed:

- Had a security vulnerability in v2.0.0 with header injection through X-Forwarded-For. That's patched now
- IPv6 support was broken, fixed that too
- Made IPInfo completely optional - you can now use your own geo IP handler.
- Rate limiting is now proper sliding window instead of fixed window
- Other improvements/enhancements/optimizations...

Been using it in production for months

/r/Python
https://redd.it/1lhxwee

Читать полностью…

Python Daily

Fast, lightweight parser for Securities and Exchanges Commission Inline XBRL

Hi there, this is a niche package but may help a few people. I noticed that the SEC XBRL endpoint sometimes takes hours to update, and is missing a lot of data, so I wrote a fast, lightweight InLine XBRL parser to fix this.

https://github.com/john-friedman/secxbrl

# What my project does

Parses SEC InLine XBRL quickly using only the Inline XBRL html file, without the need for linkbases, schema files, etc.

# Target Audience

Algorithmic traders, PhD students, Quant researchers, and hobbyists.

# Comparison

Other packages such as python-xbrl, py-xbrl, and brel are focused on parsing most forms of XBRL. This package only parses SEC XBRL. This allows for dramatically faster performance as no additional files need to be downloaded, making it suitable for running on small instances such as t4g.nanos.

The readme contains links to the other packages as they may be a better fit for your usecase.

# Example

from secxbrl import parseinlinexbrl

# load data
path = '../samples/000095017022000796/tsla-20211231.htm'
with open(path,'rb') as f:
content = f.read()

# get all EarningsPerShareBasic
basic = {'val':item['_val','date':item'_context''context_period_enddate'} for item

/r/Python
https://redd.it/1lhdspc

Читать полностью…

Python Daily

Working on a Django package for tracking marketing campaigns
https://github.com/YounesOMK/django-attribution

/r/django
https://redd.it/1lhlh8l

Читать полностью…

Python Daily

I built an automation to generate coding reels like Peter Stewie’s on Instagram(got 2k followers)



**What My Project Does:**


You might’ve seen those funny Instagram reels where characters like Stewie and Peter Griffin explain coding concepts to each other while gameplay runs in the background ..all with AI voices.

I built an automation that replicates that exact format.

Just send a script, and it generates a short, engaging coding reel with:

* AI voiceovers
* Character overlays
* Gameplay footage

All fully automated , no manual editing needed.

**✨ Features:**

* Scraped and integrated AI voices
* Automated video rendering using AWS
* Optional ChatGPT support to auto-generate scripts
* Telegram interface to send scripts and receive final videos

Still improving timing and visuals, open to feedback!

**🛠️ GitHub (code + demo):** [https://github.com/Traverser25/Stewie\_it\_v1](https://github.com/Traverser25/Stewie_it_v1)

/r/Python
https://redd.it/1lhgllq

Читать полностью…

Python Daily

Struggling to find a remote Django job from the Middle East — any advice?

Hey everyone,

I’ve been working as a backend developer for 2 years, mainly using Django, DRF, PostgreSQL, and Docker. I’m based in the Middle East and have been employed full-time, but unfortunately, the pay here is very low and there’s little room for growth.

I’ve been applying to remote jobs for months now—but I still barely get shortlisted. It’s been discouraging, and I’m starting to feel stuck.

I genuinely love working with Django and backend systems. I enjoy building clean APIs, scalable architecture, and solving real problems. I just want the chance to grow and contribute to something meaningful.

Has anyone else been in a similar position? How did you break through and land your first remote opportunity? Any advice or resources would mean a lot.

Thanks for reading 🙏


/r/django
https://redd.it/1lh568b

Читать полностью…
Subscribe to a channel