From 69475c0b7b2b396d7cc4bb9593576599411cdb58 Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Tue, 30 Jul 2024 16:01:18 +0200 Subject: [PATCH 1/2] Add link. --- README.md | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index beb809c..65f9278 100644 --- a/README.md +++ b/README.md @@ -16,18 +16,8 @@ We will provide explanations and references whenever we rely on advanced feature ## Getting started -Run - -```bash -# Install necessary tools -cargo install mdbook -cargo install --git https://github.com/mainmatter/100-exercises-to-learn-rust mdbook-exercise-linker - -# Serve the book locally -cd book && mdbook serve --port 3012 --open -``` - -to open the companion book for this course in your browser. +Open [the companion book for this course](https://rust-exercises.com/rust-python-interop/) in your browser. +Follow the instructions there to get started. ## Requirements From 790b1474a630cdc02f7f33c8053b0b3b4d245070 Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Tue, 30 Jul 2024 16:01:22 +0200 Subject: [PATCH 2/2] Reword. --- book/src/01_intro/00_welcome.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/book/src/01_intro/00_welcome.md b/book/src/01_intro/00_welcome.md index 9a88078..7929a35 100644 --- a/book/src/01_intro/00_welcome.md +++ b/book/src/01_intro/00_welcome.md @@ -1,9 +1,7 @@ # Welcome -Welcome to **"Rust-Python interoperability"**! - -This course will teach you how to write Python extensions in Rust, -and how to call Rust code from Python. +Welcome to **"Rust-Python interoperability"**!\ +This course will teach you how to call Rust code from Python, packaged as a native extension module. We assume you are familiar with both Rust and Python, but we don't assume any prior interoperability knowledge. We will provide a brief explanation and references whenever we rely on advanced language features in either language.