Skip to content

Commit

Permalink
naming convention
Browse files Browse the repository at this point in the history
  • Loading branch information
aceisace committed Jun 3, 2023
1 parent 48e393e commit 9486006
Show file tree
Hide file tree
Showing 22 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion inkycal/custom/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion inkycal/display/display.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""
Inkycal ePaper driving functions
Copyright by aceisace
Copyright by aceinnolab
"""
import asyncio
import os
Expand Down
2 changes: 1 addition & 1 deletion inkycal/display/drivers/10_in_3.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion inkycal/display/drivers/7_in_8.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion inkycal/display/drivers/9_in_7.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion inkycal/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

"""
Main class for inkycal Project
Copyright by aceisace
Copyright by aceinnolab
"""

import glob
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/dev_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
Third party module template (inkycal-compatible module)
Copyright by aceisace
Copyright by aceinnolab
"""

#############################################################################
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/ical_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""
Inkycal iCalendar parsing module
Copyright by aceisace
Copyright by aceinnolab
"""
import urllib
import arrow
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inky_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
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
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_agenda.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""
Inkycal Agenda Module
Copyright by aceisace
Copyright by aceinnolab
"""

import arrow
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_calendar.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""
Inkycal Calendar Module
Copyright by aceisace
Copyright by aceinnolab
"""

# pylint: disable=logging-fstring-interpolation
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""
Feeds module for InkyCal Project
Copyright by aceisace
Copyright by aceinnolab
"""
import re

Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_image.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""
Inkycal Image Module
Copyright by aceisace
Copyright by aceinnolab
"""

from inkycal.modules.template import inkycal_module
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_jokes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 *
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
Inkycal-server module for Inkycal Project
by Aterju (https://inkycal.robertsirre.nl/)
Copyright by aceisace
Copyright by aceinnolab
"""

import requests
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_slideshow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""
Inkycal Slideshow Module
Copyright by aceisace
Copyright by aceinnolab
"""
import glob

Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_textfile_to_display.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
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 *
Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_todoist.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""
Inkycal Todoist Module
Copyright by aceisace
Copyright by aceinnolab
"""
import arrow

Expand Down
2 changes: 1 addition & 1 deletion inkycal/modules/inkycal_weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

"""
Inkycal weather module
Copyright by aceisace
Copyright by aceinnolab
"""

from inkycal.modules.template import inkycal_module
Expand Down
2 changes: 1 addition & 1 deletion inkycal/tests/inkycal_image_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
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")
Expand Down
4 changes: 2 additions & 2 deletions inkycal/tests/inkycal_slideshow_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
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):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
__packages__ = ["inkycal"]
__author__ = "aceisace"
__author_email__ = "[email protected]"
__url__ = "https://github.com/aceisace/Inkycal"
__url__ = "https://github.com/aceinnolab/Inkycal"

__install_requires__ = required

Expand Down

0 comments on commit 9486006

Please sign in to comment.