Skip to content

Commit

Permalink
fixed links, description and deployment actions
Browse files Browse the repository at this point in the history
  • Loading branch information
JLipp committed Mar 11, 2024
1 parent f6b6893 commit 63d4eb2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Autobump version
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
# Python module to read Advanced Quality Data Exchange Format (AQDEF) files
[![PyPI Latest Release](https://img.shields.io/pypi/v/pandas.svg)](https://test.pypi.org/project/aqdefreader/)
[![PyPI Latest Release](https://img.shields.io/pypi/v/aqdefreader)](https://pypi.org/project/aqdefreader/)
[![Python Package](https://github.com/successfactory/aqdef-reader/actions/workflows/main.yml/badge.svg)](https://github.com/successfactory/aqdef-reader/actions/workflows/main.yml)
[![CodeQL](https://github.com/successfactory/aqdef-reader/actions/workflows/codeql.yml/badge.svg)](https://github.com/successfactory/aqdef-reader/actions/workflows/codeql.yml)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

**aqdef-reader** is a Python module to read AQDEF (Q-DAS or qdas) ASCII files via Python. The package comes with data structures to cover the tranfer file format header elements such as
parts (Teiletyp) and characteristics (Merkmale). As the ASCII files might already come with measured, values, the reader function can already read these values (Messwerte) and stores
them as part of the characteristics described in the transfer file.
**aqdef-reader** is a Python module designed for reading DFQ files (Q-DAS ASCII transfer format). This package provides data structures to handle elements of the transfer file format, including parts and characteristics. It is capable of reading measured values contained within the DFQ files, integrating these values into the characteristics detailed in the transfer file.

The package `aqdefreader` is based on the official
[Q-DAS ASCII transfer format manual](https://training.q-das.de/fileadmin/mediamanager/Datenformat_Dokumente/Q-DAS_ASCII-Transfer-Format_ENG_V12_ec.pdf) tranfer format released by Q-DAS GmbH.
The package `aqdefreader` is developed in accordance with the official [Q-DAS ASCII transfer format manual](https://training.q-das.de/fileadmin/mediamanager/Datenformat_Dokumente/Q-DAS_ASCII-Transfer-Format_ENG_V12_ec.pdf), ensuring compatibility and reliability in processing and interpreting data formatted according to the standards set by Q-DAS GmbH.

## Installation
The source code is currently hosted on GitHub at:
Expand Down
2 changes: 1 addition & 1 deletion aqdefreader/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"A module to read Advanced Quality Data Exchange Format files."
"A module to read DFQ files in the Q-DAS ASCII transfer format."

from .part import Part
from .characteristic import Characteristic
Expand Down

0 comments on commit 63d4eb2

Please sign in to comment.