Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pablrod/p5-opensourceorg-api
Perl API Client for OpenSource.org licenses API
https://github.com/pablrod/p5-opensourceorg-api
Last synced: about 1 month ago
JSON representation
Perl API Client for OpenSource.org licenses API
- Host: GitHub
- URL: https://github.com/pablrod/p5-opensourceorg-api
- Owner: pablrod
- License: agpl-3.0
- Created: 2017-01-08T20:13:58.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-21T23:55:43.000Z (about 8 years ago)
- Last Synced: 2024-11-11T21:05:44.682Z (3 months ago)
- Language: Perl
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NAME
OpenSourceOrg::API - Perl API Bindings to the OSI License API
# VERSION
version 0.001
# SYNOPSIS
```perl
use OpenSourceOrg::API;
my $client = OpenSourceOrg::API->new();
my $all_licenses = $client->all();
my $permisive_licenses = $client->tagged('permissive');
my $mit = $client->get('MIT');
my $Mozilla_2_0 = $client->get_by_scheme('SPDX', 'MPL-2.0');
```# DESCRIPTION
OpenSOurceOrg::API is an API Wrapper that allows you to query the Open Source License API with Perl.
[https://github.com/OpenSourceOrg/api/blob/master/doc/endpoints.md](https://github.com/OpenSourceOrg/api/blob/master/doc/endpoints.md)
# METHODS
## all
Get a list of all known licenses.
The response is the perl equivalent of the json returned by the api,
documented in [https://github.com/OpenSourceOrg/api/blob/master/doc/endpoints.md#schema](https://github.com/OpenSourceOrg/api/blob/master/doc/endpoints.md#schema)## tagged
Find all licenses tagged with a `keyword` as defined in
[https://github.com/OpenSourceOrg/api/blob/master/doc/endpoints.md#keywords](https://github.com/OpenSourceOrg/api/blob/master/doc/endpoints.md#keywords)## get
Get a license by its OSI ID
## get\_by\_scheme
Get a license by its Scheme ID
# AUTHOR
Pablo Rodríguez González
# COPYRIGHT AND LICENSE
Copyright (c) 2017 by Pablo Rodríguez González.
This is free software, licensed under:
```
The GNU Affero General Public License, Version 3, November 2007
```