Metadata-Version: 1.2
Name: fluxx_wrapper
Version: 0.0.4
Summary: A simple wrapper around Fluxx GMS's REST API.
Home-page: https://github.com/condad/fluxx-python-sdk
Author: Connor Sullivan
Author-email: sully4792@gmail.com
License: UNKNOWN
Download-URL: https://github.com/condad/fluxx-python-sdk/tarball/0.0.4
Description-Content-Type: text/markdown
Description: # Fluxx API Python Client
        Simple wrapper around the Fluxx GMS API.
        
        ## Installation
        ```bash
        $ pip install fluxx-python-sdk
        ```
        
        ## Example Usage
        
        ```python
        from fluxx_wrapper import FluxxClient, FluxxError
        
        # initialize client
        fluxx = FluxxClient(
            os.getenv('YOUR_INSTANCE'),
            os.getenv('YOUR_CLIENT_ID'),
            os.getenv('YOUR_CLIENT_SECRET'),
            version='v2',
            style='full'
        )
        
        # list model attributes
        fields = fluxx.model_attribute.list({
            cols=['attribute_type', 'description', 'legacy_name', 'model_type'],
            per_page=10000
        })
        
          # example workflow, set empty description to regex-matching legacy names
        for field in fields:
            if not 'description' in field:
                legacy_name = field['legacy_name']
        
                if re.match(r'\(.*`.*`\)', legacy_name):
                    legacy_name = legacy_name.split('`')[1]
        
                desc = legacy_name.replace('_', ' ')
                desc = titlecase(desc)
        
                body = {'description': desc}
        
                try:
                    updated = fluxx.model_attribute.update(field['id'], body)
                except FluxxError as e:
                    print(e)
        
        
            print(updated['description'])
        ```
        
Keywords: fluxx,gms,api,wrapper
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3
