Metadata-Version: 1.1
Name: python-usda
Version: 0.1
Summary: A fork of pygov focused on USDA nutritional database API
Home-page: https://github.com/Lucidiot/python-usda
Author: Lucidiot
Author-email: UNKNOWN
License: GNU General Public License 3
Project-URL: Source Code, https://github.com/Lucidiot/python-usda
Project-URL: Gitter Chat, https://gitter.im/BrainshitPseudoScience/Lobby
Description: # python-usda
        
        [![Requirements Status](https://requires.io/github/Lucidiot/python-usda/requirements.svg?branch=master)](https://requires.io/github/Lucidiot/python-usda/requirements/?branch=master) (https://landscape.io/github/Lucidiot/PseudoScience/master) [![Maintainability](https://api.codeclimate.com/v1/badges/9a969172a5d47456376e/maintainability)](https://codeclimate.com/github/Lucidiot/python-usda/maintainability) [![Code Health](https://landscape.io/github/Lucidiot/python-usda/master/landscape.svg?style=flat)](https://landscape.io/github/Lucidiot/python-usda/master) ![GitHub last commit](https://img.shields.io/github/last-commit/Lucidiot/PseudoScience.svg) [![GitHub license](https://img.shields.io/github/license/Lucidiot/PseudoScience.svg)](https://github.com/Lucidiot/PseudoScience/blob/master/LICENSE) [![Gitter](https://img.shields.io/gitter/room/PseudoScience/Lobby.svg?logo=gitter-white)](https://gitter.im/BrainshitPseudoScience/Lobby)
        
        python-usda is a fork of [pygov](https://pypi.org/project/pygov/) focused on [USDA's Food Composition Database API](http://ndb.nal.usda.gov/ndb/doc/).
        
        ## Installation
        
        python-usda is in active development. When it will be listed on the Python Package Index, you will be able to install it using:
        
        ```
        pip install python-usda
        ```
        
        ## Usage
        
        ``` python
        from usda.client import UsdaClient
        
        client = UsdaClient("YOUR_API_KEY")
        foods = client.list_foods(5)
        
        for food in foods:
            print food.name
        ```
        
        Result:
        
        ```
        Abiyuch, raw
        Acerola juice, raw
        Acerola, (west indian cherry), raw
        Acorn stew (Apache)
        Agave, cooked (Southwest)
        ```
        
Keywords: api usda nutrition food
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
