python

A set of coding guidelines for Python, a programming language used for applications, automation, data work, and more. It covers project structure, performance, security, testing, and maintainability.

In plain words
What is it for?
Use it when creating or reviewing Python projects, including choosing package layouts, naming files, separating tests, and managing project configuration.
Why use it?
It provides consistent ways to organize and write Python code, helping prevent confusing, fragile, or unsafe codebases.

Cursor rule

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/synmux/myriad/python
Clone the repo
git clone --depth 1 https://github.com/synmux/myriad
Per session 0 Nothing until a file matches its globs; then the whole rule loads.
When invoked 4,555 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00000 $0.04555
Opus 5 $0.00000 $0.02278
Sonnet 5 $0.00000 $0.00911
Haiku 4.5 $0.00000 $0.00456

Measured yesterday against content hash 0e906927da72, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

python scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

configuration/cursor/rules/python.mdc · 347 lines

How it starts

The opening of the file, as written. The whole thing — 347 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Python Best Practices and Coding Standards

This document outlines comprehensive best practices and coding standards for Python development, aiming to promote clean, efficient, maintainable, and secure code.

1. Code Organization and Structure

1.1. Directory Structure Best Practices

  • Flat is better than nested (but not always). Start with a simple structure and refactor as needed.

  • Packages vs. Modules: Use packages (directories with __init__.py) for logical grouping of modules.

  • src layout: Consider using a src directory to separate application code from project-level files (setup.py, requirements.txt, etc.). This helps avoid import conflicts and clarifies the project's boundaries.

  • Typical Project Structure:

    project_name/ ├── src/ │ ├── package_name/ │ │ ├── init.py │ │ ├── module1.py │ │ ├── module2.py │ ├── main.py # Entry point ├── tests/ │ ├── init.py │ ├── test_module1.py │ ├── test_module2.py ├── docs/ │ ├── conf.py │ ├── index.rst ├── .gitignore ├── pyproject.toml or setup.py ├── README.md ├── requirements.txt or requirements-dev.txt

1.2. File Naming Conventions

  • Modules: Lowercase, with underscores for readability (e.g., my_module.py).
  • Packages: Lowercase (e.g., my_package). Avoid underscores unless necessary.
  • Tests: Start with test_ (e.g., test_my_module.py).

1.3. Module Organization Best Practices

  • Single Responsibility Principle: Each module should have a well-defined purpose.
  • Imports:
    • Order: standard library, third-party, local.
    • Absolute imports are generally preferred (e.g., from my_package.module1 import function1).
    • Use explicit relative imports (from . import sibling_module) when dealing with complex package layouts where absolute imports are overly verbose or impractical.
  • Constants: Define module-level constants in uppercase (e.g., MAX_ITERATIONS = 100).
  • Dunder names: __all__, __version__, etc. should be after the module docstring but before any imports (except from __future__). Use __all__ to explicitly define the public API.

Read the full file on GitHub · 347 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 347 lines · 4,555 tokens per session scan A 0e906927da72

Subscribe to this mod's changes

python is a cursor rule published in the GitHub repository synmux/myriad (2 stars, last pushed yesterday), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 4,555 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.