Metadata-Version: 2.4
Name: wikicrop
Version: 0.4
Description-Content-Type: text/markdown
Requires-Dist: pandas
Requires-Dist: openpyxl
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist

# WikiCrop

WikiCrop is a library that provides CSV datasets for common agricultural crops, helping developers and data analysts easily retrieve information using pandas.

## Installation

You can install or update the WikiCrop library via pip:

```bash
pip install --upgrade wikicrop
```

## Usage

After successfully installing the library, you can directly call the functions to load data for each crop as follows:

```python
from wikicrop import species

# 1. Load rice data
df_rice = species.load_rice()
print(f"Number of rows for Rice: {len(df_rice)}")

# 2. Load soybean data
df_soybean = species.load_soybean()
print(f"Number of rows for Soybean: {len(df_soybean)}")

# 3. Load soy data
df_soy = species.load_soy()
print(f"Number of rows for Soy: {len(df_soy)}")

# 4. Load mung bean data
df_mung_bean = species.load_mung_bean()
print(f"Number of rows for Mung Bean: {len(df_mung_bean)}")

# 5. Load corn data
df_corn = species.load_corn()
print(f"Number of rows for Corn: {len(df_corn)}")
```

## Requirements
This library has built-in CSV datasets. The only requirements for this library to work are:
- Use Python 3.x
- Have `pandas` library installed (the system will automatically install it if you use `pip install wikicrop`).
