-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed streammachine to strmprivacy BREAKING CHANGE: streammachine -> strmprivacy
- Loading branch information
Showing
25 changed files
with
56 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# Python Driver for Stream Machine | ||
# Python Driver for STRM Privacy | ||
|
||
[![PyPi][pypi-version-image]][pypi-version-link] | ||
![Python Versions][python-versions-image] | ||
|
||
|
||
See the matching [examples](https://github.com/streammachineio/driver-examples) in order to use the Python driver. | ||
See the matching [examples](https://github.com/strmprivacy/driver-examples) in order to use the Python driver. | ||
|
||
## Need help? | ||
|
||
See our [documentation](https://docs.streammachine.io) or [reach out to us](https://docs.streammachine.io/docs/0.1.0/contact/index.html). | ||
See our [documentation](https://docs.strmprivacy.io) or [reach out to us](https://docs.strmprivacy.io/docs/0.1.0/contact/index.html). | ||
|
||
[pypi-version-image]: https://img.shields.io/pypi/v/streammachine-driver.svg | ||
[pypi-version-link]: https://pypi.org/project/streammachine-driver/ | ||
[python-versions-image]: https://img.shields.io/pypi/pyversions/streammachine-driver.svg | ||
[pypi-version-image]: https://img.shields.io/pypi/v/strmprivacy-driver.svg | ||
[pypi-version-link]: https://pypi.org/project/strmprivacy-driver/ | ||
[python-versions-image]: https://img.shields.io/pypi/pyversions/strmprivacy-driver.svg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
5 changes: 2 additions & 3 deletions
5
streammachine/driver/__init__.py → strmprivacy/driver/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
__author__ = """Stream Machine B.V.""" | ||
__email__ = 'apis@streammachine.io' | ||
__email__ = 'apis@strmprivacy.io' | ||
__version__ = '1.0.0' | ||
|
||
from .client import StreamMachineClient | ||
from streammachine.schemas.common import StreamMachineEvent | ||
from .client import StrmPrivacyClient | ||
from .domain.config import ClientConfig | ||
from .serializer import SerializationType | ||
from .util import current_time_millis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from .client import StrmPrivacyClient |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
streammachine/driver/domain/__init__.py → strmprivacy/driver/domain/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
from .domain import StreamMachineEventDTO | ||
from .domain import StrmPrivacyEventDTO | ||
from .base import JsonSerializable | ||
from .config import ClientConfig |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletions
5
streammachine/driver/domain/domain.py → strmprivacy/driver/domain/domain.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters