Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alifyasa/git-faker
Simulate git commit using non-homogenenous poisson process and create a git repository based on the simulation result.
https://github.com/alifyasa/git-faker
git poisson-process python simulation
Last synced: about 2 months ago
JSON representation
Simulate git commit using non-homogenenous poisson process and create a git repository based on the simulation result.
- Host: GitHub
- URL: https://github.com/alifyasa/git-faker
- Owner: alifyasa
- License: mit
- Created: 2024-04-01T03:29:09.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-04-02T08:48:01.000Z (9 months ago)
- Last Synced: 2024-04-23T23:00:51.039Z (9 months ago)
- Topics: git, poisson-process, python, simulation
- Language: Python
- Homepage:
- Size: 187 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Git Faker
Simulate git commit using non-homogenenous poisson process and create a git repository based on simulation result.
## Screenshots
![Image of Git Faker After Execution](docs/images/DONE.png)
![Image of Git Faker During Execution](docs/images/ONGOING.png)## Initializing Environment
```shell
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```## Running Project
```shell
python -m git_faker
```## Formatting and Linting
Formatting using `black`:
```shell
black git_faker
```Linting using `pylint`:
```shell
pylint git_faker
```## References
1. [https://dspace.cuni.cz/bitstream/handle/20.500.11956/101040/120308816.pdf?sequence=1](https://dspace.cuni.cz/bitstream/handle/20.500.11956/101040/120308816.pdf?sequence=1)