diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7e39156 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +__pycache__/ + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..9322b47 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2022 Dadangdut33 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..e6db993 --- /dev/null +++ b/readme.md @@ -0,0 +1,20 @@ +# About + +A speech transcription and translation application using whisper AI + +# Development + +## Setup + +1. Create your virtual environment by running `python -m venv venv` +2. Activate your virtual environment by running `source venv/bin/activate` +3. Install the dependencies by running `pip install -r requirements.txt` +4. Navigate to the `speech_translate` directory, and run `python __init__.py` + +## Contributing + +Feel free to contribute to this project by forking the repository, making your changes, and submitting a pull request. You can also contribute by creating an issue if you find a bug or have a feature request. + +## License + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..e69de29 diff --git a/speech_translate/Globals.py b/speech_translate/Globals.py new file mode 100644 index 0000000..e69de29 diff --git a/speech_translate/__init__.py b/speech_translate/__init__.py new file mode 100644 index 0000000..e7f3b11 --- /dev/null +++ b/speech_translate/__init__.py @@ -0,0 +1,5 @@ +def test(AString: str): + print(AString) + + +test("Hello World") \ No newline at end of file