We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Besides being able to read a file as raw bytes, provide a number of methods for reading a file as text. More specifically:
read_text(encocing: str='utf-8') -> str
read_lines(encoding: str='utf-8') -> Iterator[str]
The text was updated successfully, but these errors were encountered:
manoss96
Successfully merging a pull request may close this issue.
Besides being able to read a file as raw bytes, provide a number of methods for reading a file as text. More specifically:
read_text(encocing: str='utf-8') -> str
so as to be able to read whole file as a single piece of text.read_lines(encoding: str='utf-8') -> Iterator[str]
so as to be able to iterate over the file line-by-line.The text was updated successfully, but these errors were encountered: