-
Notifications
You must be signed in to change notification settings - Fork 66
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QuixRunner + various changes for 3.8 #197
Merged
Merged
Conversation
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
daniil-quix
requested changes
Oct 10, 2023
src/StreamingDataFrames/streamingdataframes/models/serializers/base.py
Outdated
Show resolved
Hide resolved
src/StreamingDataFrames/streamingdataframes/dataframe/dataframe.py
Outdated
Show resolved
Hide resolved
src/StreamingDataFrames/streamingdataframes/models/timestamps.py
Outdated
Show resolved
Hide resolved
tim-quix
force-pushed
the
feature/quix-runner
branch
from
October 11, 2023 13:01
c972178
to
d9dda6e
Compare
daniil-quix
approved these changes
Oct 11, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me 👍
daniil-quix
pushed a commit
that referenced
this pull request
Nov 7, 2023
* all changes for QuixRunner and Python3.8 * change topic dict on dataframe * move quix runner to the platform folder * additional changes for 3.8 around dataclasses, tweaked topic_out for dataframe * missed a couple things * all changes for QuixRunner and Python3.8 * move quix runner to the platform folder * additional changes for 3.8 around dataclasses, tweaked topic_out for dataframe * missed a couple things * last few touches * update github workflow for sdf to py38 * missed a spot * last little cleanups * removed SlottedClass, last cleanups * small consistency change
tim-quix
pushed a commit
that referenced
this pull request
Nov 14, 2023
…ter-vision-tutorial Update tutorials
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Many of the changes here are actually to fix various typing issues and thus allow compatibility with Python v3.8
Added
QuixRunner
which automates configuration for running in the Quix PlatformTopic
objects whenQuixRunner.run()
is called by setting thereal_name
attribute to the actual Quix topic name, which appends the workspace_id to it.Topic
class now hasreal_name
attribute, which defaults toname
attribute if not defined.name
attribute, QuixRunner handles finding the "real" nameRowProducer
andRowConsumer
now internally referenceTopic.real_name
, but functionality is equivalent to previous version.