Files
langchain/docs/docs/integrations/providers/github.mdx
Bagatur 493e474063 docs: udpated api reference (#25172)
- Move the API reference into the vercel build
- Update api reference organization and styling
2024-08-14 07:00:17 -07:00

23 lines
721 B
Plaintext

# GitHub
>[GitHub](https://github.com/) is a developer platform that allows developers to create,
> store, manage and share their code. It uses `Git` software, providing the
> distributed version control of Git plus access control, bug tracking,
> software feature requests, task management, continuous integration, and wikis for every project.
## Installation and Setup
To access the GitHub API, you need a [personal access token](https://github.com/settings/tokens).
## Document Loader
There are two document loaders available for GitHub.
See a [usage example](/docs/integrations/document_loaders/github).
```python
from langchain_community.document_loaders import GitHubIssuesLoader, GithubFileLoader
```