Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/morucci/yoshiki
A simple Python library of GraphQL queries + a CLI to query the Github API version 4.
https://github.com/morucci/yoshiki
apiv4 followers following github-api graphql stargazer stargazers-count
Last synced: 11 days ago
JSON representation
A simple Python library of GraphQL queries + a CLI to query the Github API version 4.
- Host: GitHub
- URL: https://github.com/morucci/yoshiki
- Owner: morucci
- License: mit
- Created: 2020-02-07T15:34:29.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-02-17T08:37:37.000Z (almost 5 years ago)
- Last Synced: 2024-12-12T19:46:10.254Z (17 days ago)
- Topics: apiv4, followers, following, github-api, graphql, stargazer, stargazers-count
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 2
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: license.md
Awesome Lists containing this project
README
# Yoshiki crawler
## What is this ?
A simple Python library of GraphQL queries + a CLI to query the Github API version 4. Yoshiki provides the following facilities:
* search-projects: query the list of popular source repositories with at least N stars ordered by stars.
* list-followers: query the list of followers of a given user.
* list-following: query the list of users a given user is following.
* list-repositories: query the list of repositories a given user own.
* list-stargazers: query the list of stargazers of a given repository.
* list-watchers: query the list of watchers of a given repository.## How to install
Simply run:
```
$ python3 setup.py install --user
```# Usage
You first need to generate a Github API token without ant specific right then you can start to run Yoshiki.
```
$ python3 ~/.local/bin/yoshiki --token search-projects --stars 50000
```## How to help ?
Simply open PRs/Issues ! Contributions are welcome !