We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c780ec2 commit 46b054fCopy full SHA for 46b054f
README.md
@@ -81,9 +81,10 @@ ISSUE_DESCRIPTION, (str)
81
Example:
82
```
83
from ghorgs.managers import GithubOrganizationManager
84
-ORGANIZATION = 'my orgnaization'
85
-manager = GithubOrganizationManager(github_oauth_token,
86
- ORGANIZATION)
+ORGANIZATION = 'my organization'
+TOKEN = os.environ.get('GITHUB_API_TOKEN')
+manager = GithubOrganizationManager(organizaton=ORGANIZATION,
87
+ token=TOKEN)
88
for project in manager.projects():
89
for issue in project.issues():
90
print(issue.simple)
0 commit comments