You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The interop engine's parsers currently support a .from_string method, which limits flexibility when working with different input sources. Consider extending the API to support additional input sources like files and directories.
Tasks
Add .from_file(file_path) method
Add .from_directory(directory_path, pattern) method to process multiple files
Add .from_bytes(data) method for binary data inputs
Add .from_url(url) method for retrieving and parsing remote resources
Description
The interop engine's parsers currently support a
.from_stringmethod, which limits flexibility when working with different input sources. Consider extending the API to support additional input sources like files and directories.Tasks
.from_file(file_path)method.from_directory(directory_path, pattern)method to process multiple files.from_bytes(data)method for binary data inputs.from_url(url)method for retrieving and parsing remote resources