From a6d74c9a9f235b830a51f12930e8e7260bfd510c Mon Sep 17 00:00:00 2001 From: Honza Javorek Date: Fri, 24 Jan 2025 15:40:11 +0100 Subject: [PATCH] chore: note down where to start next --- .../webscraping/scraping_basics_python/13_platform.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sources/academy/webscraping/scraping_basics_python/13_platform.md b/sources/academy/webscraping/scraping_basics_python/13_platform.md index a119f30c8..d161caf39 100644 --- a/sources/academy/webscraping/scraping_basics_python/13_platform.md +++ b/sources/academy/webscraping/scraping_basics_python/13_platform.md @@ -39,7 +39,7 @@ In the root of the project, let's create a file called `requirements.txt`, with crawlee ``` -Each line in the file represents a single dependency, but our program has just one. With `requirements.txt` in place, Apify can run `pip install -r requirements.txt` to download and install all dependencies of the project before starting our program. +Each line in the file represents a single dependency, but so far our program has just one. With `requirements.txt` in place, Apify can run `pip install -r requirements.txt` to download and install all dependencies of the project before starting our program. :::tip Packaging projects @@ -74,6 +74,13 @@ $ apify login Success: You are logged in to Apify as user1234! ``` + + ## Creating an Actor ...