Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sukhbinder/afplay-win
Tiny utility that mimics 'afplay' in windows
https://github.com/sukhbinder/afplay-win
Last synced: about 2 months ago
JSON representation
Tiny utility that mimics 'afplay' in windows
- Host: GitHub
- URL: https://github.com/sukhbinder/afplay-win
- Owner: sukhbinder
- License: apache-2.0
- Created: 2024-11-27T14:28:23.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-27T14:30:39.000Z (about 2 months ago)
- Last Synced: 2024-11-27T18:50:43.052Z (about 2 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# afplay-win
[![PyPI](https://img.shields.io/pypi/v/afplay-win.svg)](https://pypi.org/project/afplay-win/)
[![Changelog](https://img.shields.io/github/v/release/sukhbinder/afplay-win?include_prereleases&label=changelog)](https://github.com/sukhbinder/afplay-win/releases)
[![Tests](https://github.com/sukhbinder/afplay-win/actions/workflows/test.yml/badge.svg)](https://github.com/sukhbinder/afplay-win/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/sukhbinder/afplay-win/blob/master/LICENSE)Tiny utility that mimics 'afplay' in windows
## Installation
Install this tool using `pip`:
```bash
pip install afplay-win
```
## UsageFor help, run:
```bash
afplay --help
```
You can also use:
```bash
python -m afplay --help
```
## DevelopmentTo contribute to this tool, first checkout the code. Then create a new virtual environment:
```bash
cd afplay-win
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```## Inspiration
This implementation is inspired from [playsound3](https://github.com/sjmikler/playsound3/blob/main/playsound3/)