{"id":15519822,"url":"https://github.com/tomaarsen/thenounprojectapi","last_synced_at":"2025-12-14T00:02:06.261Z","repository":{"id":57475109,"uuid":"199256147","full_name":"tomaarsen/TheNounProjectAPI","owner":"tomaarsen","description":"A Python wrapper allowing convenient access to the Noun Project API.","archived":false,"fork":false,"pushed_at":"2023-05-22T21:38:01.000Z","size":569,"stargazers_count":18,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-12T05:47:17.961Z","etag":null,"topics":["api","noun-project","nounproject","nounprojecticons","python","thenounproject","wrapper"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tomaarsen.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2019-07-28T07:23:43.000Z","updated_at":"2024-03-17T20:17:16.000Z","dependencies_parsed_at":"2023-07-26T14:35:52.828Z","dependency_job_id":null,"html_url":"https://github.com/tomaarsen/TheNounProjectAPI","commit_stats":null,"previous_names":["cubiedev/thenounprojectapi"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomaarsen%2FTheNounProjectAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomaarsen%2FTheNounProjectAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomaarsen%2FTheNounProjectAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomaarsen%2FTheNounProjectAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomaarsen","download_url":"https://codeload.github.com/tomaarsen/TheNounProjectAPI/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250369254,"owners_count":21419213,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","noun-project","nounproject","nounprojecticons","python","thenounproject","wrapper"],"created_at":"2024-10-02T10:22:58.527Z","updated_at":"2025-12-14T00:02:00.959Z","avatar_url":"https://github.com/tomaarsen.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.com/tomaarsen/TheNounProjectAPI.svg?branch=master)](https://travis-ci.com/tomaarsen/TheNounProjectAPI)\n[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/tomaarsen/TheNounProjectAPI.svg?logo=lgtm\u0026logoWidth=18)](https://lgtm.com/projects/g/tomaarsen/TheNounProjectAPI/context:python)\n[![codecov](https://codecov.io/gh/cubiedev/TheNounProjectAPI/branch/master/graph/badge.svg)](https://codecov.io/gh/cubiedev/TheNounProjectAPI)\n[![license](https://img.shields.io/github/license/tomaarsen/TheNounProjectAPI)](https://github.com/tomaarsen/TheNounProjectAPI/blob/master/LICENSE)\n\n# TheNounProjectAPI\n \nTheNounProjectAPI is a Python wrapper allowing convenient access to the [Noun Project](https://thenounproject.com/) API. It supports all endpoints and types of responses. Documentation for this wrapper can be found [here](https://tomaarsen.github.io/TheNounProjectAPI/#thenounprojectapi), while the official documentation of the API itself may be found [here](https://api.thenounproject.com/).\n\n---\n\n# Installation\nTheNounProjectAPI is supported on Python 3.7+. The recommended method of installation is via [pip](https://pypi.org/project/pip/).\n```\npip install TheNounProjectAPI\n```\nYou can also install TheNounProjectAPI directly from github using:\n```\npip install --upgrade https://github.com/tomaarsen/TheNounProjectAPI/archive/master.zip\n```\nFor help with installing Python and/or pip, see \"The Hitchhiker's Guide to Python\" [Installation Guides](https://docs.python-guide.org/starting/installation/#installation-guides)\n\n---\n\n# Getting started\nIt's strongly encouraged to use the [documentation](https://tomaarsen.github.io/TheNounProjectAPI/#thenounprojectapi)'s [Getting started](https://tomaarsen.github.io/TheNounProjectAPI/introduction.html#getting-started) section to get started, as it's tied to the rest of the documentation, allowing you to quickly find exactly what you need.\n\nHowever, I'll provide a quick sample.\n```python\n# See the Documentation for more information: https://tomaarsen.github.io/TheNounProjectAPI\nfrom TheNounProjectAPI import API\n\nif __name__ == \"__main__\":\n    # API Key and Secret from https://api.thenounproject.com/getting_started.html#creating-an-api-key\n    key = \"\u003cmy api key\u003e\"\n    secret = \"\u003cmy api secret\u003e\"\n    \n    # Create api object\n    api = API(key=key, secret=secret)\n\n    # See the documentation for more endpoints\n    icons = api.get_icons_by_term(\"goat\", public_domain_only=True, limit=2)\n\n    # \u003e\u003e\u003eicons\n    # [\u003cIconModel: Term: Goat Feeding, Slug: goat-feeding, Id: 24014\u003e,\n    # \u003cIconModel: Term: Herbivore teeth, Slug: herbivore-teeth, Id: 675870\u003e]\n\n    for icon in icons:\n        print(\"Icon's term:\", icon.term)\n        print(\"This icon's tags:\", \", \".join(tag.slug for tag in icon.tags))\n        print(\"Uploader's username:\", icon.uploader.username)\n```\n\nExamine the [TheNounProjectAPI documentation](https://tomaarsen.github.io/TheNounProjectAPI/index.html#thenounprojectapi) for more examples of what can be done with TheNounProjectAPI.\n\n---\n\n# Documentation\nDocumentation can be found here: https://tomaarsen.github.io/TheNounProjectAPI\n\n---\n\n# Tests\nRun `python runner.py`, `nosetests`, `python setup.py nosetests` or `python setup.py test` to run all tests in one batch.\n\n---\n\n# License\nTheNounProjectAPI is licensed under MIT.\n\n---\n\n# Contributions\nContributions are welcome.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomaarsen%2Fthenounprojectapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomaarsen%2Fthenounprojectapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomaarsen%2Fthenounprojectapi/lists"}