Metadata-Version: 2.4
Name: neurograph-core
Version: 1.202510092220
Summary: Neurograph Core
Home-page: 
Author: Neurograph Development Team
Author-email: team@openapitools.org
License: (c) Neurograph 2025. All rights reserved.
Project-URL: Repository, https://github.com/NeuroGraph-AI/core/
Keywords: OpenAPI,OpenAPI-Generator,Neurograph Core
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: Other/Proprietary License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: urllib3<3.0.0,>=2.1.0
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: pydantic>=2
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author-email

# Neurograph Core Python SDK

The Neurograph Core Python SDK provides convenient, type-safe access to the Neurograph Core API.  
This guide covers local installation, authentication, and your first API call.

---

## 🚀 Quickstart

1. Activate your Python 3.12 virtual environment

2. Install the SDK

```bash
pip install neurograph-core
```

3. Use your service token to make a call
```python
from neurograph.v1.configuration import Configuration
from neurograph.v1.api_client import ApiClient
from neurograph.v1.api import atlas_api

config = Configuration()
config.host = "https://core-staging.neurograph.io"
config.api_key['ApiKeyAuth'] = "<your service token>"
config.api_key_prefix['ApiKeyAuth'] = "Bearer"

with ApiClient(config) as client:
    atlas = atlas_api.AtlasApi(client)
    print(atlas.api_v1_atlas_versions_get())
    
```
---
