Metadata-Version: 2.4
Name: vercel-internal-core
Version: 0.1.0
Summary: Shared internal runtime for Vercel Python packages
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.10
Requires-Dist: anyio<5,>=4.0.0
Requires-Dist: httpx<1,>=0.27.0
Requires-Dist: typing-extensions<5,>=4.0.0; python_version < '3.11'
Description-Content-Type: text/markdown

# 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
```
