Skip to content

Commit 1067449

Browse files
authored
remove audio (#219)
Why === * The audio service is not frequently used. * The audio service is not core to Replit. * Replit still supports audio playing via VNC. * We are planning to remove the audio service. What changed === * Remove all audio code Test plan === * CI passes
1 parent 0f7ac60 commit 1067449

File tree

8 files changed

+0
-636
lines changed

8 files changed

+0
-636
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ This repository is the home for the `replit` Python package, which provides:
77
- A fully-featured database client for [Replit DB](https://docs.replit.com/category/databases).
88
- Tools and utilities for Flask Web Development, including an interface to Replit's User Authetication service
99
- Replit user profile metadata retrieval (more coming here!).
10-
- A simple audio library that can play tones and audio files!
1110

1211
### Open Source License
1312

docs/api.rst

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -56,16 +56,3 @@ replit.info module
5656
:members:
5757
:undoc-members:
5858
:show-inheritance:
59-
60-
replit.audio module
61-
-------------------
62-
63-
.. automodule:: replit.audio
64-
:members:
65-
:undoc-members:
66-
:show-inheritance:
67-
68-
.. automodule:: replit.audio.types
69-
:members:
70-
:undoc-members:
71-
:show-inheritance:

docs/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ provides:
1414

1515
- A fully-featured `Replit DB <https://docs.repl.it/misc/database>`_ client and CLI.
1616
- A Flask–based application framework for accellerating development on the platform.
17-
- A simple audio library that can play tones and audio files!
1817
- A library to authenticate between Repls.
1918

2019
Table of Contents

src/replit/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from typing import Any
66

77
from . import database, web
8-
from .audio import Audio
98
from .database import (
109
Database,
1110
AsyncDatabase,
@@ -23,9 +22,6 @@ def clear() -> None:
2322
print("\033[H\033[2J", end="", flush=True)
2423

2524

26-
audio = Audio()
27-
28-
2925
# Previous versions of this library would just have side-effects and always set
3026
# up a database unconditionally. That is very undesirable, so instead of doing
3127
# that, we are using this egregious hack to get the database / database URL

src/replit/audio/Makefile

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)