Metadata-Version: 2.1
Name: simple-github-crawler
Version: 0.2.1
Summary: 
Home-page: https://github.com/JAY-Chan9yu/simple_github_crawler
License: MIT
Keywords: github,streak,commit,crawler
Author: JayJi
Author-email: ckj9014@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: beautifulsoup4 (>=4.11.1,<5.0.0)
Requires-Dist: lxml (>=4.9.1,<5.0.0)
Requires-Dist: requests (>=2.28.1,<3.0.0)
Project-URL: Repository, https://github.com/JAY-Chan9yu/simple_github_crawler
Description-Content-Type: text/markdown

simple-github-crawler Documentation
============================
This is github-crawler package. You can crawl the count of consecutive commits.

Quick Start
===========
```
from simple_github_crawler import commit

is_complted, streak = commit.get_streak(username='JAY-Chan9yu')
print(streak)
```

