readme-script
This commit is contained in:
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"python.linting.enabled": false
|
||||
}
|
||||
@ -1,5 +1,5 @@
|
||||
import re
|
||||
codeRe = "```\s*python([\s\S]*?)```"
|
||||
import util
|
||||
from collections import defaultdict
|
||||
def title_case(str):
|
||||
return str[:1].upper() + str[1:].lower()
|
||||
EMOJIS = {
|
||||
@ -18,34 +18,24 @@ EMOJIS = {
|
||||
'utility': ':wrench:'
|
||||
}
|
||||
def tagger():
|
||||
tag_data = open('tag_database').read()
|
||||
tag_dict = {}
|
||||
tag_list = tag_data.split('\n')
|
||||
for tag in tag_list:
|
||||
category = tag.split(':')[1]
|
||||
snippet = tag.split(':')[0]
|
||||
if category in tag_dict:
|
||||
tag_dict[category].append(snippet)
|
||||
else:
|
||||
tag_dict[category] = [snippet]
|
||||
return tag_dict
|
||||
tag_db = defaultdict(list)
|
||||
for snippet in util.read_snippets():
|
||||
tag_db[snippet.category[0]].append(snippet)
|
||||
return tag_db
|
||||
|
||||
start = open("static-parts/readme-start.md").read() + '\n\n'
|
||||
end = open("static-parts/readme-end.md").read()
|
||||
start = util.read_readme_start()
|
||||
end = util.read_readme_end()
|
||||
toAppend = ''
|
||||
tag_dict = tagger()
|
||||
toAppend += '## Table of Contents \n'
|
||||
for category in tag_dict:
|
||||
for category in sorted(tag_dict):
|
||||
toAppend = toAppend + '### ' + EMOJIS[category] + ' ' + title_case(category) +'\n\n<details><summary>View contents</summary> <ul>'
|
||||
for snippet in sorted(tag_dict[category]):
|
||||
toAppend += f'<li><a href = "#{snippet}"><code>{snippet}</code></a></li>\n'
|
||||
for snippet in sorted(tag_dict[category],key=lambda snippet : snippet.name):
|
||||
toAppend += f'<li><a href = "#{snippet.name}"><code>{snippet.name}</code></a></li>\n'
|
||||
toAppend += '</ul></details>\n\n'
|
||||
toAppend += '<hr></hr> \n\n'
|
||||
for category in tag_dict:
|
||||
toAppend = toAppend + '## ' + EMOJIS[category] + ' ' + title_case(category) +'\n\n'
|
||||
for snippet in sorted(tag_dict[category]):
|
||||
someFile = open("snippets/" + snippet + '.md')
|
||||
for category in sorted(tag_dict):
|
||||
toAppend = toAppend + '## ' + EMOJIS[category] + ' ' + title_case(scategory) +'\n\n'
|
||||
for snippet in sorted(tag_dict[category],key=lambda snippet : snippet.name):
|
||||
fileData = someFile.read()
|
||||
codeParts = re.split(codeRe,fileData)
|
||||
toAppend += codeParts[0] + '```py{codeParts[1]} \n ```'.format(codeParts= codeParts) +codeParts[2] + '<details><summary>View Examples</summary>\n\n```py\n{codeParts[3]}\n```\n</details>\n\n<br><a href = "#table-of-contents">:arrow_up: Back to top</a>\n '.format(codeParts=codeParts) + '\n'
|
||||
open("README.md",'w').write(start+toAppend+'\n'+end)
|
||||
toAppend += f'###{snippet.title}\n\n```py{snippet.read_code()} \n ```'.format(codeParts= codeParts) +codeParts[2] + '<details><summary>View Examples</summary>\n\n```py\n{codeParts[3]}\n```\n</details>\n\n<br><a href = "#table-of-contents">:arrow_up: Back to top</a>\n '.format(codeParts=codeParts) + '\n'
|
||||
open("README.md",'w').write(start+toAppend+'\n'+end)'''
|
||||
50
scripts/util.py
Normal file
50
scripts/util.py
Normal file
@ -0,0 +1,50 @@
|
||||
import os,re
|
||||
def tagger():
|
||||
snippet_files = [snippet.replace('.md','')for snippet in os.listdir('snippets')]
|
||||
|
||||
tag_database_file = open('tag_database')
|
||||
|
||||
tag_database = tag_database_file.read()
|
||||
|
||||
tag_database_file.close()
|
||||
|
||||
tag_database = [tag for tag in tag_database.split('\n') if tag.strip() != '']
|
||||
|
||||
tag_db = {}
|
||||
|
||||
for tag in tag_database:
|
||||
tag_db[tag.split(':')[0].strip()] = tag.split(':')[1].strip().split(',')
|
||||
return tag_db
|
||||
def read_snippets():
|
||||
snippet_files = os.listdir('snippets')
|
||||
|
||||
snippets = []
|
||||
|
||||
class snippet():
|
||||
def __init__(self,file_location):
|
||||
with open(file_location) as f:
|
||||
self.content = f.read()
|
||||
self.codeRe = "```\s*python([\s\S]*?)```"
|
||||
self.titleRe = '###\\s*([\\w]+)'
|
||||
self.descRe = '###\s*\w+\s*([\s\S]+)```\s*python[\s\S]+```\s*```\s*python[\s\S]+```'
|
||||
self.name = self.read_title()
|
||||
self.category = tagger()[self.name]
|
||||
def read_code(self):
|
||||
return re.findall(self.codeRe,self.content)[0].strip()
|
||||
def read_title(self):
|
||||
return re.findall(self.titleRe,self.content)[0].strip()
|
||||
def read_description(self):
|
||||
return re.findall(self.descRe,self.content)[0].strip()
|
||||
def read_example(self):
|
||||
return re.findall(self.codeRe,self.content)[1].strip()
|
||||
for snippet_file in snippet_files:
|
||||
snippets.append(snippet(f'snippets/{snippet_file}'))
|
||||
return snippets
|
||||
def read_readme_start():
|
||||
with open('static-part/readme-start.md') as f:
|
||||
readme_start = f.read()
|
||||
return readme_start
|
||||
def read_readme_end():
|
||||
with open('static-part/readme-end.md') as f:
|
||||
readme_end = f.read()
|
||||
return readme_end
|
||||
@ -18,7 +18,7 @@ def spread(arg):
|
||||
def deep_flatten(arr):
|
||||
result = []
|
||||
result.extend(
|
||||
spread(list(map(lambda x: deep(x) if type(x) == list else x, arr))))
|
||||
spread(list(map(lambda x: deep_flatten(x) if type(x) == list else x, arr))))
|
||||
return result
|
||||
```
|
||||
|
||||
|
||||
@ -25,7 +25,7 @@ def lcm(*args):
|
||||
numbers.extend(spread(list(args)))
|
||||
|
||||
def _gcd(x, y):
|
||||
return x if not y else gcd(y, x % y)
|
||||
return x if not y else _gcd(y, x % y)
|
||||
|
||||
def _lcm(x, y):
|
||||
return x * y / _gcd(x, y)
|
||||
|
||||
@ -7,3 +7,5 @@
|
||||
>Python implementation of 30-seconds-of-code.
|
||||
|
||||
**Note**:- This is in no way affiliated with the original [30-seconds-of-code](https://github.com/Chalarangelo/30-seconds-of-code/).
|
||||
|
||||
### Table of contents
|
||||
|
||||
@ -23,3 +23,4 @@ is_lower_case:string
|
||||
count_by:list
|
||||
difference_by:list
|
||||
insertion_sort:list
|
||||
|
||||
|
||||
@ -11,5 +11,5 @@ def spread(arg):
|
||||
def deep_flatten(arr):
|
||||
result = []
|
||||
result.extend(
|
||||
spread(list(map(lambda x: deep(x) if type(x) == list else x, arr))))
|
||||
spread(list(map(lambda x: deep_flatten(x) if type(x) == list else x, arr))))
|
||||
return result
|
||||
9
test/insertion_sort/insertion_sort.py
Normal file
9
test/insertion_sort/insertion_sort.py
Normal file
@ -0,0 +1,9 @@
|
||||
def insertionsort(arr):
|
||||
|
||||
for i in range(1, len(arr)):
|
||||
key = arr[i]
|
||||
j = i - 1
|
||||
while j >= 0 and key < arr[j]:
|
||||
arr[j + 1] = arr[j]
|
||||
j -= 1
|
||||
arr[j + 1] = key
|
||||
6
test/insertion_sort/insertion_sort.test.py
Normal file
6
test/insertion_sort/insertion_sort.test.py
Normal file
@ -0,0 +1,6 @@
|
||||
import types,functools
|
||||
from pytape import test
|
||||
from insertion_sort import insertion_sort
|
||||
def insertion_sort_test(t):
|
||||
t.true(isinstance(insertion_sort, (types.BuiltinFunctionType, types.FunctionType, functools.partial)),'insertion_sort is a function')
|
||||
test('Testing insertion_sort',insertion_sort_test)
|
||||
@ -16,7 +16,7 @@ def lcm(*args):
|
||||
numbers.extend(spread(list(args)))
|
||||
|
||||
def _gcd(x, y):
|
||||
return x if not y else gcd(y, x % y)
|
||||
return x if not y else _gcd(y, x % y)
|
||||
|
||||
def _lcm(x, y):
|
||||
return x * y / _gcd(x, y)
|
||||
|
||||
Reference in New Issue
Block a user