Metadata-Version: 2.3
Name: pstreader
Version: 0.1.0
Summary: Alias for pypstreader — a pure-Python, dependency-free reader for Outlook PST stores
Keywords: pst,outlook,mbox,eml,mapi,email,forensics,ediscovery
Author: Kevin J. Rice
License: MIT License
         
         Copyright (c) 2026 Kevin J. Rice
         
         Portions of this software are derived from microsoft/outlook-pst-rs,
         Copyright (c) Microsoft Corporation, also licensed under the MIT License.
         See NOTICE for details.
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Legal Industry
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Security
Classifier: Topic :: Utilities
Requires-Dist: pypstreader==0.1.0
Requires-Python: >=3.12
Project-URL: Homepage, https://github.com/justanyone/pypstreader
Project-URL: Repository, https://github.com/justanyone/pypstreader
Project-URL: Issues, https://github.com/justanyone/pypstreader/issues
Description-Content-Type: text/markdown

# pstreader — an alias for [pypstreader](https://github.com/justanyone/pypstreader)

This distribution contains no implementation. It installs
**[`pypstreader`](https://pypi.org/project/pypstreader/)**, the pure-Python
reader for Outlook PST stores, and re-exports it under the shorter name.

```bash
pip install pstreader
```

```python
import pstreader                      # the same objects as `import pypstreader`

with pstreader.open("store.pst") as store:
    for folder in store.root_folder.walk():
        print(folder.display_name, folder.content_count)
```

```bash
pstreader store.pst        # identical to `pypstreader store.pst`
```

`pstreader.__version__` is `pypstreader.__version__`, and the dependency is
pinned exactly (`pypstreader==0.1.0`), so the two names can never mean two
different readers in one environment.

**Use `pypstreader` in anything you publish.** That is where the code, the
issues, the documentation and the release notes live; this name is here so
that typing the obvious thing works.

MIT, like the package it aliases. See
[the project README](https://github.com/justanyone/pypstreader#readme) for
what the reader actually does.
