Skip to content

Commit

Permalink
chore: note down where to start next
Browse files Browse the repository at this point in the history
  • Loading branch information
honzajavorek committed Jan 24, 2025
1 parent 36992d0 commit a6d74c9
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -74,6 +74,13 @@ $ apify login
Success: You are logged in to Apify as user1234!
```

<!--
it seems apify init won't recognize the project only with requirements.txt
https://crawlee.dev/python/docs/introduction/deployment

Check failure on line 79 in sources/academy/webscraping/scraping_basics_python/13_platform.md

View workflow job for this annotation

GitHub Actions / lint

[vale] reported by reviewdog 🐶 [Vale.Terms] Use 'Crawlee' instead of 'crawlee'. Raw Output: {"message": "[Vale.Terms] Use 'Crawlee' instead of 'crawlee'.", "location": {"path": "sources/academy/webscraping/scraping_basics_python/13_platform.md", "range": {"start": {"line": 79, "column": 13}}}, "severity": "ERROR"}
https://packaging.python.org/en/latest/tutorials/installing-packages/
https://docs.apify.com/sdk/python/docs/overview/introduction
-->

## Creating an Actor

...
Expand Down

0 comments on commit a6d74c9

Please sign in to comment.