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.
- Host: GitHub
- URL: https://github.com/kennfatt/gistcrawler
- Owner: KennFatt
- License: mit
- Created: 2019-10-02T14:18:28.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-19T01:38:52.000Z (about 6 years ago)
- Last Synced: 2025-02-21T15:54:06.983Z (about 1 year ago)
- Topics: cli, git, github-api, php, php7
- Language: PHP
- Size: 165 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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**

**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