Draft
Conversation
Drafting a main script for examplifying main components. This include: * gmail client * iridium message parsing * Binary payload parsing wip tx processing * Implemented fully functional binary payload decoder * Added parsing exception with handling examples Added various comments
* Windowed imap fetching * Use username / password for authentication
* Added logging
* wip backward
* support for backwards fetching
Dataset Comparison ReportDifferences have been found between the datasets produced using the PR branch and the main branch. Variables missing in PR dataset
Variables missing in Main dataset
Variable differences
Dataset attribute differencesOriginal dataset attributes (main branch) New dataset atrributes (PR branch) Coordinate differencesNone |
Member
|
So I have made a REST API client that should work alongside the IMAP client. The main things are:
So the workflow would look something like this:
|
This file contains hidden or 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
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.
Restructuring the email, iridium and binary payload parsing functionalities
With focus on
The most important new files are:
gmail_client.py: Module for gmail server interactioniridium.py: Module for parsing iridium messages in order to extract the relevant metadata and payload attachmentpayload_decoder.py: Module for decoding the different kind of binary payload formats described inpayload_formats.csvprocess.py: Example script combining the three modules above for fetching and decoding data messages transmitted via iridium. It is not finished and it might also be implemented around a cache or multiple steps in order monitor transmissions and avoid slow redownload in the future.