Skip to content

Instantly share code, notes, and snippets.

VoiceBear Privacy Policy
Last Updated: December 2025
This Privacy Policy ("Policy") explains how the VoiceBear Team ("VoiceBear," "we," "us," or "our") collects, uses, stores, and protects information in connection with the VoiceBear application and related features and services (collectively, the "Service"). By downloading, installing, accessing, or using the Service, you acknowledge that you have read, understood, and agreed to this Policy.
1. Scope
1.1 This Policy applies to all users of the Service.
1.2 This Policy forms part of the terms governing your use of the Service and should be read together with in-app notices and related policies.
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from bs4 import BeautifulSoup
import time
import csv
import pandas as pd
base = "https:"
options = Options()
options.add_argument("--disable-notifications")
@sheep52031
sheep52031 / threading_queue.py
Created February 9, 2023 09:58
threading_queue.py
```
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import time
import queue
import threading
def worker(i):
while True: