Skip to content

Commit 2be7b31

Browse files
authored
Merge pull request #688 from rshah713/master
Create clear documentation for Keystore
2 parents a698349 + 797d2fe commit 2be7b31

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ implement the api in the easiest way, depending on the current platform.
4444
| Gyroscope ||| | | |
4545
| Humidity || | | | |
4646
| IR Blaster || | | | |
47+
| Keystore ||||||
4748
| Light || | | | |
4849
| Native file chooser ||||||
4950
| Notifications || ||||

plyer/facades/keystore.py

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
1+
'''
2+
Keystore
3+
=======
4+
The :class:`Keystore` provides a mechanism for securing/storing cryptographic keys (such as user credentials) in a container. typically needed to support authentication APIs such as OAuth2
5+
.. note::
6+
Typically needed to support authentication APIs such as OAuth2
7+
8+
Supported Platforms
9+
-------------------
10+
Android, iOS, Windows, OS X, Linux
11+
---------------
12+
'''
13+
114
class Keystore:
215
'''
3-
Keyring facade
4-
5-
.. versionadded:: x.x.x
6-
16+
Keystore facade
717
'''
818

919
def set_key(self, servicename, key, value, **kwargs):

0 commit comments

Comments
 (0)