Skip to main content

A simple Python utility for converting the weekly assignment PDF by the "Staatsanwaltschaft Freiburg"

Project description

sitzungsdienst

Release License Issues

A simple Python utility for converting the weekly assignment PDF by the "Staatsanwaltschaft Freiburg" into csv, json as well as ics files.

Getting started

Running setup.bash will install all dependencies inside a virtual environment, ready for action:

# Set up & activate virtualenv
virtualenv -p python3 venv

# shellcheck disable=SC1091
source venv/bin/activate

# Install dependencies
python -m pip install --editable .

Usage

Using this library is straightforward:

$ sta --help
Usage: sta [OPTIONS] SOURCE

  Extract weekly assignments from SOURCE file.

Options:
  -o, --output PATH         Output filename, without extension.
  -d, --directory TEXT      Output directory.
  -f, --file-format TEXT    File format, "csv", "json" or "ics".
  -q, --query TEXT          Query assignees, eg for name, department.
  -i, --inquiries FILENAME  JSON file with parameters for automation.
  -c, --clear-cache         Remove existing files in directory first.
  -v, --verbose             Enable verbose mode.
  --version                 Show the version and exit.
  --help                    Show this message and exit.

The following code snippet provides a very basic batch processing example:

#!/bin/bash

# Create multiple calendar files at once
for arg; do
   sta -f ics -q "$arg" -o "$arg" source.pdf
done

Calling this script with something like bash script.bash alice bob charlie would give you alice.ics, bob.ics and charlie.ics, each containing their respective assignments.

However, you might want to store these information inside a json file and pass it via --inquiries:

[
    {
        "output": "study-group",
        "query": [
            "123",
            "456",
            "789"
        ]
    },
    {
        "output": "alice",
        "query": [
            "123"
        ]
    },
    {
        "output": "bob",
        "query": [
            "456"
        ]
    },
    {
        "output": "all-events",
        "query": []
    }
]

The output property resembles the filename whereas query contains all search terms. Therefore, the first entry is equivalent to this command: sta -o study-group -q 123 -q 456 -q 789 source.pdf.

Happy coding!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sitzungsdienst-1.4.4.tar.gz (8.9 kB view details)

Uploaded Source

Built Distribution

sitzungsdienst-1.4.4-py3-none-any.whl (10.1 kB view details)

Uploaded Python 3

File details

Details for the file sitzungsdienst-1.4.4.tar.gz.

File metadata

  • Download URL: sitzungsdienst-1.4.4.tar.gz
  • Upload date:
  • Size: 8.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.4.2 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.5

File hashes

Hashes for sitzungsdienst-1.4.4.tar.gz
Algorithm Hash digest
SHA256 577d296e4d4edb13d6a09d65b32f595aafc9c0d19388421df432ce5d2acdff38
MD5 ae7b7e1fa48b33fbf94ff75d46685795
BLAKE2b-256 0fb6e92bc8d0cc34ebb7ddb3d2ca4c434fb04974c6487f40ecb9807e121ef485

See more details on using hashes here.

File details

Details for the file sitzungsdienst-1.4.4-py3-none-any.whl.

File metadata

  • Download URL: sitzungsdienst-1.4.4-py3-none-any.whl
  • Upload date:
  • Size: 10.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.4.2 requests/2.25.1 setuptools/52.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.5

File hashes

Hashes for sitzungsdienst-1.4.4-py3-none-any.whl
Algorithm Hash digest
SHA256 d1af904ff2abf02827d9bde7f8a1b0f1d8098a1967c1494ac3c03c2b418a0658
MD5 2a61505afa935fe88046145e4527e1d9
BLAKE2b-256 b79c34829da3ae257c8bf7df80a316c0c16d025e579b6ebf3686e077e5a96dda

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page