combine modelformset and inlineformset in django views

2012-08-12 Thread Asif Jamadar
I have two models class A(models.Model): name = models.CharField(50) type = models.CharField(50) class B(models.Model): field1 = ForeignKeyField(A) value = IntegerField() I need to generate both formsets and inline formsets using the

How to read barcoded value from PDF

2011-06-27 Thread Asif Jamadar
Hi, I have a PDF document which consist of barcode characters. Now how can I retrieve that bar-coded value programmatically. When I googled I found a tool called Pypdf which provides a function called 'PdfFileReader' To read the PDF file, but how can I read the barcode form the existing PDF.

How to read barcoded value from PDF

2011-06-27 Thread Asif Jamadar
Hi, I have a PDF document which consist of barcode characters. Now how can I retrieve that bar-coded value programmatically. When I googled I found a tool called Pypdf which provides a function called 'PdfFileReader' To read the PDF file, but how can I read the barcode form the existing PDF.

Read barcode from the PDF document

2011-06-27 Thread Asif Jamadar
I have PDF document which consist of barcode characters. Now how can I read these barcode characters using python code? Or how can I recognize this barcode? -- http://mail.python.org/mailman/listinfo/python-list