Metadata-Version: 2.1
Name: PerplexityIPYNB
Version: 1.1.1
Summary: Perplexity AI in iPython Notebooks
Home-page: https://github.com/vladimirkucin634/PerplexityIPYNB
Author: vladimirkucin634
Author-email: vladimirkucin634@mail.ru
License: MIT
Project-URL: Source, https://github.com/vladimirkucin634/PerplexityIPYNB
Keywords: artificial-intelligence,perplexityai,perplexity,python,api,ai
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# PerplexityIPYNB

PerplexityIPYNB is a Python module that allows you to interact with the Perplexity AI.

## Installation

You can install PerplexityIPYNB using pip. Run the following command in your terminal:

```bash
pip install PerplexityIPYNB
```

## Usage

### Functional

```python
from PerplexityIPYNB import Perplexity

ai = Perplexity()
prompt = input()

print(ai.RUN(prompt))
```

### Magic commands

```python
%%perplexity
prompt
```
