Metadata-Version: 2.4
Name: vercel-internal-core-bundle
Version: 0.1.0
Summary: Shared internal runtime for Vercel Python packages
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: vercel-internal-shared-vendored-deps>=0.1.0
Description-Content-Type: text/markdown

# vercel-internal-core-bundle

This is a version of `vercel-internal-core` with third-party dependencies bundled. For normal use, install the unbundled `vercel-internal-core` package instead: https://pypi.org/project/vercel-internal-core/

# Internal Core

`vercel._internal.core` provides the shared runtime used by Vercel Python service
packages. It is installed as their dependency and is not intended for direct
installation or direct end-user imports.

The distribution contributes service-neutral namespace portions. Import the
public session context from `vercel.api` and shared exceptions from
`vercel.errors`:

```python
from vercel.api import session
from vercel.errors import VercelError
```
