An open API service indexing awesome lists of open source software.

https://github.com/kennfatt/gistcrawler

CLI Tools to crawl GitHub's Gists written in PHP 7.
https://github.com/kennfatt/gistcrawler

cli git github-api php php7

Last synced: 7 months ago
JSON representation

CLI Tools to crawl GitHub's Gists written in PHP 7.

Awesome Lists containing this project

README

          

# GistCrawler
Gist Crawler is a PHP CLI tool to crawl all gist and its information by using a single line of command.

It's quite fast for downloading the gist file, but it works synchronously. Since PHP does not have asynchronous or parallel things natively, we plan to use another language in the future.

## Features
* Fully functional short command.
* Filtering option available.
* Callback on every event triggered.

## Requirements
* PHP Version: > 7.0
* Internet access (of course).

## Previe and Usage
**Interface view**
![interface](./assets/interface.png)

**Command usage**
```bash
# Import / download the gist(s).
php run.php import

# Raw JSON Response
php run.php raw

# Handle stdout to result.json
php run.php raw > result.json
```

## Configuration
There are two available configurations that you can changes.
TODO