Skip to main content

Extract and process code blocks from markdown files.

Project description

codeblocks

Extract and process code blocks from markdown files.

Examples

Extract Python code blocks:

codeblocks --python README.md

Check formatting of Python code blocks with black:

codeblocks --python README.md | black --check -

Reformat Python code blocks with black, in place:

codeblocks --python README.md -- black -

Type check Python code blocks with mypy:

mypy somemodule anothermodule <(codeblocks --python README.md)

Full type checking example

def plus(x: int, y: int) -> int:
    return x + y

plus(1, '2')
$ mypy --pretty --strict <(codeblocks --python README.md)
/dev/fd/63:5: error: Argument 2 to "plus" has incompatible type "str"; expected "int"
        plus(1, '2')
                ^
Found 1 error in 1 file (checked 1 source file)

TODO

  • protect against empty (and weird?) in-place modifications
  • use same regex for both modes
  • example for pytest
  • automatically add async for functions with await in them
  • support other languages
  • use proper markdown parser
  • support multiple files

Related

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

codeblocks-0.1.1.post1.tar.gz (6.6 kB view hashes)

Uploaded Source

Built Distribution

codeblocks-0.1.1.post1-py3-none-any.whl (7.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page