Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scmorrison/p6-github
Simple Perl6 GitHub API OAuth authentication library
https://github.com/scmorrison/p6-github
Last synced: 4 days ago
JSON representation
Simple Perl6 GitHub API OAuth authentication library
- Host: GitHub
- URL: https://github.com/scmorrison/p6-github
- Owner: scmorrison
- License: artistic-2.0
- Created: 2015-12-13T07:40:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-05T15:15:46.000Z (almost 9 years ago)
- Last Synced: 2024-11-05T22:03:17.361Z (about 2 months ago)
- Language: Perl6
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
NAME
====GitHub
DESCRIPTION
===========Simple Perl6 GitHub API OAuth client.
MODULES AND UTILITIES
=====================GitHub
--------------```perl6
use GitHub;my $gh = GitHub.new(
auth_login => 'myusername',
auth_password => 'mypassword'
);my $ghauth = $gho.create_authentication(data => {
:scopes(['user', 'repo', 'gist']),
:note<'test-github-oauth-client'>
});say $ghauth;
```Installation
============Install directly with "panda":
# From the source directory
panda install .SEE ALSO
========* https://github.com/fayland/perl6-WebService-GitHub
* https://github.com/fayland/perl-net-github
* https://github.com/plu/PithubAUTHORS
=======* Sam Morrison
COPYRIGHT AND LICENSE
=====================Copyright 2015 Sam Morrison
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.