SoundGraph 0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
SoundGraph-0.2/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Al Mustafiz Bappy
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.1
2
+ Name: SoundGraph
3
+ Version: 0.2
4
+ Summary: Real-time audio visualization tool
5
+ Home-page: https://github.com/bappy-3/sound-graph
6
+ Author: Al Mustafiz Bappy
7
+ Author-email: almustafizbappy@gmail.com
8
+ License: MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+
12
+ SoundGraph-
13
+
14
+ SoundGraph is a Python package that allows you to visualize real-time audio data while also performing speech recognition on the audio stream.
15
+
16
+ Installation-
17
+ You can install SoundGraph using pip:
18
+ 'pip install SoundGraph'
19
+
20
+ Usage-
21
+
22
+ To use SoundGraph, simply import the SoundGraph module and call the start_visualization() function:
23
+
24
+ ''' import SoundGraph
25
+
26
+ SoundGraph.start_visualization()
27
+ '''
28
+
29
+ Contributing-
30
+
31
+ If you would like to contribute to SoundGraph, please fork the repository and submit a pull request. You can also submit issues or feature requests through the issue tracker.
32
+
33
+ License-
34
+
35
+ SoundGraph is licensed under the MIT License. See LICENSE for more information.
@@ -0,0 +1,24 @@
1
+ SoundGraph-
2
+
3
+ SoundGraph is a Python package that allows you to visualize real-time audio data while also performing speech recognition on the audio stream.
4
+
5
+ Installation-
6
+ You can install SoundGraph using pip:
7
+ 'pip install SoundGraph'
8
+
9
+ Usage-
10
+
11
+ To use SoundGraph, simply import the SoundGraph module and call the start_visualization() function:
12
+
13
+ ''' import SoundGraph
14
+
15
+ SoundGraph.start_visualization()
16
+ '''
17
+
18
+ Contributing-
19
+
20
+ If you would like to contribute to SoundGraph, please fork the repository and submit a pull request. You can also submit issues or feature requests through the issue tracker.
21
+
22
+ License-
23
+
24
+ SoundGraph is licensed under the MIT License. See LICENSE for more information.
@@ -0,0 +1,35 @@
1
+ Metadata-Version: 2.1
2
+ Name: SoundGraph
3
+ Version: 0.2
4
+ Summary: Real-time audio visualization tool
5
+ Home-page: https://github.com/bappy-3/sound-graph
6
+ Author: Al Mustafiz Bappy
7
+ Author-email: almustafizbappy@gmail.com
8
+ License: MIT
9
+ Description-Content-Type: text/markdown
10
+ License-File: LICENSE
11
+
12
+ SoundGraph-
13
+
14
+ SoundGraph is a Python package that allows you to visualize real-time audio data while also performing speech recognition on the audio stream.
15
+
16
+ Installation-
17
+ You can install SoundGraph using pip:
18
+ 'pip install SoundGraph'
19
+
20
+ Usage-
21
+
22
+ To use SoundGraph, simply import the SoundGraph module and call the start_visualization() function:
23
+
24
+ ''' import SoundGraph
25
+
26
+ SoundGraph.start_visualization()
27
+ '''
28
+
29
+ Contributing-
30
+
31
+ If you would like to contribute to SoundGraph, please fork the repository and submit a pull request. You can also submit issues or feature requests through the issue tracker.
32
+
33
+ License-
34
+
35
+ SoundGraph is licensed under the MIT License. See LICENSE for more information.
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ SoundGraph.egg-info/PKG-INFO
5
+ SoundGraph.egg-info/SOURCES.txt
6
+ SoundGraph.egg-info/dependency_links.txt
7
+ SoundGraph.egg-info/entry_points.txt
8
+ SoundGraph.egg-info/requires.txt
9
+ SoundGraph.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ sound_graph = sound_graph:main
@@ -0,0 +1,4 @@
1
+ numpy
2
+ matplotlib
3
+ SpeechRecognition
4
+ pyaudio
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,25 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='SoundGraph',
5
+ version='0.2',
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ 'numpy',
9
+ 'matplotlib',
10
+ 'SpeechRecognition',
11
+ 'pyaudio'
12
+ ],
13
+ entry_points={
14
+ 'console_scripts': [
15
+ 'sound_graph = sound_graph:main'
16
+ ]
17
+ },
18
+ author='Al Mustafiz Bappy',
19
+ author_email='almustafizbappy@gmail.com',
20
+ description='Real-time audio visualization tool',
21
+ long_description=open('README.md').read(),
22
+ long_description_content_type='text/markdown',
23
+ url='https://github.com/bappy-3/sound-graph',
24
+ license='MIT'
25
+ )