http://code.google.com/p/webcrawlers/source/browse/#svn/trunk/Pdf-crawler/pyPdf-1.12
A Pure-Python library built as a PDF toolkit. It is capable of:
* extracting document information (title, author, …),
* splitting documents page by page,
* merging documents page by page,
* cropping pages,
* merging multiple pages into a […]
index pdf
pdf online
PDF is the global standard for electronic documents. It supports high-quality printing yet is totally portable
across platforms, thanks to the freely available Acrobat Reader. Any application which previously generated
hard copy reports or driving a printer can benefit from making PDF documents instead; these can be
archived, emailed, placed on the web, or printed out the old-fashioned […]
net pdf
The ReportLab library directly creates PDF based on your graphics commands. There are no intervening
steps. Your applications can generate reports extremely fast - sometimes orders of magnitude faster than
traditional report-writing tools. This approach is shared by several other libraries - PDFlib for C, iText for
Java, iTextSharp for .NET and others. However, The ReportLab library differs […]
e pdf pdfgen reportlab
The pdfgen package is the lowest level interface for generating PDF documents. A pdfgen program is
essentially a sequence of instructions for “painting” a document onto a sequence of pages. The interface
object which provides the painting operations is the pdfgen canvas.
The canvas should be thought of as a sheet of white paper with points on the […]
PDF Django
Outputting PDFs with Django http://docs.djangoproject.com/en/dev/howto/outputting-pdf/
This document explains how to output PDF files dynamically using Django views. This is made possible by the excellent, open-source ReportLab Python PDF library.
The advantage of generating PDF files dynamically is that you can create customized PDFs for different purposes – say, for different users or different pieces of content.
For example, […]
What is Python?
Python is an interpreted, interactive, object-oriented programming language. It is often compared to Tcl,
Perl, Scheme or Java.
Python combines remarkable power with very clear syntax. It has modules, classes, exceptions, very high
level dynamic data types, and dynamic typing. There are interfaces to many system calls and libraries, as
well as to various windowing systems (X11, Motif, Tk, […]
What is the ReportLab PDF Library?
This is a software library that lets you directly create documents in Adobe’s Portable Document Format
(PDF) using the Python programming language. It also creates charts and data graphics in various bitmap and
vector formats as well as PDF.
PDF is the global standard for electronic documents. It supports high-quality printing yet is totally portable
across platforms, thanks to […]
reportlab barcode django
http://svn.affinitic.be/python/reportlab/barcode/
* ..
* __init__.py
* code128.py
* code39.py
* code93.py
* common.py
* eanbc.py
* fourstate.py
* test.py
* usps.py
[…]
Documentation ReportLab
http://www.reportlab.org/os_documentation.html
The following files are documentation for the various ReportLab Open Source Projects. They are PDF files - if your web browser does not display them correctly (or if you wish to save them for later reference), right click on the link and select ‘Save Target As…’ (IE) or ‘Save Link As…’ (Firefox).
The ReportLab Open […]
What’s New in ReportLab 2.0 for Django
WARNING — 2.0 MAY REQUIRE CHANGES TO YOUR APPLICATIONS.
Version 2.0 of the ReportLab open-source toolkit is out!
Many new features have been added, foremost amongst which is the support for unicode. This page documents what has changed since version 1.20.
Adding full unicode support meant that we had to break backwards-compatibility, so old code written for ReportLab […]
Default Reportlab and Barcodes
Hi All,
I need someone to explain to me how to output a Code39 barcode to a
Reportlab PDF. As far as I can tell, there is no means to do this with
the Canvas object, and the demo that is included with the libraries is
using the platypus Frame to place the barcode on the form. I do […]
Logweeder python
http://www.unixuser.org/~euske/python/logweeder/index.html
Logweeder is a log analyzer. It scans UN*X logs (syslog), categorizes common events, and discovers uncommon events automatically.
In most UN*X systems, syslogs are recorded one event per line. Logweeder scans syslog outputs (e.g. /var/log/messages) and identify “uncommon” events. To detect uncommon entries, a program first learns “common” log patterns from existing log files. This is […]
PDFMiner python
Python PDF parser and analyzer
Last Modified: Sat Sep 6 13:52:10 JST 2008
What’s It?
PDFMiner is a suite of programs that aims to help analyzing text data from PDF documents. It includes a PDF parser, a PDF renderer (though only rendering text is supported for now), and a couple of nice tools to extract texts. Unlike other […]
sort dictionary python
items = [(v, k) for k, v in d.items()]
items.sort()
items.reverse()
items = [(k, v) for v, k in items]
title = ""
for i in items:
title = title + " " + i[0] + " " + str(i[1])
PEP: 265
Title: Sorting Dictionaries by Value
Version: 43264
Last-Modified: 2006-03-23 21:13:19 +0100 (Thu, 23 […]
Content Analysis in Python
http://people.iq.harvard.edu/~wlowe/PyContent.html
This page is currently not much more than an extended advertisment for doing content analysis in Python. In time it might expand to a full tutorial, should anyone express interest in reading one. In the meantime it’ll hopefully just whet your appetite.
Note: If you don’t see indented boxes with colored borders and typewriter text inside […]
About Yusuke Shinyama
http://cs.nyu.edu/yusuke/
About Me
I was a student at NYU from September 2002 to August 2007. I was working on Natural Language Processing at Proteus Project.
Email:
Past courseworks
Tiny tools
Publications
* Being Lazy and Preemptive at Learning toward Information Extraction (PDF) (Abstract)
Yusuke Shinyama
Doctoral Dissertation.
[…]
Convert UIF to ISO
http://wesleybailey.com/articles/convert-uif-to-iso
The fastest way to convert an UIF image to ISO image is UIF2ISO. It is a speedy command line tool, that will save you the hassle of installing wine and MagicISO.
This is how I downloaded and installed UIF2ISO, written by Luigi Auriemma.
1. We first need to install zlib and OpenSSL with apt-get.
sudo apt-get install zlib1g […]
Working with Events JQuery
http://www.learningjquery.com/2008/05/working-with-events-part-2
In my last article, I described the common problem of events seemingly ceasing to work for new elements added to a document, whether by some form of ajax or by DOM modification. We examined one way to overcome the problem: Event Delegation. With event delegation, we bind the event handler to a containing element that […]
custom javascript in django admin contrib
Combining media objects¶
Media objects can also be added together. When two media objects are added, the resulting Media object contains the union of the media from both files:
class Media:
css = {
'all': ('pretty.css',)
}
js = ('animations.js', 'actions.js')
it is only for edit page
or you can add it direct in base of admin […]
check of request is xmlHttp in php
For axja server side
if($_SERVER['HTTP_X_REQUESTED_WITH'] == 'XMLHttpRequest')
{
}
