Metadata-Version: 2.4
Name: nbgen-cli-amirbnsl
Version: 0.3.2
Summary: A CLI tool to generate Jupyter Notebooks with data loading scripts.
Author: Your Name
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# nbgen

A CLI tool to generate Jupyter Notebooks with data loading scripts.

## Installation

```bash
pip install nbgen-cli-amirbnsl
```

## Usage

```bash
nbgen my_notebook.ipynb
```

With Kaggle support:
```bash
nbgen my_kaggle_notebook.ipynb -k
```

### Credentials
The tool looks for Kaggle credentials in the following order:
1. Command line arguments: `--kaggle-user` and `--kaggle-key`
2. Environment variables: `KAGGLE_USERNAME` and `KAGGLE_KEY`
3. Kaggle configuration file: `~/.kaggle/kaggle.json`

If the notebook already exists, the new cells will be prepended to the top of the notebook.
