Skip to content
This repository has been archived by the owner on Aug 13, 2022. It is now read-only.

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
RDIL committed Sep 23, 2018
1 parent ad98e91 commit ee84f3c
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions area4/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,34 @@
# ~ Area4 Package by RDIL ~

# Package info variables:
name = "area4"
author = "https://github.com/RDIL"
author_email = "contactspaceboom@gmail.com"
description = "Dividers in Python, the easy way! Four different types."
license = "MIT License"

# Divider variables:
divider1 = str("------------------------")
divider2 = str("________________________")
divider3 = str("........................")
divider4 = str("⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛⬛")

# Functions:
def div1():
print(divider1)

def div2():
print(divider2)

def div3():
print(divider3)

def div4():
print(divider4)

def area4info():
print("Name:", name)
print("Author:", author, "\n Author Email:", author_email)
print("Description:", description)
print("License:", license)

0 comments on commit ee84f3c

Please sign in to comment.