naming convention
This commit is contained in:
parent
48e393e48c
commit
9486006e86
@ -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
|
||||
|
@ -1,6 +1,6 @@
|
||||
"""
|
||||
Inkycal ePaper driving functions
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
import asyncio
|
||||
import os
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -3,7 +3,7 @@
|
||||
|
||||
"""
|
||||
Main class for inkycal Project
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
|
||||
import glob
|
||||
|
@ -3,7 +3,7 @@
|
||||
"""
|
||||
Third party module template (inkycal-compatible module)
|
||||
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
|
||||
#############################################################################
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"""
|
||||
Inkycal iCalendar parsing module
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
import urllib
|
||||
import arrow
|
||||
|
@ -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
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"""
|
||||
Inkycal Agenda Module
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
|
||||
import arrow
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"""
|
||||
Inkycal Calendar Module
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
|
||||
# pylint: disable=logging-fstring-interpolation
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"""
|
||||
Feeds module for InkyCal Project
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
import re
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"""
|
||||
Inkycal Image Module
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
|
||||
from inkycal.modules.template import inkycal_module
|
||||
|
@ -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 *
|
||||
|
@ -3,7 +3,7 @@
|
||||
"""
|
||||
Inkycal-server module for Inkycal Project
|
||||
by Aterju (https://inkycal.robertsirre.nl/)
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
|
||||
import requests
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"""
|
||||
Inkycal Slideshow Module
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
import glob
|
||||
|
||||
|
@ -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 *
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"""
|
||||
Inkycal Todoist Module
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
import arrow
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
"""
|
||||
Inkycal weather module
|
||||
Copyright by aceisace
|
||||
Copyright by aceinnolab
|
||||
"""
|
||||
|
||||
from inkycal.modules.template import inkycal_module
|
||||
|
@ -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")
|
||||
|
@ -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):
|
||||
|
2
setup.py
2
setup.py
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user