From af2c58ccddcef9882a2c616bb4bce432d9c86107 Mon Sep 17 00:00:00 2001 From: David Date: Sun, 16 Nov 2014 10:12:06 -0500 Subject: [PATCH 1/4] Mutagen has moved to bitbucket --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ed3b87c..a74b2c58 100644 --- a/README.md +++ b/README.md @@ -316,7 +316,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [django-elastic-transcoder](https://github.com/StreetVoice/django-elastic-transcoder) - Django + [Amazon Elastic Transcoder](http://aws.amazon.com/elastictranscoder/). * [eyeD3](http://eyed3.nicfit.net/) - A tool for working with audio files, specifically MP3 files containing ID3 metadata. * [id3reader](http://nedbatchelder.com/code/modules/id3reader.py) - A Python module for reading MP3 meta data. -* [mutagen](https://code.google.com/p/mutagen/) - A Python module to handle audio metadata. +* [mutagen](https://bitbucket.org/lazka/mutagen) - A Python module to handle audio metadata. * [pydub](https://github.com/jiaaro/pydub) - Manipulate audio with a simple and easy high level interface. * [pyechonest](https://github.com/echonest/pyechonest) - Python client for the [Echo Nest](http://developer.echonest.com/docs/) API. * [talkbox](http://scikits.appspot.com/talkbox) - A Python library for speech/signal processing. From 7ed44f42f2a5318ed999f8fa0709c5b09c15f8a6 Mon Sep 17 00:00:00 2001 From: Asad Dhamani Date: Tue, 18 Nov 2014 15:04:27 +0530 Subject: [PATCH 2/4] Add pyspider --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a74b2c58..50c0fbcd 100644 --- a/README.md +++ b/README.md @@ -615,6 +615,7 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [MechanicalSoup](https://github.com/hickford/MechanicalSoup) - A Python library for automating interaction with websites. * [mechanize](http://wwwsearch.sourceforge.net/mechanize/) - Stateful programmatic web browsing. * [Demiurge](https://github.com/matiasb/demiurge) - PyQuery-based scraping micro-framework. +* [pyspider](https://github.com/binux/pyspider) - A Powerful Spider System in Python. ## Web Content Extracting From 5b15054dcbd55d46f66ed53ba2a0f4592d41c592 Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Wed, 19 Nov 2014 13:25:06 +0300 Subject: [PATCH 3/4] Add debug and move pdb into secondary links `pdb` from standard library is not awesome (especially with all these alternatives) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a74b2c58..6d426114 100644 --- a/README.md +++ b/README.md @@ -843,8 +843,8 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by *Libraries for debugging code.* -* [pdb](https://docs.python.org/2/library/pdb.html) - (Python standard library) The Python Debugger. -* [ipdb](https://pypi.python.org/pypi/ipdb) - IPython-enabled pdb. +* [ipdb](https://pypi.python.org/pypi/ipdb) - IPython-enabled [pdb](https://docs.python.org/2/library/pdb.html). +* [debug](https://pypi.python.org/pypi/debug) - `import debug` to fall into `ipdb` with `see`. * [winpdb](http://winpdb.org/) - A Platform Independent Python Debugger with GUI. * [pudb](https://pypi.python.org/pypi/pudb) – A full-screen, console-based Python debugger. * [pyringe](https://github.com/google/pyringe) - Debugger capable of attaching to and injecting code into Python processes. From 74fea6a2e8993e5cc3a6b801673896e55b189476 Mon Sep 17 00:00:00 2001 From: Akash Shende Date: Sun, 23 Nov 2014 10:40:59 +0530 Subject: [PATCH 4/4] Add ReportLab and OpenPyXL --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index eb002e90..97459e17 100644 --- a/README.md +++ b/README.md @@ -213,9 +213,11 @@ A curated list of awesome Python frameworks, libraries and software. Inspired by * [XlsxWriter](https://xlsxwriter.readthedocs.org/) - A Python module for creating Excel .xlsx files. * [xlwings](http://xlwings.org/) - A BSD-licensed library that makes it easy to call Python from Excel and vice versa. * [Marmir](https://github.com/brianray/mm) - Takes Python data structures and turns them into spreadsheets. + * [openpyxl](https://openpyxl.readthedocs.org/en/latest/) - Read/write Excel 2007+ files. * PDF * [PDFMiner](https://github.com/euske/pdfminer) - A tool for extracting information from PDF documents. * [PyPDF2](https://github.com/mstamy2/PyPDF2) - A library capable of splitting, merging and transforming PDF pages. + * [ReportLab](https://bitbucket.org/rptlab/reportlab) - A PDF Toolkit, create rich PDF documents, charts and lot. * Markdown * [Python-Markdown](https://github.com/waylan/Python-Markdown) - A Python implementation of John Gruber’s Markdown. * [Mistune](https://github.com/lepture/mistune) - Fastest and full featured pure Python parsers of Markdown.