Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nimeshkverma/gitart
Python Package for Artists, Lovers etc
https://github.com/nimeshkverma/gitart
art fun heart pip python
Last synced: 1 day ago
JSON representation
Python Package for Artists, Lovers etc
- Host: GitHub
- URL: https://github.com/nimeshkverma/gitart
- Owner: nimeshkverma
- License: mit
- Created: 2016-02-12T06:56:38.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-03T12:56:18.000Z (over 8 years ago)
- Last Synced: 2024-10-08T18:14:58.580Z (about 1 month ago)
- Topics: art, fun, heart, pip, python
- Language: Python
- Homepage: https://pypi.python.org/pypi/GitArt/1.0.2
- Size: 102 KB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
#GitArt
### Python Package to Create Art though GitPresently allows users to Create Heart Shape on their GitHub Profile Contibution Summary
![Repo Tree](https://github.com/nimeshkverma/GitArt/blob/master/images/HeartPreview.jpg)
## How To Make a Heart
- Install the Package using the command : `pip install GitArt`
- Import the `Heart` module from `GitArt`
- Create an object of `GitHeart`
- Call the `create_heart` function of the object created with arguments `git_repo_url`, `max_commits` and `weeks_from_now`. Last two arguments are optional.Code for above steps:-
In the Command Line:-`pip install GitArt`
In a python script or python shell:-
```
from GitArt import Heart
git_heart_obj = Heart.GitHeart()
git_repo_url = '[email protected]:nimeshkverma/HelloWorld.git'#To Get Heart with default commits and with end_week as present week
git_heart_obj.create_heart(git_repo_url=git_repo_url)#To Get Heart with 10 commits per day and the heart border in the week = present_week -2
git_heart_obj.create_heart(git_repo_url=git_repo_url, max_commits=10, weeks_from_now=2)
```Thanks locx for the idea :)
![Repo Tree](https://github.com/nimeshkverma/GitArt/blob/master/images/NimSubtleQuote.jpg)