Skip to content

Commit

Permalink
Release commit for v.0.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
holgerd77 authored and holgerd77 committed Jan 14, 2016
1 parent fbb6f45 commit 24b6234
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,11 @@ Docker container can be run with::

Release Notes
=============
**Changes in version 0.9.2-beta** (2016-01-14)

* New processor ``remove_chars`` (see: :ref:`processors`) for removing one or several type of chars from
a scraped string

**Changes in version 0.9.1-beta** (2016-01-13)

* Allowing empty ``x_path`` scraper attribute fields for easier appliance of ``static`` processor to fill
Expand Down
10 changes: 10 additions & 0 deletions docs/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,16 @@ string_strip
*Result (Example)* " ... Example Text!!!" -> "Example Text"
============================== ================================================================

remove_chars
^^^^^^^^^^^^
============================== ================================================================
*Description* Removing of characters or character pattern using the python
re.sub function by providing a regex pattern
*Usable with other processors* Yes
*Context definition (Example)* ``'remove_chars': '[-\.]+'``
*Result (Example)* "Example... Text--!--!!" -> "Example Text!!!"
============================== ================================================================

pre_string
^^^^^^^^^^
============================== ===================================================================
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='django-dynamic-scraper',
version='0.9.1',
version='0.9.2',
description='Creating Scrapy scrapers via the Django admin interface',
author='Holger Drewes',
author_email='Holger.Drewes@gmail.com',
Expand Down

0 comments on commit 24b6234

Please sign in to comment.