Skip to content

Commit

Permalink
modified readme file
Browse files Browse the repository at this point in the history
  • Loading branch information
charudatta10 committed May 29, 2024
1 parent 31e292d commit 268f7b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The project generates readme file.


## Built With 🔧
![](https://img.shields.io/badge/Javascript-3E955C?style=for-the-badge&logo=javaScript&logoColor=fff) ![](https://img.shields.io/badge/Css3-735C38?style=for-the-badge&logo=css3&logoColor=fff) ![](https://img.shields.io/badge/Html5-3FC428?style=for-the-badge&logo=html5&logoColor=fff) ![](https://img.shields.io/badge/Python-F80674?style=for-the-badge&logo=python&logoColor=000) ![](https://img.shields.io/badge/Latex-E0FCAF?style=for-the-badge&logo=latex&logoColor=000)
![](https://img.shields.io/badge/Javascript-0D1629?style=for-the-badge&logo=javaScript&logoColor=fff) ![](https://img.shields.io/badge/Css3-24AE53?style=for-the-badge&logo=css3&logoColor=fff) ![](https://img.shields.io/badge/Html5-BB9DBD?style=for-the-badge&logo=html5&logoColor=000) ![](https://img.shields.io/badge/Python-448EEA?style=for-the-badge&logo=python&logoColor=fff) ![](https://img.shields.io/badge/Latex-D8C458?style=for-the-badge&logo=latex&logoColor=000)

<!-- GETTING STARTED -->

Expand Down
1 change: 1 addition & 0 deletions config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"title": "readme-generator", "description": "Readme generator python script. \nThe project generates readme file. ", "features": ["Generates badges", "Generate markdown file"], "list_badges": ["javaScript", "css3", "html5", "python", "latex"], "steps": ["Edit data section python file", "python readme_generator.py"], "FAQ": {"Are there any depencdecy": "No", "what are import": "random package"}, "dependencies": ["random"]}
13 changes: 3 additions & 10 deletions readme_generator.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,8 @@
import random
import json

data = {
"title": "readme-generator",
"description": """Readme generator python script.
The project generates readme file. """,
"features": ["Generates badges","Generate markdown file"],
"list_badges": ["javaScript","css3","html5","python","latex"],
"steps":["Edit data section python file","python readme_generator.py"],
"FAQ":{"Are there any depencdecy":"No","what are import":"random package"},
"dependencies":["random"],
}
with open("config.json", "r") as f:
data = json.load(f)

def ufunc_lst2str(inpt_list):
inpt_list = ["- " + item + "\n" for item in inpt_list]
Expand Down

0 comments on commit 268f7b1

Please sign in to comment.