Metadata-Version: 2.1
Name: credmgr
Version: 1.1.4
Summary: Credential Manager API Client
Home-page: https://credmgr.jesassn.org
Author: Lil_SpazJoekp
Author-email: spaz@jesassn.org
License: Proprietary
Description: CredentialManager
        =================
        
        Client for interacting with Credential Manager API
        
        -  API version: 1.0
        -  Package version: 1.0.1
        
        Requirements
        ------------
        
        Python 3.6+
        
        Installation & Usage
        --------------------
        
        .. code:: sh
        
            pip install credmgr
        
        Then import the package:
        
        .. code:: python
        
            import CredentialManager
        
        Getting Started
        ---------------
        
        .. code:: python
        
            import CredentialManager
        
            credentialManager = CredentialManager.client(api_token='apiToken')
        
            # List all Reddit apps
            redditApps = credentialManager.reddit_apps()
            for redditApp in redditApps:
                print(redditApp.app_name)
        
            # Create a Reddit app
            redditApp = credentialManager.reddit_app.create(app_name='redditAppName', client_id='client_id', client_secret='client_secret', user_agent='user_agent', redirect_uri='redirect_uri')
        
            # Get the app by id
            redditApp = credentialManager.reddit_app(1)
        
            # Edit the Reddit app
            redditApp.edit(client_id='new Client_id')
        
            # Delete the app
            redditApp.delete()
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Classifier: License :: Other/Proprietary License
Requires-Python: >=3.6
Provides-Extra: test
Provides-Extra: docs
