🟑 Medium level

Materials
intermediate level

Deepen your knowledge with intermediate-level materials and practical examples to develop your skills.

20+ Articles
🌿 Practice
10-15 Minutes to read
🟑 Medium

Intermediate level materials

Carefully selected articles for your level

Tokens in LLMs: How the Model Sees Text
🟑 Medium

Tokens in LLMs: How the Model Sees Text

When you send a request to a language model, it doesn't see words or letters. It sees tokens β€” chunks...

πŸ‘€ PyLand Team
πŸ“… 04.06.2026
The datetime Module: Working with Dates and Times
🟑 Medium

The datetime Module: Working with Dates and Times

datetime is Python's standard module for working with dates and times. It's part of the standard library β€” no installation...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
.env Files and Environment Variables: Keeping Secrets Out of Code
🟑 Medium

.env Files and Environment Variables: Keeping Secrets Out of Code

Imagine you wrote a program with an API key hardcoded in the source and pushed it to GitHub. An hour...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
argparse: Command-Line Arguments in Python
🟑 Medium

argparse: Command-Line Arguments in Python

When a script grows from a toy into a real tool, input() becomes inconvenient. Professional CLI programs accept arguments at...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
Layers and Caching in Docker
🟑 Medium

Layers and Caching in Docker

Every instruction in a Dockerfile creates a layer β€” an intermediate image. Docker caches layers and reuses them on subsequent...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
Docker Compose: Multi-Container Applications
🟑 Medium

Docker Compose: Multi-Container Applications

Docker Compose is a tool for running multiple related containers as a single application. The configuration is defined in a...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
Dockerfile: Building Your Own Images
🟑 Medium

Dockerfile: Building Your Own Images

Dockerfile β€” a text file with instructions for building an image. Each instruction becomes a layer.

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
Docker Volumes: Persisting Data
🟑 Medium

Docker Volumes: Persisting Data

By default, data inside a container is not persisted β€” delete the container and the data is gone. Volumes solve...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
API Keys: What They Are and How to Use Them
🟑 Medium

API Keys: What They Are and How to Use Them

Most public APIs require an API key β€” a unique string that identifies you as a registered user of the...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
The requests Library: HTTP Requests from Python
🟑 Medium

The requests Library: HTTP Requests from Python

requests is the most downloaded Python library in the world β€” over 300 million downloads per month. It makes HTTP...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
How to Read API Documentation
🟑 Medium

How to Read API Documentation

API documentation is a developer's primary tool. Knowing how to read it matters more than memorizing any specific API β€”...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
SDK and REST API: What's the Difference and Which Should You Choose?
🟑 Medium

SDK and REST API: What's the Difference and Which Should You Choose?

In earlier lessons, you called APIs directly with requests: you supplied the URL, HTTP method, headers, and parameters yourself. Lesson...

πŸ‘€ PyLand Team
πŸ“… 08.05.2026
🎚️ Levels

Other difficulty levels

Choose the level that suits you

🟒

For beginners

Simple and clear materials for programming beginners

🌱 Basic concepts ⏱️ 5-10 min
πŸ”΄

Advanced level

Complex techniques and concepts for experienced developers

🌳 Complex tasks ⏱️ 15-25 min
🟣

Expert level

Advanced technologies and architectural solutions

πŸ¦… Expert knowledge ⏱️ 20-30 min

Keep developing

Study materials of different levels and gradually improve your skills