diff --git a/docs/inkycal.html b/docs/inkycal.html index 2166d2b..e098b4e 100644 --- a/docs/inkycal.html +++ b/docs/inkycal.html @@ -232,14 +232,14 @@ which the given font should be scaled to.
Draws a border at given coordinates.
image: The image on which the border should be drawn (usually im_black or -im_colour.
xy: Tuple representing the top-left corner of the border e.g. (32, 100) -where 32 is the x co-ordinate and 100 is the y-coordinate.
size: Size of the border as a tuple -> (width, height).
radius: Radius of the corners, where 0 = plain rectangle, 5 = round corners.
thickness: Thickness of the border in pixels.
The extracted timezone can be used to show the local time instead of UTC. e.g.
>>> import arrow
>>> print(arrow.now()) # returns non-timezone-aware time
->>> print(arrow.now(tz=get_system_tz()) # prints timezone aware time.
+>>> print(arrow.now(tz=get_system_tz())) # prints timezone aware time.
checks if the internet is available.
Attempts to connect to google.com with a timeout of 5 seconds to check if the network can be reached.
@@ -315,7 +315,7 @@ if the network can be reached.Splits a very long text into smaller parts
Splits a long text to smaller lines which can fit in a line with max_width. Uses a Font object for more accurate calculations.
@@ -334,7 +334,7 @@ splitting the text into the next chunk.Writes text on an image.
Writes given text at given position on the specified image.