Privacy Policy Effective Date: October 4th, 2025 App Name: Bhakti Aarti Developer: k3kventures Contact: sultanmirzadev@gmail.com --- 1. Introduction This Privacy Policy explains how we collect, use, and protect your personal information when you use our Android application "Bhakti Aarti" ("App"). By using the App, you agree to the terms of this Privacy Policy. --- 2. Information We Collect a. Voice Input Our App may request access to your device’s microphone in order to enable voice-based search functionality. When you use this feature: - The app listens only when you activate the voice input manually. - Your voice input is processed to understand your search query. - We do not store or share your voice recordings or voice data. Voice data may be processed by Google's speech recognition services (or similar services) if you are using a device with Google Play Services enabled. Please refer to Google’s Privacy Policy at: https://policies.go...
Resolve SSL Certificate issue while pip install in Python
- Get link
- X
- Other Apps
SSL Certificate issue in python pipIf you are facing issues while installing pip packages,$ pip install pandasTo resolve it, we need to set the certificate path.1. Find the Cert path.2. Set the cert path.3. Run pip installIn MacBook:Find the ssl Path first:Run this command in terminal$ python -c "import ssl; print(ssl.get_default_verify_paths())"OR$ python3 -c "import ssl; print(ssl.get_default_verify_paths())"It will give output something like this
DefaultVerifyPaths(cafile='/opt/homebrew/etc/openssl@3/cert.pem', capath='/opt/homebrew/etc/openssl@3/certs', openssl_cafile_env='SSL_CERT_FILE', openssl_cafile='/opt/homebrew/etc/openssl@3/cert.pem', openssl_capath_env='SSL_CERT_DIR', openssl_capath='/opt/homebrew/etc/openssl@3/certs')
Now set this path before running pip command,Run this in your terminal:$ export REQUESTS_CA_BUNDLE="/opt/homebrew/etc/openssl@3/cert.pem"You can set this path in your zhrc or basic file.$ vim ~/.zshrcexport REQUESTS_CA_BUNDLE="/opt/homebrew/etc/openssl@3/cert.pem":wqNote-Use path which you get in the output above.
- Get link
- X
- Other Apps
Popular posts from this blog
DBT tool connect Athena from Local- AWS SSO
Bhakti-Aarti- Android app Privacy policy
Privacy Policy Effective Date: October 4th, 2025 App Name: Bhakti Aarti Developer: k3kventures Contact: sultanmirzadev@gmail.com --- 1. Introduction This Privacy Policy explains how we collect, use, and protect your personal information when you use our Android application "Bhakti Aarti" ("App"). By using the App, you agree to the terms of this Privacy Policy. --- 2. Information We Collect a. Voice Input Our App may request access to your device’s microphone in order to enable voice-based search functionality. When you use this feature: - The app listens only when you activate the voice input manually. - Your voice input is processed to understand your search query. - We do not store or share your voice recordings or voice data. Voice data may be processed by Google's speech recognition services (or similar services) if you are using a device with Google Play Services enabled. Please refer to Google’s Privacy Policy at: https://policies.go...
Comments
Post a Comment