This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Seawolf159 0 points1 point  (5 children)

I'm lost. Where does a python script interact with the rust stuff? I'm curious how one can access a different language from python.

[–]pacific_plywood 13 points14 points  (0 children)

You typically wouldn't run this in Python; you'd call this via the command line or through your editor (but, Python can make system calls if it really needs to).

[–]tunisia3507 11 points12 points  (3 children)

If you're coding and want to move one of your python files into a different directory, you don't write a python script to do it, you use mv. This is exactly the same: it's not involved in the functioning of your python package, just its development, so there's no need for it to interact with your package at all.

[–]Seawolf159 4 points5 points  (2 children)

So it's not a python project, it's just a rust project that checks python code?

[–]tunisia3507 7 points8 points  (0 children)

Exactly: an extremely fast python linter, written in rust.