Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krisnaajiep/php-weather-api
A PHP-based Weather API that fetches and returns weather data from Visual Crossing's API
https://github.com/krisnaajiep/php-weather-api
3rd-party-api api caching caching-redis environment-variables php redis redis-cache redis-cache-store weather-api
Last synced: about 13 hours ago
JSON representation
A PHP-based Weather API that fetches and returns weather data from Visual Crossing's API
- Host: GitHub
- URL: https://github.com/krisnaajiep/php-weather-api
- Owner: krisnaajiep
- Created: 2024-11-04T20:39:13.000Z (4 days ago)
- Default Branch: main
- Last Pushed: 2024-11-04T21:12:40.000Z (4 days ago)
- Last Synced: 2024-11-04T21:32:09.588Z (4 days ago)
- Topics: 3rd-party-api, api, caching, caching-redis, environment-variables, php, redis, redis-cache, redis-cache-store, weather-api
- Language: PHP
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP Weather API
A PHP-based Weather API that fetches and returns weather data from [Visual Crossing's API](https://www.visualcrossing.com/weather-api) uses [predis](https://github.com/predis/predis) for [Redis](https://redis.io) cache and [phpdotenv](https://github.com/vlucas/phpdotenv) for loads environment variables. This project inspired by [roadmap.sh](https://roadmap.sh/projects/weather-api-wrapper-service).
## **Getting started guide**
To start using the Expense Tracker API, you need to -
1. Clone the repository.
```bash
git clone https://github.com/krisnaajiep/php-weather-api.git```
2. Install dependencies.
```bash
composer install```
3. Configure `.env` file.
```bash
cp .env.example .env```
4. Configure API key and Redis connection in `.env` file.
```
API_BASE_URL="https://weather.visualcrossing.com/VisualCrossingWebServices/rest/services/timeline/"
API_KEY=""REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
REDIS_CACHE_DB=0
```5. Run the local server.
```bash
php -S localhost:8000```
6. Access the endpoint with location query parameter. `http://localhost:8000/?location=YOUR_LOCATION`.
### **Need some help?**
In case you have questions or need further assistance, you can refer to the following resources:
- [Visual Crossing's API Documentation](https://www.visualcrossing.com/resources/documentation/weather-api/timeline-weather-api/)