Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/plun1331/hytek
Parses, reads, and writes HyTek meet entries and results files.
https://github.com/plun1331/hytek
Last synced: about 2 months ago
JSON representation
Parses, reads, and writes HyTek meet entries and results files.
- Host: GitHub
- URL: https://github.com/plun1331/hytek
- Owner: plun1331
- License: bsd-3-clause
- Created: 2024-10-23T18:50:57.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-10-27T06:27:03.000Z (2 months ago)
- Last Synced: 2024-10-27T07:58:00.342Z (2 months ago)
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HyTek
Parses, reads, and writes HyTek meet entries and results files.
## File Format Support
| Format | Reading | Writing | Notes |
|:------:|:-------:|:-------:|:----------------------------------:|
| .hy3 | ✅ | ❌ | Only tested with meet result files |
| .sd3 | ❌ | ❌ | |
| .cl2 | ❌ | ❌ | |
| .ev3 | ❌ | ❌ | |
| .hyv | ❌ | ❌ | |## Installation
```bash
pip install hytek
```## Usage
```python
import hytek# for a .hy3 file
file = hytek.Hy3File("file.hy3")
file.read()# .hy3 in a zip file
file = hytek.Hy3File("file.hy3") # if left blank for zip files, will detect first .hy3 file
file.read_zip("test.zip")
```