llama-index readers linear integration
Project description
Linear Reader
pip install llama-index-readers-linear
The Linear loader returns issue based on the query.
Usage
Here's an example of how to use it
from llama_index.readers.linear import LinearReader
reader = LinearReader(api_key=api_key)
query = """
query Team {
team(id: "9cfb482a-81e3-4154-b5b9-2c805e70a02d") {
id
name
issues {
nodes {
id
title
description
assignee {
id
name
}
createdAt
archivedAt
}
}
}
}
"""
documents = reader.load_data(query=query)
Alternately, you can also use download_loader from llama_index
from llama_index.readers.linear import LinearReader
reader = LinearReader(api_key=api_key)
query = """
query Team {
team(id: "9cfb482a-81e3-4154-b5b9-2c805e70a02d") {
id
name
issues {
nodes {
id
title
description
assignee {
id
name
}
createdAt
archivedAt
}
}
}
}
"""
documents = reader.load_data(query=query)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file llama_index_readers_linear-0.5.0.tar.gz.
File metadata
- Download URL: llama_index_readers_linear-0.5.0.tar.gz
- Upload date:
- Size: 4.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0044e2139d53cc9e5664954aa7071deec73ffb252127db3297638e61add748a2
|
|
| MD5 |
49374e728cd108743c05c0655460ed2b
|
|
| BLAKE2b-256 |
f83e61ede115ff2968be740b69a492064a446eb1dd9e71a62ab6964fe4080017
|
File details
Details for the file llama_index_readers_linear-0.5.0-py3-none-any.whl.
File metadata
- Download URL: llama_index_readers_linear-0.5.0-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3fd7f3a7fe4e303eeb444cca7fbf59438215104bc7ae427eaaef8a578ebc95af
|
|
| MD5 |
82525fd470ab2a78024e4045788d7d22
|
|
| BLAKE2b-256 |
11e1c8b689ba6bff432298ca455f9fc48b362ac9a76781445692abcc7b26e4d0
|