summaryrefslogtreecommitdiffstats
path: root/payyans/payyans/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'payyans/payyans/__init__.py')
-rwxr-xr-xpayyans/payyans/__init__.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/payyans/payyans/__init__.py b/payyans/payyans/__init__.py
index 385b125..3f735cf 100755
--- a/payyans/payyans/__init__.py
+++ b/payyans/payyans/__init__.py
@@ -4,3 +4,23 @@
"""Payyans is a python program to convert the data written for ascii fonts in ascii format to the Unicode format"""
__AUTHORS__ = [ ("Santhosh Thottingal", "santhosh.thottingal@gmail.com", "Nishan Naseer", "nishan.naseer@gmail.com")]
+
+from payyan import Payyan
+import os
+import string
+
+class Payyans:
+ def __init__(self,input_file, output_file,mapping_file):
+ self.payyan= Payyan()
+ (inp_file, inp_ext) = os.path.splitext(input_file)
+ if string.upper(inp_ext) == ".PDF":
+ self.payyan.pdf=1
+ self.payyan.input_filename=input_file
+ self.payyan.output_filename=output_file
+ self.payyan.mapping_filename=mapping_file
+
+
+ def ascii2unicode(self):
+ self.payyan.Ascii2Uni()
+ def unicode2ascii(self):
+ self.payyan.Uni2Ascii()