Skip to content
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

Made grammatical corrections in the Programming APIs --> Extraction section of the User Guide. #596

Merged
merged 2 commits into from
Aug 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/user_guide.rst
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,7 @@ Programming APIs
Extraction
----------

Here is a several example for extraction from your python program.
You can write it with very clean syntax because py7zr supports context manager.
Here is a simple example to extract a 7-zip archive using the python programming language.

.. code-block:: python

Expand All @@ -183,7 +182,8 @@ You can write it with very clean syntax because py7zr supports context manager.
archive.extractall(path="/tmp")


This example extract a 7-zip archive file "Archive.7z" into "/tmp" target directory.
This example extracts the contents of "Archive.7z" into the "/tmp" directory.
Utilizing the built-in context manager makes the syntax clean and concise.


Make archive
Expand Down
Loading