1 | Metadata-Version: 2.1
|
---|
2 | Name: ammosreader
|
---|
3 | Version: 0.1.dev59+g94f7c24.d20220506
|
---|
4 | Summary: ammosreader: tool to parse R&S Ammos files
|
---|
5 | Home-page: http://gitlab.kid.local/kidzg/ammosreader
|
---|
6 | Author: KIDZg
|
---|
7 | License: UNKNOWN
|
---|
8 | Project-URL: Source, http://gitlab.kid.local/kidzg/ammosreader
|
---|
9 | Keywords: metadata
|
---|
10 | Platform: linux
|
---|
11 | Classifier: Development Status :: 5 - Stable
|
---|
12 | Classifier: Intended Audience :: Developers
|
---|
13 | Classifier: Operating System :: POSIX
|
---|
14 | Classifier: Programming Language :: Python :: 3
|
---|
15 | Classifier: Programming Language :: Python :: 3 :: Only
|
---|
16 | Classifier: Programming Language :: Python :: 3.7
|
---|
17 | Classifier: Programming Language :: Python :: 3.8
|
---|
18 | Classifier: Programming Language :: Python :: 3.9
|
---|
19 | Classifier: Programming Language :: Python :: 3.10
|
---|
20 | Classifier: Topic :: Utilities
|
---|
21 | Requires-Python: >=3.10
|
---|
22 | Description-Content-Type: text/text
|
---|
23 | Provides-Extra: testing
|
---|
24 | License-File: LICENSE
|
---|
25 |
|
---|
26 |
|
---|
27 | # Table of Contents
|
---|
28 |
|
---|
29 | 1. [AmmosReader](#org2244bce)
|
---|
30 | 2. [Installation](#orge8b118b)
|
---|
31 | 3. [Usage](#orgcea0ee3)
|
---|
32 | 1. [audio\_reader.py](#orgae8ea86)
|
---|
33 | 2. [iqdw\_reader.py](#orge3ddc95)
|
---|
34 | 3. [pdw\_reader.py](#org59847de)
|
---|
35 |
|
---|
36 |
|
---|
37 |
|
---|
38 | <a id="org2244bce"></a>
|
---|
39 |
|
---|
40 | # AmmosReader
|
---|
41 |
|
---|
42 | Project containing necessary File- or SocketStream-Reader to read the various datastreams of Ammos
|
---|
43 |
|
---|
44 |
|
---|
45 | <a id="orge8b118b"></a>
|
---|
46 |
|
---|
47 | # Installation
|
---|
48 |
|
---|
49 | git clone http://gitlab.kid.local/kidzg/ammosreader.git
|
---|
50 | cd ammosreader
|
---|
51 | python3 -m pip install .
|
---|
52 |
|
---|
53 |
|
---|
54 | <a id="orgcea0ee3"></a>
|
---|
55 |
|
---|
56 | # Usage
|
---|
57 |
|
---|
58 | The sample\_scripts subdirectory contains multiple scripts.
|
---|
59 |
|
---|
60 |
|
---|
61 | <a id="orgae8ea86"></a>
|
---|
62 |
|
---|
63 | ## audio\_reader.py
|
---|
64 |
|
---|
65 | python3 audio_reader.py 'path_to_ammos_file'
|
---|
66 |
|
---|
67 |
|
---|
68 | <a id="orge3ddc95"></a>
|
---|
69 |
|
---|
70 | ## iqdw\_reader.py
|
---|
71 |
|
---|
72 | python3 iqdw_reader.py 'path_to_iqdw_file'
|
---|
73 |
|
---|
74 |
|
---|
75 | <a id="org59847de"></a>
|
---|
76 |
|
---|
77 | ## pdw\_reader.py
|
---|
78 |
|
---|
79 | python3 pdw_reader.py 'path_to_pdw_file'
|
---|
80 |
|
---|
81 |
|
---|
82 |
|
---|