Nástroj pro hromadné stahování stenografických přepisů obsahujících klíčové slovo
  • TypeScript 100%
Find a file
2026-05-06 13:18:39 +02:00
src feat: more configuration options, ready for release 2026-04-28 19:22:34 +02:00
.gitignore feat: more configuration options, ready for release 2026-04-28 19:22:34 +02:00
bun.lock feat: add docx exports 2026-04-28 17:40:57 +02:00
LICENSE feat: init 2026-04-28 17:24:40 +02:00
package.json feat: add docx exports 2026-04-28 17:40:57 +02:00
README.md docs(README): add a user-facing tutorial 2026-05-06 13:18:39 +02:00
tsconfig.json feat: init 2026-04-28 17:24:40 +02:00

poslanecka-snemovna-fulltext-scraper

How to download

Go to Releases and download the correct version for your computer:

  • If you use Windows, it's psfs_windows_x64.exe
  • If you use Linux, it's psfs_linux_x64
  • If you use macOS, it depends:
    • if you computer has Apple Silicone (eg. M1 to M5 chip), it's psfs_mac_arm64
    • otherwise, it's psfs_mac_x64

Move the file to some folder where you want to use it (in this tutorial, we'll assume you moved it to your Desktop), and rename it to psfs. Then, follow instructions for your platform.

macOS

Open your Terminal app, then navigate to the folder containing psfs, for example:

cd Desktop

Now, you need to make the program executable by running the following two commands. You only need to do this once.

chmod +x ./psfs
xattr -d com.apple.quarantine ./psfs

Now, you can use the app.

Linux

Follow the macOS tutorial, except for the xattr command: you only need to run the chmod one.

Windows

Ask your IT support, hahah.

How to use

In your terminal, navigate to the folder where psfs lives.

To list all available options, do this:

./psfs fetch --help

To download all mentions of Ukraine from the year 2025 and save them into the 2025.docx Word document, do this:

./psfs fetch "Ukrajin" --all-time --filter-year 2025 --format docx --output 2025.docx

How to update

Delete the psfs file you already have, and follow the How to download tutorial again.

How to develop

To install dependencies:

bun install

To run:

bun run index.ts

This project was created using bun init in bun v1.3.11. Bun is a fast all-in-one JavaScript runtime.