I am looking for a way to share my app with my coworkers without giving them the credentials for the database that the app accesses. I found keyring (https://pypi.org/project/keyring/) and thought that this might be a solution to this issue. What I'm not sure of is how I can share this across multiple devices. It seems keyring saves this data in the OS. Does that now mean that I can't use this in the way that I'd like to?
using python keyring on app used across multiple devices
312 views Asked by NMALM At
1
There are 1 answers
Related Questions in PYTHON
- How to store a date/time in sqlite (or something similar to a date)
- Instagrapi recently showing HTTPError and UnknownError
- How to Retrieve Data from an MySQL Database and Display it in a GUI?
- How to create a regular expression to partition a string that terminates in either ": 45" or ",", without the ": "
- Python Geopandas unable to convert latitude longitude to points
- Influence of Unused FFN on Model Accuracy in PyTorch
- Seeking Python Libraries for Removing Extraneous Characters and Spaces in Text
- Writes to child subprocess.Popen.stdin don't work from within process group?
- Conda has two different python binarys (python and python3) with the same version for a single environment. Why?
- Problem with add new attribute in table with BOTO3 on python
- Can't install packages in python conda environment
- Setting diagonal of a matrix to zero
- List of numbers converted to list of strings to iterate over it. But receiving TypeError messages
- Basic Python Question: Shortening If Statements
- Python and regex, can't understand why some words are left out of the match
Related Questions in CREDENTIALS
- what really controls the permissions: UID or eUID?
- Error on Google Sign In CredentialManager, using Jetpack Compose
- Windows Custom Credential Provider is not displaying tile on logon for all users in a pc
- How do I list which Jenkins credentials used per pipeline in the script console?
- How to correctly implement passkeys for web?
- Chrome flag #filling-across-affiliated-websites vs #filling-across-grouped-sites
- mail jakarta send whit proxy
- multiple azure chatbots doesn't authenticate
- Access AWS Secrets Manager with IMDSv2 set to required
- I'm using NextJs with Auth.Js version 5, How can I retrive the access_token upon sign in so as to make further API calls
- I want to convert the encrypted user login creds to tamil language and store in mysqll db
- Install a private package with credentials from requirements.txt
- Access a UNC path with .NET Core Web API
- Error retrieving files from sharepoint via python
- PayPal bearer resets after x amount of seconds
Related Questions in PYTHON-KEYRING
- keyring error when importing: module 'io' has no attribute 'text_encoding'
- Problem with keyring.get_credential() returning None
- Nuitka compilation error: No keyring backend available
- How do I retrieve a password from Keychain Access using keyring?
- Unable to use Python keyring module from systemd service
- Working Poetry project with private dependencies inside Docker
- Python python_keyring package - Upgrade of Python has broken keyring
- Keyring stops working after first get_password() call when running Flask project with gunicorn in supervisor
- Access user keyring from systemd hook or crontab
- Pycharm not working with Google Artifact Repository keyring, keeps asking for user
- How do I list and access the secrets stored in Ubuntu's keyring from the command line?
- Retrieve keyring username on python
- Hiding passwords in python file
- Python Keyring throws error "OSError: [WinError 8] Not enough memory resources are available to process this command"
- How can I serialize a Python request's cookies for UTF-8 storage?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
If you want to publish an app for others to use, you should look into environment variables on the platform that you're hosting the app on.
That's where you'll store any credentials, accessing them from your Python application will depend on what platform you're using but there will be documentation on how to do that on your platforms docs.