Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 471 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 471 Bytes

python-opensource

python-opensource is an API Wrapper that allows you to query the Open Source License API with Python.

Example

from opensource import licenses

for license in licenses.tagged("copyleft"):
    print(license.name)

Installing

pip install opensource