website/versioned_docs/version-3.14/introduction/07-saving-data.mdx
import RunnableCodeBlock from '@site/src/components/RunnableCodeBlock'; import ApiLink from '@site/src/components/ApiLink'; import Example from '!!raw-loader!roa-loader!./07-example.ts';
A data extraction job would not be complete without saving the data for later use and processing. You've come to the final and most difficult part of this tutorial so make sure to pay attention very carefully!
First, add a new import to the top of the file:
import { PlaywrightCrawler, Dataset } from 'crawlee';
Then, replace the console.log(results) call with:
await Dataset.pushData(results);
and that's it. Unlike earlier, we are being serious now. That's it, you're done. The final code looks like this:
<RunnableCodeBlock className="language-js" type="playwright"> {Example} </RunnableCodeBlock>Dataset.pushData()<ApiLink to="core/class/Dataset#pushData">Dataset.pushData()</ApiLink> is a function that saves data to the default <ApiLink to="core/class/Dataset">Dataset</ApiLink>. Dataset is a storage designed to hold data in a format similar to a table. Each time you call Dataset.pushData() a new row in the table is created, with the property names serving as column titles. In the default configuration, the rows are represented as JSON files saved on your disk, but other storage systems can be plugged into Crawlee as well.
:::info Automatic dataset initialization in Crawlee
Each time you start Crawlee a default Dataset is automatically created, so there's no need to initialize it or create an instance first. You can create as many datasets as you want and even give them names. For more details see the Result storage guide and the <ApiLink to="core/class/Dataset#open">Dataset.open()</ApiLink> function.
:::
Unless you changed the configuration that Crawlee uses locally, which would suggest that you knew what you were doing, and you didn't need this tutorial anyway, you'll find your data in the storage directory that Crawlee creates in the working directory of the running script:
{PROJECT_FOLDER}/storage/datasets/default/
The above folder will hold all your saved data in numbered files, as they were pushed into the dataset. Each file represents one invocation of Dataset.pushData() or one table row.
:::tip Single file data storage options
If you would like to store your data in a single big file, instead of many small ones, see the Result storage guide for Key-value stores.
:::
Next, you'll see some improvements that you can add to your crawler code that will make it more readable and maintainable in the long run.