{"id":19541305,"url":"https://github.com/wingify/vwo-openfeature-provider-python","last_synced_at":"2026-02-13T04:05:50.755Z","repository":{"id":257813510,"uuid":"868936036","full_name":"wingify/vwo-openfeature-provider-python","owner":"wingify","description":"Openfeature Provider for VWO FME Python SDK","archived":false,"fork":false,"pushed_at":"2024-10-08T08:30:28.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-03-29T08:32:59.629Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://developers.vwo.com/v2/docs/python-openfeature-provider","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wingify.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-10-07T12:47:09.000Z","updated_at":"2025-03-10T08:36:27.000Z","dependencies_parsed_at":null,"dependency_job_id":"d68855d6-0fcf-4e59-83f6-18e7e760d4b3","html_url":"https://github.com/wingify/vwo-openfeature-provider-python","commit_stats":null,"previous_names":["wingify/vwo-openfeature-provider-python"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-openfeature-provider-python","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-openfeature-provider-python/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-openfeature-provider-python/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wingify%2Fvwo-openfeature-provider-python/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wingify","download_url":"https://codeload.github.com/wingify/vwo-openfeature-provider-python/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249712042,"owners_count":21314350,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-11T03:09:36.695Z","updated_at":"2026-02-13T04:05:45.710Z","avatar_url":"https://github.com/wingify.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## VWO OpenFeature Provider Python\n\n[![PyPI version](https://badge.fury.io/py/vwo-openfeature-provider-python.svg)](https://pypi.org/project/vwo-openfeature-provider-python)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](http://www.apache.org/licenses/LICENSE-2.0)\n\n## Requirements\n\n* Works with Python: 3.8+\n\n## Installation\n\nIt's recommended you use [virtualenv](https://virtualenv.pypa.io/en/latest/) to create isolated Python environments.\n\n```bash\npip install vwo-openfeature-provider-python\n```\n\n## Usage\n\n```python\nfrom openfeature import api\nfrom vwo_provider import VWOProvider\nfrom openfeature.evaluation_context import EvaluationContext\nfrom vwo import init\n\noptions = {\n    'sdk_key': '32-alpha-numeric-sdk-key', # SDK Key\n    'account_id': '123456' # VWO Account ID\n}\n\n# Initialize the VWO client\nvwo_client = init(options)\n\n# Initialize the VWO provider\nvwo_provider = VWOProvider(vwo_client)\n\n# Registering the default provider\napi.set_provider(vwo_provider)\n\n# A client bound to the default provider\ndefault_client = api.get_client()\n\ndef start():\n    print('BOOL', default_client.get_boolean_value('unique_feature_key', False, EvaluationContext(attributes={'id': 'user_id', 'key': 'boolean_variable'})))\n    print('STRING', default_client.get_string_value('unique_feature_key', '', EvaluationContext(attributes={'id': 'user_id', 'key': 'string_variable'})))\n    print('INTEGER', default_client.get_integer_value('unique_feature_key', 10, EvaluationContext(attributes={'id': 'user_id', 'key': 'number_variable'})))\n    print('FLOAT', default_client.get_float_value('unique_feature_key', 10.0, EvaluationContext(attributes={'id': 'user_id', 'key': 'float_variable'})))\n    print('OBJECT', default_client.get_object_value('unique_feature_key', {}, EvaluationContext(attributes={'id': 'user_id', 'key': 'json-variable'})))\n\nstart()\n```\n\n## Authors\n\n* [Abhishek Joshi](https://github.com/Abhi591)\n\n## Changelog\n\nRefer [CHANGELOG.md](https://github.com/wingify/vwo-openfeature-provider-python/blob/master/CHANGELOG.md)\n\n## Contributing\n\nPlease go through our [contributing guidelines](https://github.com/wingify/vwo-openfeature-provider-python/blob/master/CONTRIBUTING.md)\n\n\n## Code of Conduct\n\n[Code of Conduct](https://github.com/wingify/vwo-openfeature-provider-python/blob/master/CODE_OF_CONDUCT.md)\n\n## License\n\n[Apache License, Version 2.0](https://github.com/wingify/vwo-openfeature-provider-python/blob/master/LICENSE)\n\nCopyright 2024 Wingify Software Pvt. Ltd.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwingify%2Fvwo-openfeature-provider-python","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwingify%2Fvwo-openfeature-provider-python","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwingify%2Fvwo-openfeature-provider-python/lists"}