You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I broke some links in #378, so this update fixes them. Additionally,
there are some cosmetic changes, such as updating the titles to the
correct case format.
Copy file name to clipboardExpand all lines: docs/01_overview/01_introduction.mdx
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
+
id: introduction
2
3
title: Introduction
3
-
sidebar_label: Introduction
4
4
---
5
5
6
6
importCodeBlockfrom'@theme/CodeBlock';
@@ -21,34 +21,34 @@ Actors can be executed locally or on the [Apify platform](https://docs.apify.com
21
21
22
22
If you're new to Apify, refer to the Apify platform documentation to learn [what Apify is](https://docs.apify.com/platform/about).
23
23
24
-
## Quick Start
24
+
## Quick start
25
25
26
26
This section provides a quick start guide for creating and running Actors.
27
27
28
28
### Creating Actors
29
29
30
-
To create and run Actors using the Apify Console, see the [Console documentation](https://docs.apify.com/academy/getting-started/creating-actors#choose-your-template).
30
+
To create and run Actors using the Apify Console, see the [Console documentation](https://docs.apify.com/platform/console).
31
31
32
-
For creating and running Python Actors locally, refer to the documentation for [creating and running Python Actors locally](./running_locally).
32
+
For creating and running Python Actors locally, refer to the documentation for [creating and running Python Actors locally](./running-actors-locally).
33
33
34
34
### Guides
35
35
36
36
Integrate the Apify SDK with popular web scraping libraries by following these guides:
37
-
-[Requests or HTTPX](../guides/requests_and_httpx)
38
-
-[Beautiful Soup](../guides/beautiful_soup)
37
+
-[BeautifulSoup with HTTPX](../guides/beautifulsoup-httpx)
38
+
-[Crawlee](../guides/crawlee)
39
39
-[Playwright](../guides/playwright)
40
40
-[Selenium](../guides/selenium)
41
41
-[Scrapy](../guides/scrapy)
42
42
43
-
### Usage Concepts
43
+
### Usage concepts
44
44
45
45
For a deeper understanding of the Apify SDK's features, refer to the **Usage concepts** section in the sidebar. Key topics include:
46
46
-[Actor lifecycle](../concepts/actor-lifecycle)
47
47
-[Working with storages](../concepts/storages)
48
48
-[Handling Actor events](../concepts/actor-events)
49
49
-[Using proxies](../concepts/proxy-management)
50
50
51
-
## Installing the Apify SDK Separately
51
+
## Installing the Apify SDK separately
52
52
53
53
When creating an Actor using the Apify CLI, the Apify SDK for Python is installed automatically. If you want to install it independently, use the following command:
Copy file name to clipboardExpand all lines: docs/01_overview/03_actor_structure.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
+
id: actor-structure
2
3
title: Actor structure
3
-
sidebar_label: Actor structure
4
4
---
5
5
6
6
importCodeBlockfrom'@theme/CodeBlock';
@@ -17,7 +17,7 @@ The `.actor/` directory contains the [Actor configuration](https://docs.apify.co
17
17
The Actor's runtime dependencies are specified in the `requirements.txt` file,
18
18
which follows the [standard requirements file format](https://pip.pypa.io/en/stable/reference/requirements-file-format/).
19
19
20
-
The Actor's source code is in the `src/` folder. This folder contains two important files: `main.py`, which contains the main function of the Actor, and `__main__.py`, which is the entrypoint of the Actor package, setting up the Actor [logger](../concepts/logging) and executing the Actor's main function via [`asyncio.run()`](https://docs.python.org/3/library/asyncio-runner.html#asyncio.run).
20
+
The Actor's source code is in the `src/` folder. This folder contains two important files: `main.py`, which contains the main function of the Actor, and `__main__.py`, which is the entrypoint of the Actor package, setting up the Actor [logger](../concepts/logging) and executing the Actor's main function via [`asyncio.run`](https://docs.python.org/3/library/asyncio-runner.html#asyncio.run).
0 commit comments