Skip to content

Commit

Permalink
Pull request #2: refactor: improve way of importing the VWOProvider
Browse files Browse the repository at this point in the history
Merge in SST/vwo-openfeature-provider-python from refactor-import to master

* commit 'ae06d371546f0650e2887acebb0697e68e0a275f':
  refactor: improve way of importing the VWOProvider
  • Loading branch information
Abhishekjoshi2001 authored and softvar-wingify committed Oct 8, 2024
2 parents a5ba6d2 + ae06d37 commit efe56f2
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

[1.1.0] - 2024-10-08

### Changed
- Simplified the import path for `VWOProvider` to enhance usability.

[1.0.0] - 2024-10-07

### Added
- First release of VWO OpenFeature Provider Python
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pip install vwo-openfeature-provider-python

```python
from openfeature import api
from vwo_provider.vwo_provider import VWOProvider
from vwo_provider import VWOProvider
from openfeature.evaluation_context import EvaluationContext
from vwo import init

Expand Down
4 changes: 3 additions & 1 deletion vwo_provider/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,6 @@
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# limitations under the License.

from vwo_provider.vwo_provider import VWOProvider

0 comments on commit efe56f2

Please sign in to comment.