Skip to content

Commit

Permalink
somy function names declared in main package
Browse files Browse the repository at this point in the history
  • Loading branch information
il6 committed Jun 24, 2020
1 parent 18a852e commit ae59e61
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion jadukor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,31 @@
def name():
return ('I am A T M Ragib Raihan')
return ('I am A T M Ragib Raihan')


def rm():
pass


def ls(file_extension='', tree=False):
if file_extension:
if type(file_extension) is str:
print('Files with {} extention')
elif (type(file_extension) is list) or (type(file_extension) is tuple):
print('Files with {} extentions'.format(file_extension))
else:
raise Exception("file_extension parameter should be either a string or a list or a tuple")

def cat():
pass

def cd():
pass

def touch():
pass

def mkdir():
pass

# get()
# soup()

0 comments on commit ae59e61

Please sign in to comment.