mirror of
https://github.com/hwchase17/langchain.git
synced 2025-10-01 17:29:56 +00:00
* standardizes ruff dep version across all `pyproject.toml` files * cli: ruff rules and corrections * langchain: rules and corrections
29 lines
733 B
Python
29 lines
733 B
Python
import http.client
|
|
import json
|
|
from typing import Optional
|
|
|
|
|
|
def list_packages(*, contains: Optional[str] = None):
|
|
conn = http.client.HTTPSConnection("api.github.com")
|
|
|
|
headers = {
|
|
"Accept": "application/vnd.github+json",
|
|
"X-GitHub-Api-Version": "2022-11-28",
|
|
"User-Agent": "langchain-cli",
|
|
}
|
|
|
|
conn.request(
|
|
"GET",
|
|
"/repos/langchain-ai/langchain/contents/templates",
|
|
headers=headers,
|
|
)
|
|
res = conn.getresponse()
|
|
|
|
res_str = res.read()
|
|
|
|
data = json.loads(res_str)
|
|
package_names = [
|
|
p["name"] for p in data if p["type"] == "dir" and p["name"] != "docs"
|
|
]
|
|
return [p for p in package_names if contains in p] if contains else package_names
|