Ejemplo n.º 1
0
Archivo: main.py Proyecto: cmyui/Asahi
def load_discord_cogs() -> None:
    files = plazy.list_files(root='disc',
                             filter_func=lambda x: x.endswith('.py'),
                             is_include_root=True)

    for file in files:
        cog_name = file.replace('/', '.')
        dc.load_extension(cog_name[:-3])
Ejemplo n.º 2
0
def load_discord_cogs() -> None:
    files = plazy.list_files(
        root="disc",
        filter_func=lambda x: x.endswith(".py"),
        is_include_root=True,
    )

    for file in files:
        cog_name = file.replace("/", ".")
        dc.load_extension(cog_name[:-3])
Ejemplo n.º 3
0
def list_files2(path, file_type):
	type_filter = lambda x : True if x.endswith('.'+file_type) else False
	files = plazy.list_files(root=path, filter_func=type_filter, is_include_root=True)
	return files
Ejemplo n.º 4
0
import os
import plazy
path = plazy.list_files(os.getcwd())
templates = []
for file in path:
    if ".yaml" in file:
        templates.append(file)
templates.sort()
markdown = "# Kenzer Templates [{0}]\r".format(len(templates))
markdown += "| TEMPLATE | TOOL | FILE |\r"
markdown += "| :----: | :----: | :----: |\r"
for template in templates:
    tool = template.split("/")[0].split(".")[0]
    sign = ".".join(template.split("/")[-1].split(".")[0:-1])
    path = "https://github.com/ARPSyndicate/kenzer-templates/tree/main/" + \
        template.replace("\\", "/")
    markdown += "| {0} | {1} | [{2}]({3}) |\r".format(sign,
                                                      tool, template, path)

with open("README.md", "w") as f:
    f.write(markdown)