This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Checkout | |
| git checkout --orphan latest_branch | |
| # Add all the files | |
| git add -A | |
| # Commit the changes | |
| git commit -am "commit message" | |
| # Delete the branch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import json | |
| import requests | |
| from pdf2image import convert_from_path | |
| from pydub import AudioSegment | |
| from pydub.utils import make_chunks | |
| import subprocess | |
| import time | |
| # Configuration |