Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,6 @@ target/

# rope autocomplete
.ropeproject/

# vim backup files
*.swp
3 changes: 3 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
5.1.0 (Jul 19, 2017)
- Adding dependency matcher
- Refactoring clients into brokers
5.0.0 (Jun 13, 2017)
- BREAKING BACKWARD COMPATIBILITY
- Adding support for Split Synchronizer service
Expand Down
11 changes: 7 additions & 4 deletions splitio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
from __future__ import absolute_import, division, print_function, unicode_literals
from __future__ import absolute_import, division, print_function, \
unicode_literals

from .factories import get_factory # noqa
from .clients import get_client, get_redis_client, Key # noqa
# from .clients import get_client, get_redis_client, Key # noqa
from .clients import Key
from .version import __version__ # noqa

__all__ = ('api', 'cache', 'clients', 'matchers', 'segments', 'settings', 'splits', 'splitters',
'transformers', 'treatments', 'version', 'factories', 'manager')
__all__ = ('api', 'brokers', 'cache', 'clients', 'matchers', 'segments',
'settings', 'splits', 'splitters', 'transformers', 'treatments',
'version', 'factories', 'manager')
Loading