langchain/docs/docs/integrations/providers/github.mdx
Leonid Ganeline 3856dedff4
docs: integrations/providers update 9 (#19941)
- Added missed providers
- Added links, descriptions in related examples
- Formatted in a consistent format

Co-authored-by: Erick Friis <erick@langchain.dev>
2024-04-04 21:37:48 +00:00

24 lines
759 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
from langchain.document_loaders import GithubFileLoader
```