naming convention

This commit is contained in:
Ace 2023-06-03 16:16:07 +02:00
parent 48e393e48c
commit 9486006e86
22 changed files with 23 additions and 23 deletions

View File

@ -3,7 +3,7 @@
"""
Inkycal custom-functions for ease-of-use
Copyright by aceisace
Copyright by aceinnolab
"""
import logging
from PIL import Image, ImageDraw, ImageFont, ImageColor

View File

@ -1,6 +1,6 @@
"""
Inkycal ePaper driving functions
Copyright by aceisace
Copyright by aceinnolab
"""
import asyncio
import os

View File

@ -1,7 +1,7 @@
#!python3
"""
10.3" driver class
Copyright by aceisace
Copyright by aceinnolab
"""
from subprocess import run
from inkycal.custom import image_folder, top_level

View File

@ -1,7 +1,7 @@
#!python3
"""
7.8" parallel driver class
Copyright by aceisace
Copyright by aceinnolab
"""
from subprocess import run
from inkycal.custom import image_folder, top_level

View File

@ -1,7 +1,7 @@
#!python3
"""
9.7" driver class
Copyright by aceisace
Copyright by aceinnolab
"""
from subprocess import run
from inkycal.custom import image_folder, top_level

View File

@ -3,7 +3,7 @@
"""
Main class for inkycal Project
Copyright by aceisace
Copyright by aceinnolab
"""
import glob

View File

@ -3,7 +3,7 @@
"""
Third party module template (inkycal-compatible module)
Copyright by aceisace
Copyright by aceinnolab
"""
#############################################################################

View File

@ -2,7 +2,7 @@
"""
Inkycal iCalendar parsing module
Copyright by aceisace
Copyright by aceinnolab
"""
import urllib
import arrow

View File

@ -6,7 +6,7 @@ Custom image class for Inkycal Project
Takes care of handling images. Made to be used by other modules to handle
images.
Copyright by aceisace
Copyright by aceinnolab
"""
import logging
import os

View File

@ -2,7 +2,7 @@
"""
Inkycal Agenda Module
Copyright by aceisace
Copyright by aceinnolab
"""
import arrow

View File

@ -2,7 +2,7 @@
"""
Inkycal Calendar Module
Copyright by aceisace
Copyright by aceinnolab
"""
# pylint: disable=logging-fstring-interpolation

View File

@ -2,7 +2,7 @@
"""
Feeds module for InkyCal Project
Copyright by aceisace
Copyright by aceinnolab
"""
import re

View File

@ -2,7 +2,7 @@
"""
Inkycal Image Module
Copyright by aceisace
Copyright by aceinnolab
"""
from inkycal.modules.template import inkycal_module

View File

@ -4,7 +4,7 @@
iCanHazDadJoke module for InkyCal Project
Special thanks to Erik Fredericks (@efredericks) for the template!
Copyright by aceisace
Copyright by aceinnolab
"""
from inkycal.modules.template import inkycal_module
from inkycal.custom import *

View File

@ -3,7 +3,7 @@
"""
Inkycal-server module for Inkycal Project
by Aterju (https://inkycal.robertsirre.nl/)
Copyright by aceisace
Copyright by aceinnolab
"""
import requests

View File

@ -2,7 +2,7 @@
"""
Inkycal Slideshow Module
Copyright by aceisace
Copyright by aceinnolab
"""
import glob

View File

@ -5,7 +5,7 @@ Textfile module for InkyCal Project
Reads data from a plain .txt file and renders it on the display.
If the content is too long, it will be truncated from the back until it fits
Copyright by aceisace
Copyright by aceinnolab
"""
from inkycal.modules.template import inkycal_module
from inkycal.custom import *

View File

@ -2,7 +2,7 @@
"""
Inkycal Todoist Module
Copyright by aceisace
Copyright by aceinnolab
"""
import arrow

View File

@ -2,7 +2,7 @@
"""
Inkycal weather module
Copyright by aceisace
Copyright by aceinnolab
"""
from inkycal.modules.template import inkycal_module

View File

@ -17,7 +17,7 @@ from inkycal.tests import Config
preview = Inkyimage.preview
merge = Inkyimage.merge
url = "https://github.com/aceisace/Inkycal/raw/assets/Repo/coffee.png"
url = "https://github.com/aceinnolab/Inkycal/raw/assets/Repo/coffee.png"
im = Image.open(requests.get(url, stream=True).raw)
im.save("test.png", "PNG")

View File

@ -21,8 +21,8 @@ if not os.path.exists("tmp"):
os.mkdir("tmp")
im_urls = [
"https://github.com/aceisace/Inkycal/raw/assets/Repo/coffee.png",
"https://github.com/aceisace/Inkycal/raw/assets/Repo/coffee.png"
"https://github.com/aceinnolab/Inkycal/raw/assets/Repo/coffee.png",
"https://github.com/aceinnolab/Inkycal/raw/assets/Repo/coffee.png"
]
for count, url in enumerate(im_urls):

View File

@ -19,7 +19,7 @@ __description__ = "Inkycal is a python3 software for syncing icalendar events, w
__packages__ = ["inkycal"]
__author__ = "aceisace"
__author_email__ = "aceisace63@yahoo.com"
__url__ = "https://github.com/aceisace/Inkycal"
__url__ = "https://github.com/aceinnolab/Inkycal"
__install_requires__ = required