Sharing a page through a private link (inviting others to your workspace)
To share a page through a private link, you must invite the person you want to share the page with to your workspace. To learn how to do this, please check the user management documentation. After inviting the person to your workspace, you can share the page with them by clicking on the share button on the top right corner of the editor.Sharing a page through a public link
To share a page through a public link, click on the share button on the top right corner of the editor. Then, toggle the public page switch to “on”. Finally, copy the public link and share it with others. Anyone with the link will be able to view the page.Exporting a page as a PDF
You can export both notebooks and dashboards as PDFs. To do this, click on “Share” button on the top right corner of the editor and select “Export as PDF”.Exporting pages as PDFs is only available in Briefer’s paid plans.
Exporting a plot as a PNG image
Whenever you create an image plot with Python or with the “Visualizations” block, you can export it as a PNG image. To do this, click on thePNG
button on the bottom right corner of your block.
Exporting query results and dataframes as a CSV file
All query results can be downloaded as CSV files. To do this, click on theCSV
button on the bottom right corner of your query block.
If you want to download a dataframe as a CSV file, you can do a
SELECT *
using DuckDB in a SQL block and then click on the CSV
button on the bottom right corner of the block.Exporting other files
If you want to export any other type of file, you can just write it to disk using Python’s built-in functions. Then, open the files panel, find the file you want to export, and click on theDownload
button.
For more information about files and the files panel, check out the files documentation.