Skip to main content

A Python package for downloading and extracting the data from heisse-preise.io with no dependencies.

Project description

Heisse Preise Data

Project Overview

This project provides compressed datasets derived from heisse-preise.io, offering an easy and efficient way to access up-to-date pricing data from supermarkets in Austria.

Data Sources

The data originates from:

Build Process

  • The dataset is built daily to ensure the latest pricing data is available.
  • The most recent build can be downloaded from the following link: https://github.com/falknerdominik/heisse-preise-data/releases/latest/download/latest-canonical.tar.gz

Usage Examples

Download and Extract Data

Python Package

pip install heisse-preise-data
from heisse_preise_data import download

try:
    raw = download()
    print(json.dumps(raw, indent=2))
except RuntimeError as e:
    print(f"An error occurred: {e}")
from heisse_preise_data import download
import pandas as pd

try:
    data = pd.DataFrame(download())
    data.head(5)
except RuntimeError as e:
    print(f"An error occurred: {e}")

Python Example

import requests
import tarfile
import io
import json

url = 'https://github.com/falknerdominik/heisse-preise-data/releases/latest/download/latest-canonical.tar.gz'
json_filename = 'latest-canonical.json'

try:
    # Download the tar.gz file into memory
    response = requests.get(url)
    response.raise_for_status()

    # Open the tar.gz file directly from memory
    with tarfile.open(fileobj=io.BytesIO(response.content), mode='r:gz') as tar:
        # Extract and read the JSON file directly from the tar archive
        json_file = tar.extractfile(json_filename)
        if json_file:
            json_data = json.load(json_file)
            print(json.dumps(json_data, indent=2))
        else:
            print(f"{json_filename} not found in the archive.")

except requests.RequestException as e:
    print(f"Error downloading data: {e}")
except (tarfile.TarError, json.JSONDecodeError) as e:
    print(f"Error processing files: {e}")

JavaScript Example (Node.js)

const https = require('https');
const fs = require('fs');
const tar = require('tar');

const url = 'https://github.com/falknerdominik/heisse-preise-data/releases/latest/download/latest-canonical.tar.gz';

https.get(url, (response) => {
    const file = fs.createWriteStream('latest-canonical.tar.gz');
    response.pipe(file);
    file.on('finish', () => {
        file.close();
        tar.x({ file: 'latest-canonical.tar.gz' }).then(() => {
            fs.readFile('latest-canonical.json', (err, data) => {
                if (err) throw err;
                const jsonData = JSON.parse(data);
                console.log(JSON.stringify(jsonData, null, 2));
            });
        });
    });
}).on('error', (err) => {
    console.error(Error downloading data: ${err.message});
});

Contributing

If you wish to contribute or improve the project, feel free to open an issue or submit a pull request.

Build

python -m build

License

This project is licensed under the terms provided by the original data sources.

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

heisse_preise_data-1.0.3.tar.gz (4.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

heisse_preise_data-1.0.3-py3-none-any.whl (5.3 kB view details)

Uploaded Python 3

File details

Details for the file heisse_preise_data-1.0.3.tar.gz.

File metadata

  • Download URL: heisse_preise_data-1.0.3.tar.gz
  • Upload date:
  • Size: 4.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.2

File hashes

Hashes for heisse_preise_data-1.0.3.tar.gz
Algorithm Hash digest
SHA256 390324ba9766862cc60616f9bb4b0b2c35fa8ceb72546aa83f75b4c14e9b7901
MD5 cdf339a98a70a0d4a94c4cb781f76232
BLAKE2b-256 365d730d494c88a5f8f4ba5e962a5b89e8f023d3b23ae7190925456642eb3824

See more details on using hashes here.

File details

Details for the file heisse_preise_data-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for heisse_preise_data-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 fea29499eaca8a2cc14f21400c9523697dc54748ab23fbf374aca479f3b43160
MD5 9d2d2ccc0dff9eead28cfd151c4cecea
BLAKE2b-256 94ef2744b9c00422ffae152d7e896f9ec227760eb9b2cd2aadd25b52973a554a

See more details on using hashes here.

Supported by

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