Skip to content

Instantly share code, notes, and snippets.

@shyammohankanojia
Created July 16, 2015 16:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shyammohankanojia/b2b2151b595ea55b2aa2 to your computer and use it in GitHub Desktop.
Save shyammohankanojia/b2b2151b595ea55b2aa2 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
Last login: Thu Jul 16 18:42:16 on ttys003
CodeCruxs-MacBook-Pro:y-jobs codecrux$ ls
Gemfile README app/ config/ lib/ sfdc.pem vendor/
Gemfile.lock README.md app.json config.ru log/ spec/
Procfile Rakefile bin/ db/ public/ tmp/
CodeCruxs-MacBook-Pro:y-jobs codecrux$ cd
CodeCruxs-MacBook-Pro:~ codecrux$ cd workspace/codecrux/naukricw_new/
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ ls
Procfile README.md api/ crawler/ requirements.txt
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ cd crawler/
CodeCruxs-MacBook-Pro:crawler codecrux$ ls
__init__.py naukri/ scrapy.cfg
CodeCruxs-MacBook-Pro:crawler codecrux$ git logs
git: 'logs' is not a git command. See 'git --help'.
Did you mean this?
log
CodeCruxs-MacBook-Pro:crawler codecrux$ git log
commit f39b62c6c0589d37b0a473c0eae34d5f6801194b
commit f39b62c6c0589d37b0a473c0eae34d5f6801194b
Author: Vinay Kumar <vinay@codecrux.com>
Date: Thu Jul 16 13:57:29 2015 +0530
added 4th condition with same as 3rd for filter criteria
commit 2519664699f41ef0af0f5a4721a518acfb0ac916
Author: Vinay Kumar <vinay@codecrux.com>
Date: Wed Jul 15 19:07:37 2015 +0530
megered getdescription script with main project.
commit d0596824a348db570d1acb47928352e95af272a5
Author: dinesh <dinesh1042@gmail.com>
Date: Thu Jul 9 00:54:01 2015 +0530
fixing description bug
commit 4bb32bb24bbc6bbbd0fee5979f380cf1805977ae
commit f39b62c6c0589d37b0a473c0eae34d5f6801194b
Author: Vinay Kumar <vinay@codecrux.com>
Date: Thu Jul 16 13:57:29 2015 +0530
added 4th condition with same as 3rd for filter criteria
commit 2519664699f41ef0af0f5a4721a518acfb0ac916
Author: Vinay Kumar <vinay@codecrux.com>
Date: Wed Jul 15 19:07:37 2015 +0530
megered getdescription script with main project.
commit d0596824a348db570d1acb47928352e95af272a5
Author: dinesh <dinesh1042@gmail.com>
Date: Thu Jul 9 00:54:01 2015 +0530
fixing description bug
commit 4bb32bb24bbc6bbbd0fee5979f380cf1805977ae
Author: dinesh <dinesh1042@gmail.com>
Date: Wed Jul 8 13:21:30 2015 +0530
adding custom template for jobposts
commit c40e6642d82a068757fc751e16c77735fa6cb7de
Author: dinesh <dinesh1042@gmail.com>
Date: Wed Jun 10 14:12:16 2015 +0530
CodeCruxs-MacBook-Pro:crawler codecrux$ git diff d0596824a348db570d1acb47928352e95af272a5
diff --git a/crawler/naukri/helpers/getDescriptionText.py b/crawler/naukri/helpers/getDescriptionText.py
new file mode 100644
index 0000000..e39d50b
--- /dev/null
+++ b/crawler/naukri/helpers/getDescriptionText.py
@@ -0,0 +1,54 @@
+import urllib
+import re
+import HTMLParser
+#import os
+import textile
+import sys
+
+class HtmlTool(object):
+ """
+ Algorithms to process HTML.
+ """
+ #Regular expressions to recognize different parts of HTML.
+ #Internal style sheets or JavaScript
+ script_sheet = re.compile(r"<(script|style).*?>.*?(</\1>)",
+ re.IGNORECASE | re.DOTALL)
+ #HTML comments - can contain ">"
+ comment = re.compile(r"<!--(.*?)-->", re.DOTALL)
+ #HTML tags: <any-text>
+ tag = re.compile(r"<.*?>", re.DOTALL)
+ #Consecutive whitespace characters
+ nwhites = re.compile(r"[\s]+")
+ #<p>, <div>, <br> tags and associated closing tags
+ p_div = re.compile(r"</?(p|div|br).*?>",
+ re.IGNORECASE | re.DOTALL)
+ #Consecutive whitespace, but no newlines
+ nspace = re.compile("[^\S\n]+", re.UNICODE)
+ #At least two consecutive newlines
CodeCruxs-MacBook-Pro:crawler codecrux$ pip install -r requirements.txt
-bash: pip: command not found
CodeCruxs-MacBook-Pro:crawler codecrux$ sudo easy_install pip
Password:
Searching for pip
Reading http://pypi.python.org/simple/pip/
Best match: pip 7.1.0
Downloading https://pypi.python.org/packages/source/p/pip/pip-7.1.0.tar.gz#md5=d935ee9146074b1d3f26c5f0acfd120e
Processing pip-7.1.0.tar.gz
Running pip-7.1.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-E9rsmo/pip-7.1.0/egg-dist-tmp-Meb9zd
warning: no previously-included files found matching '.coveragerc'
warning: no previously-included files found matching '.mailmap'
warning: no previously-included files found matching '.travis.yml'
warning: no previously-included files found matching 'pip/_vendor/Makefile'
warning: no previously-included files found matching 'tox.ini'
warning: no previously-included files found matching 'dev-requirements.txt'
no previously-included directories found matching '.travis'
no previously-included directories found matching 'docs/_build'
no previously-included directories found matching 'contrib'
no previously-included directories found matching 'tasks'
no previously-included directories found matching 'tests'
Adding pip 7.1.0 to easy-install.pth file
Installing pip script to /usr/local/bin
Installing pip2.7 script to /usr/local/bin
Installing pip2 script to /usr/local/bin
Installed /Library/Python/2.7/site-packages/pip-7.1.0-py2.7.egg
Processing dependencies for pip
Finished processing dependencies for pip
CodeCruxs-MacBook-Pro:crawler codecrux$ pip install -r requirements.txt
/Library/Python/2.7/site-packages/pip-7.1.0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'
CodeCruxs-MacBook-Pro:crawler codecrux$ cd ..
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ ls
Procfile README.md api/ crawler/ requirements.txt
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ pip install -r requirements.txt
Collecting cffi (from -r requirements.txt (line 1))
/Library/Python/2.7/site-packages/pip-7.1.0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Downloading cffi-1.1.2.tar.gz (326kB)
100% |████████████████████████████████| 327kB 645kB/s
Collecting scrapy (from -r requirements.txt (line 2))
Downloading Scrapy-1.0.1-py2-none-any.whl (290kB)
100% |████████████████████████████████| 290kB 476kB/s
Collecting Flask===0.10.1 (from -r requirements.txt (line 3))
Downloading Flask-0.10.1.tar.gz (544kB)
100% |████████████████████████████████| 544kB 690kB/s
Collecting Flask-PyMongo (from -r requirements.txt (line 4))
Downloading Flask-PyMongo-0.3.1.tar.gz
Requirement already satisfied (use --upgrade to upgrade): python-dateutil in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from -r requirements.txt (line 5))
Collecting gunicorn (from -r requirements.txt (line 6))
Downloading gunicorn-19.3.0-py2.py3-none-any.whl (110kB)
100% |████████████████████████████████| 110kB 2.7MB/s
Collecting dateparser (from -r requirements.txt (line 7))
Downloading dateparser-0.2.1-py2.py3-none-any.whl
Collecting requests (from -r requirements.txt (line 8))
Downloading requests-2.7.0-py2.py3-none-any.whl (470kB)
100% |████████████████████████████████| 471kB 758kB/s
Collecting mandrill (from -r requirements.txt (line 9))
Downloading mandrill-1.0.57.tar.gz
Collecting readability-lxml (from -r requirements.txt (line 10))
Downloading readability-lxml-0.5.1.tar.gz
Collecting textile (from -r requirements.txt (line 11))
Downloading textile-2.2.2-py2.py3-none-any.whl
Collecting HTMLParser (from -r requirements.txt (line 12))
Downloading HTMLParser-0.0.2.tar.gz
Collecting urllib (from -r requirements.txt (line 13))
Could not find a version that satisfies the requirement urllib (from -r requirements.txt (line 13)) (from versions: )
Some externally hosted files were ignored as access to them may be unreliable (use --allow-external urllib to allow).
No matching distribution found for urllib (from -r requirements.txt (line 13))
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ pip install -r requirements.txt
Collecting cffi (from -r requirements.txt (line 1))
Using cached cffi-1.1.2.tar.gz
Collecting scrapy (from -r requirements.txt (line 2))
Using cached Scrapy-1.0.1-py2-none-any.whl
Collecting Flask===0.10.1 (from -r requirements.txt (line 3))
Using cached Flask-0.10.1.tar.gz
Collecting Flask-PyMongo (from -r requirements.txt (line 4))
Using cached Flask-PyMongo-0.3.1.tar.gz
Requirement already satisfied (use --upgrade to upgrade): python-dateutil in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from -r requirements.txt (line 5))
Collecting gunicorn (from -r requirements.txt (line 6))
Using cached gunicorn-19.3.0-py2.py3-none-any.whl
Collecting dateparser (from -r requirements.txt (line 7))
Using cached dateparser-0.2.1-py2.py3-none-any.whl
Collecting requests (from -r requirements.txt (line 8))
Using cached requests-2.7.0-py2.py3-none-any.whl
Collecting mandrill (from -r requirements.txt (line 9))
Using cached mandrill-1.0.57.tar.gz
Collecting readability-lxml (from -r requirements.txt (line 10))
Using cached readability-lxml-0.5.1.tar.gz
Collecting textile (from -r requirements.txt (line 11))
Using cached textile-2.2.2-py2.py3-none-any.whl
Collecting HTMLParser (from -r requirements.txt (line 12))
Using cached HTMLParser-0.0.2.tar.gz
Collecting re (from -r requirements.txt (line 13))
/Library/Python/2.7/site-packages/pip-7.1.0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Could not find a version that satisfies the requirement re (from -r requirements.txt (line 13)) (from versions: )
Some externally hosted files were ignored as access to them may be unreliable (use --allow-external re to allow).
No matching distribution found for re (from -r requirements.txt (line 13))
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ pip install -r requirements.txt
Collecting cffi (from -r requirements.txt (line 1))
Using cached cffi-1.1.2.tar.gz
Collecting scrapy (from -r requirements.txt (line 2))
Using cached Scrapy-1.0.1-py2-none-any.whl
Collecting Flask===0.10.1 (from -r requirements.txt (line 3))
Using cached Flask-0.10.1.tar.gz
Collecting Flask-PyMongo (from -r requirements.txt (line 4))
Using cached Flask-PyMongo-0.3.1.tar.gz
Requirement already satisfied (use --upgrade to upgrade): python-dateutil in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from -r requirements.txt (line 5))
Collecting gunicorn (from -r requirements.txt (line 6))
Using cached gunicorn-19.3.0-py2.py3-none-any.whl
Collecting dateparser (from -r requirements.txt (line 7))
Using cached dateparser-0.2.1-py2.py3-none-any.whl
Collecting requests (from -r requirements.txt (line 8))
Using cached requests-2.7.0-py2.py3-none-any.whl
Collecting mandrill (from -r requirements.txt (line 9))
Using cached mandrill-1.0.57.tar.gz
Collecting readability-lxml (from -r requirements.txt (line 10))
Using cached readability-lxml-0.5.1.tar.gz
Collecting textile (from -r requirements.txt (line 11))
Using cached textile-2.2.2-py2.py3-none-any.whl
Collecting HTMLParser (from -r requirements.txt (line 12))
Using cached HTMLParser-0.0.2.tar.gz
Collecting pycparser (from cffi->-r requirements.txt (line 1))
/Library/Python/2.7/site-packages/pip-7.1.0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Downloading pycparser-2.14.tar.gz (223kB)
100% |████████████████████████████████| 225kB 1.3MB/s
Collecting cssselect>=0.9 (from scrapy->-r requirements.txt (line 2))
Downloading cssselect-0.9.1.tar.gz
Collecting queuelib (from scrapy->-r requirements.txt (line 2))
Downloading queuelib-1.2.2-py2.py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): pyOpenSSL in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from scrapy->-r requirements.txt (line 2))
Collecting w3lib>=1.8.0 (from scrapy->-r requirements.txt (line 2))
Downloading w3lib-1.11.0-py2.py3-none-any.whl
Collecting lxml (from scrapy->-r requirements.txt (line 2))
Downloading lxml-3.4.4.tar.gz (3.5MB)
100% |████████████████████████████████| 3.5MB 94kB/s
Requirement already satisfied (use --upgrade to upgrade): Twisted>=10.0.0 in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from scrapy->-r requirements.txt (line 2))
Collecting six>=1.5.2 (from scrapy->-r requirements.txt (line 2))
Downloading six-1.9.0-py2.py3-none-any.whl
Collecting Werkzeug>=0.7 (from Flask===0.10.1->-r requirements.txt (line 3))
Downloading Werkzeug-0.10.4-py2.py3-none-any.whl (293kB)
100% |████████████████████████████████| 294kB 461kB/s
Collecting Jinja2>=2.4 (from Flask===0.10.1->-r requirements.txt (line 3))
Downloading Jinja2-2.7.3.tar.gz (378kB)
100% |████████████████████████████████| 380kB 494kB/s
Collecting itsdangerous>=0.21 (from Flask===0.10.1->-r requirements.txt (line 3))
Downloading itsdangerous-0.24.tar.gz (46kB)
100% |████████████████████████████████| 49kB 729kB/s
Collecting PyMongo<3.0,>=2.4 (from Flask-PyMongo->-r requirements.txt (line 4))
Downloading pymongo-2.8.1-cp27-none-macosx_10_8_intel.whl (240kB)
100% |████████████████████████████████| 241kB 517kB/s
Collecting PyYAML (from dateparser->-r requirements.txt (line 7))
Downloading PyYAML-3.11.tar.gz (248kB)
100% |████████████████████████████████| 249kB 517kB/s
Collecting docopt==0.4.0 (from mandrill->-r requirements.txt (line 9))
Downloading docopt-0.4.0.tar.gz
Collecting chardet (from readability-lxml->-r requirements.txt (line 10))
Downloading chardet-2.3.0.tar.gz (164kB)
100% |████████████████████████████████| 167kB 566kB/s
Requirement already satisfied (use --upgrade to upgrade): zope.interface in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from Twisted>=10.0.0->scrapy->-r requirements.txt (line 2))
Collecting markupsafe (from Jinja2>=2.4->Flask===0.10.1->-r requirements.txt (line 3))
Downloading MarkupSafe-0.23.tar.gz
Requirement already satisfied (use --upgrade to upgrade): setuptools in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from zope.interface->Twisted>=10.0.0->scrapy->-r requirements.txt (line 2))
Installing collected packages: pycparser, cffi, cssselect, queuelib, six, w3lib, lxml, scrapy, Werkzeug, markupsafe, Jinja2, itsdangerous, Flask, PyMongo, Flask-PyMongo, gunicorn, PyYAML, dateparser, requests, docopt, mandrill, chardet, readability-lxml, textile, HTMLParser
Running setup.py install for pycparser
Complete output from command /usr/bin/python -c "import setuptools, tokenize;__file__='/private/var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-build-5iZpYB/pycparser/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-waGGvh-record/install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/pycparser
copying pycparser/__init__.py -> build/lib/pycparser
copying pycparser/_ast_gen.py -> build/lib/pycparser
copying pycparser/_build_tables.py -> build/lib/pycparser
copying pycparser/ast_transforms.py -> build/lib/pycparser
copying pycparser/c_ast.py -> build/lib/pycparser
copying pycparser/c_generator.py -> build/lib/pycparser
copying pycparser/c_lexer.py -> build/lib/pycparser
copying pycparser/c_parser.py -> build/lib/pycparser
copying pycparser/lextab.py -> build/lib/pycparser
copying pycparser/plyparser.py -> build/lib/pycparser
copying pycparser/yacctab.py -> build/lib/pycparser
creating build/lib/pycparser/ply
copying pycparser/ply/__init__.py -> build/lib/pycparser/ply
copying pycparser/ply/cpp.py -> build/lib/pycparser/ply
copying pycparser/ply/ctokens.py -> build/lib/pycparser/ply
copying pycparser/ply/lex.py -> build/lib/pycparser/ply
copying pycparser/ply/yacc.py -> build/lib/pycparser/ply
copying pycparser/_c_ast.cfg -> build/lib/pycparser
running install_lib
creating /Library/Python/2.7/site-packages/pycparser
error: could not create '/Library/Python/2.7/site-packages/pycparser': Permission denied
----------------------------------------
Command "/usr/bin/python -c "import setuptools, tokenize;__file__='/private/var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-build-5iZpYB/pycparser/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-waGGvh-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /private/var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-build-5iZpYB/pycparser
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ heroku run pip install -r requirements.txt -a naukaricw
Running `pip install` attached to terminal... failed
! App not found
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ heroku run pip install -r requirements.txt -a naukricw
Running `pip install` attached to terminal... up, run.6821
You are using pip version 7.0.3, however version 7.1.0 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
You must give at least one requirement to install (see "pip help install")
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ pip install --upgrade pip
/Library/Python/2.7/site-packages/pip-7.1.0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Requirement already up-to-date: pip in /Library/Python/2.7/site-packages/pip-7.1.0-py2.7.egg
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ ls
Procfile README.md api/ crawler/ requirements.txt
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ cd crawler/
CodeCruxs-MacBook-Pro:crawler codecrux$ ls
__init__.py naukri/ scrapy.cfg
CodeCruxs-MacBook-Pro:crawler codecrux$ scrapy crawl naukri
-bash: scrapy: command not found
CodeCruxs-MacBook-Pro:crawler codecrux$ ls
__init__.py naukri/ scrapy.cfg
CodeCruxs-MacBook-Pro:crawler codecrux$ cd naukri/
CodeCruxs-MacBook-Pro:naukri codecrux$ ls
__init__.py helpers/ items.py pipelines.py settings.py spiders/
CodeCruxs-MacBook-Pro:naukri codecrux$ scrapy crawl naukri
-bash: scrapy: command not found
CodeCruxs-MacBook-Pro:naukri codecrux$ pip install -r requirements.txt
Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'
CodeCruxs-MacBook-Pro:naukri codecrux$ cd ..
CodeCruxs-MacBook-Pro:crawler codecrux$ cd ..
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ ls
Procfile README.md api/ crawler/ requirements.txt
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ pip install -r requirements.txt
Collecting cffi (from -r requirements.txt (line 1))
/Library/Python/2.7/site-packages/pip-7.1.0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Using cached cffi-1.1.2.tar.gz
Collecting scrapy (from -r requirements.txt (line 2))
Using cached Scrapy-1.0.1-py2-none-any.whl
Collecting Flask===0.10.1 (from -r requirements.txt (line 3))
Using cached Flask-0.10.1.tar.gz
Collecting Flask-PyMongo (from -r requirements.txt (line 4))
Using cached Flask-PyMongo-0.3.1.tar.gz
Requirement already satisfied (use --upgrade to upgrade): python-dateutil in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from -r requirements.txt (line 5))
Collecting gunicorn (from -r requirements.txt (line 6))
Using cached gunicorn-19.3.0-py2.py3-none-any.whl
Collecting dateparser (from -r requirements.txt (line 7))
Using cached dateparser-0.2.1-py2.py3-none-any.whl
Collecting requests (from -r requirements.txt (line 8))
Using cached requests-2.7.0-py2.py3-none-any.whl
Collecting mandrill (from -r requirements.txt (line 9))
Using cached mandrill-1.0.57.tar.gz
Collecting readability-lxml (from -r requirements.txt (line 10))
Using cached readability-lxml-0.5.1.tar.gz
Collecting textile (from -r requirements.txt (line 11))
Using cached textile-2.2.2-py2.py3-none-any.whl
Collecting HTMLParser (from -r requirements.txt (line 12))
Using cached HTMLParser-0.0.2.tar.gz
Collecting pycparser (from cffi->-r requirements.txt (line 1))
Using cached pycparser-2.14.tar.gz
Collecting cssselect>=0.9 (from scrapy->-r requirements.txt (line 2))
Using cached cssselect-0.9.1.tar.gz
Collecting queuelib (from scrapy->-r requirements.txt (line 2))
Using cached queuelib-1.2.2-py2.py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): pyOpenSSL in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from scrapy->-r requirements.txt (line 2))
Collecting w3lib>=1.8.0 (from scrapy->-r requirements.txt (line 2))
Using cached w3lib-1.11.0-py2.py3-none-any.whl
Collecting lxml (from scrapy->-r requirements.txt (line 2))
Using cached lxml-3.4.4.tar.gz
Requirement already satisfied (use --upgrade to upgrade): Twisted>=10.0.0 in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from scrapy->-r requirements.txt (line 2))
Collecting six>=1.5.2 (from scrapy->-r requirements.txt (line 2))
Using cached six-1.9.0-py2.py3-none-any.whl
Collecting Werkzeug>=0.7 (from Flask===0.10.1->-r requirements.txt (line 3))
Using cached Werkzeug-0.10.4-py2.py3-none-any.whl
Collecting Jinja2>=2.4 (from Flask===0.10.1->-r requirements.txt (line 3))
Using cached Jinja2-2.7.3.tar.gz
Collecting itsdangerous>=0.21 (from Flask===0.10.1->-r requirements.txt (line 3))
Using cached itsdangerous-0.24.tar.gz
Collecting PyMongo<3.0,>=2.4 (from Flask-PyMongo->-r requirements.txt (line 4))
Using cached pymongo-2.8.1-cp27-none-macosx_10_8_intel.whl
Collecting PyYAML (from dateparser->-r requirements.txt (line 7))
Using cached PyYAML-3.11.tar.gz
Collecting docopt==0.4.0 (from mandrill->-r requirements.txt (line 9))
Using cached docopt-0.4.0.tar.gz
Collecting chardet (from readability-lxml->-r requirements.txt (line 10))
Using cached chardet-2.3.0.tar.gz
Requirement already satisfied (use --upgrade to upgrade): zope.interface in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from Twisted>=10.0.0->scrapy->-r requirements.txt (line 2))
Collecting markupsafe (from Jinja2>=2.4->Flask===0.10.1->-r requirements.txt (line 3))
Using cached MarkupSafe-0.23.tar.gz
Requirement already satisfied (use --upgrade to upgrade): setuptools in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from zope.interface->Twisted>=10.0.0->scrapy->-r requirements.txt (line 2))
Installing collected packages: pycparser, cffi, cssselect, queuelib, six, w3lib, lxml, scrapy, Werkzeug, markupsafe, Jinja2, itsdangerous, Flask, PyMongo, Flask-PyMongo, gunicorn, PyYAML, dateparser, requests, docopt, mandrill, chardet, readability-lxml, textile, HTMLParser
Running setup.py install for pycparser
Complete output from command /usr/bin/python -c "import setuptools, tokenize;__file__='/private/var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-build-UTNFet/pycparser/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-BQsEkh-record/install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/pycparser
copying pycparser/__init__.py -> build/lib/pycparser
copying pycparser/_ast_gen.py -> build/lib/pycparser
copying pycparser/_build_tables.py -> build/lib/pycparser
copying pycparser/ast_transforms.py -> build/lib/pycparser
copying pycparser/c_ast.py -> build/lib/pycparser
copying pycparser/c_generator.py -> build/lib/pycparser
copying pycparser/c_lexer.py -> build/lib/pycparser
copying pycparser/c_parser.py -> build/lib/pycparser
copying pycparser/lextab.py -> build/lib/pycparser
copying pycparser/plyparser.py -> build/lib/pycparser
copying pycparser/yacctab.py -> build/lib/pycparser
creating build/lib/pycparser/ply
copying pycparser/ply/__init__.py -> build/lib/pycparser/ply
copying pycparser/ply/cpp.py -> build/lib/pycparser/ply
copying pycparser/ply/ctokens.py -> build/lib/pycparser/ply
copying pycparser/ply/lex.py -> build/lib/pycparser/ply
copying pycparser/ply/yacc.py -> build/lib/pycparser/ply
copying pycparser/_c_ast.cfg -> build/lib/pycparser
running install_lib
creating /Library/Python/2.7/site-packages/pycparser
error: could not create '/Library/Python/2.7/site-packages/pycparser': Permission denied
----------------------------------------
Command "/usr/bin/python -c "import setuptools, tokenize;__file__='/private/var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-build-UTNFet/pycparser/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-BQsEkh-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /private/var/folders/51/zhmrm9dn5kz8tgj6g1dw4kb80000gn/T/pip-build-UTNFet/pycparser
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ sudo pip install -r requirements.txt
Password:
The directory '/Users/codecrux/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/Users/codecrux/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting cffi (from -r requirements.txt (line 1))
/Library/Python/2.7/site-packages/pip-7.1.0-py2.7.egg/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Downloading cffi-1.1.2.tar.gz (326kB)
100% |████████████████████████████████| 327kB 925kB/s
Collecting scrapy (from -r requirements.txt (line 2))
Downloading Scrapy-1.0.1-py2-none-any.whl (290kB)
100% |████████████████████████████████| 290kB 527kB/s
Collecting Flask===0.10.1 (from -r requirements.txt (line 3))
Downloading Flask-0.10.1.tar.gz (544kB)
100% |████████████████████████████████| 544kB 99kB/s
Collecting Flask-PyMongo (from -r requirements.txt (line 4))
Downloading Flask-PyMongo-0.3.1.tar.gz
Requirement already satisfied (use --upgrade to upgrade): python-dateutil in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from -r requirements.txt (line 5))
Collecting gunicorn (from -r requirements.txt (line 6))
Downloading gunicorn-19.3.0-py2.py3-none-any.whl (110kB)
100% |████████████████████████████████| 110kB 367kB/s
Collecting dateparser (from -r requirements.txt (line 7))
Downloading dateparser-0.2.1-py2.py3-none-any.whl
Collecting requests (from -r requirements.txt (line 8))
Downloading requests-2.7.0-py2.py3-none-any.whl (470kB)
100% |████████████████████████████████| 471kB 291kB/s
Collecting mandrill (from -r requirements.txt (line 9))
Downloading mandrill-1.0.57.tar.gz
Collecting readability-lxml (from -r requirements.txt (line 10))
Downloading readability-lxml-0.5.1.tar.gz
Collecting textile (from -r requirements.txt (line 11))
Downloading textile-2.2.2-py2.py3-none-any.whl
Collecting HTMLParser (from -r requirements.txt (line 12))
Downloading HTMLParser-0.0.2.tar.gz
Collecting pycparser (from cffi->-r requirements.txt (line 1))
Downloading pycparser-2.14.tar.gz (223kB)
100% |████████████████████████████████| 225kB 327kB/s
Collecting cssselect>=0.9 (from scrapy->-r requirements.txt (line 2))
Downloading cssselect-0.9.1.tar.gz
Collecting queuelib (from scrapy->-r requirements.txt (line 2))
Downloading queuelib-1.2.2-py2.py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): pyOpenSSL in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from scrapy->-r requirements.txt (line 2))
Collecting w3lib>=1.8.0 (from scrapy->-r requirements.txt (line 2))
Downloading w3lib-1.11.0-py2.py3-none-any.whl
Collecting lxml (from scrapy->-r requirements.txt (line 2))
Downloading lxml-3.4.4.tar.gz (3.5MB)
100% |████████████████████████████████| 3.5MB 104kB/s
Requirement already satisfied (use --upgrade to upgrade): Twisted>=10.0.0 in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from scrapy->-r requirements.txt (line 2))
Collecting six>=1.5.2 (from scrapy->-r requirements.txt (line 2))
Downloading six-1.9.0-py2.py3-none-any.whl
Collecting Werkzeug>=0.7 (from Flask===0.10.1->-r requirements.txt (line 3))
Downloading Werkzeug-0.10.4-py2.py3-none-any.whl (293kB)
100% |████████████████████████████████| 294kB 871kB/s
Collecting Jinja2>=2.4 (from Flask===0.10.1->-r requirements.txt (line 3))
Downloading Jinja2-2.7.3.tar.gz (378kB)
100% |████████████████████████████████| 380kB 623kB/s
Collecting itsdangerous>=0.21 (from Flask===0.10.1->-r requirements.txt (line 3))
Downloading itsdangerous-0.24.tar.gz (46kB)
100% |████████████████████████████████| 49kB 4.3MB/s
Collecting PyMongo<3.0,>=2.4 (from Flask-PyMongo->-r requirements.txt (line 4))
Downloading pymongo-2.8.1-cp27-none-macosx_10_8_intel.whl (240kB)
100% |████████████████████████████████| 241kB 565kB/s
Collecting PyYAML (from dateparser->-r requirements.txt (line 7))
Downloading PyYAML-3.11.tar.gz (248kB)
100% |████████████████████████████████| 249kB 699kB/s
Collecting docopt==0.4.0 (from mandrill->-r requirements.txt (line 9))
Downloading docopt-0.4.0.tar.gz
Collecting chardet (from readability-lxml->-r requirements.txt (line 10))
Downloading chardet-2.3.0.tar.gz (164kB)
100% |████████████████████████████████| 167kB 555kB/s
Requirement already satisfied (use --upgrade to upgrade): zope.interface in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from Twisted>=10.0.0->scrapy->-r requirements.txt (line 2))
Collecting markupsafe (from Jinja2>=2.4->Flask===0.10.1->-r requirements.txt (line 3))
Downloading MarkupSafe-0.23.tar.gz
Requirement already satisfied (use --upgrade to upgrade): setuptools in /System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python (from zope.interface->Twisted>=10.0.0->scrapy->-r requirements.txt (line 2))
Installing collected packages: pycparser, cffi, cssselect, queuelib, six, w3lib, lxml, scrapy, Werkzeug, markupsafe, Jinja2, itsdangerous, Flask, PyMongo, Flask-PyMongo, gunicorn, PyYAML, dateparser, requests, docopt, mandrill, chardet, readability-lxml, textile, HTMLParser
Running setup.py install for pycparser
Running setup.py install for cffi
Running setup.py install for cssselect
Running setup.py install for lxml
Running setup.py install for markupsafe
Running setup.py install for Jinja2
Running setup.py install for itsdangerous
Running setup.py install for Flask
Running setup.py install for Flask-PyMongo
Running setup.py install for PyYAML
Running setup.py install for docopt
Running setup.py install for mandrill
Running setup.py install for chardet
Running setup.py install for readability-lxml
Running setup.py install for HTMLParser
Successfully installed Flask-0.10.1 Flask-PyMongo-0.3.1 HTMLParser-0.0.2 Jinja2-2.7.3 PyMongo-2.8.1 PyYAML-3.11 Werkzeug-0.10.4 cffi-1.1.2 chardet-2.3.0 cssselect-0.9.1 dateparser-0.2.1 docopt-0.4.0 gunicorn-19.3.0 itsdangerous-0.24 lxml-3.4.4 mandrill-1.0.57 markupsafe-0.23 pycparser-2.14 queuelib-1.2.2 readability-lxml-0.5.1 requests-2.7.0 scrapy-1.0.1 six-1.9.0 textile-2.2.2 w3lib-1.11.0
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ ls
Procfile README.md api/ crawler/ requirements.txt
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ cd crawler/
CodeCruxs-MacBook-Pro:crawler codecrux$ scrapy crawl naukri
/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/spiders/__init__.py:2: ScrapyDeprecationWarning: Module `scrapy.contrib.spiders` is deprecated, use `scrapy.spiders` instead
from scrapy.contrib.spiders import CrawlSpider, Rule
/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/spiders/__init__.py:3: ScrapyDeprecationWarning: Module `scrapy.contrib.linkextractors` is deprecated, use `scrapy.linkextractors` instead
from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/spiders/__init__.py:3: ScrapyDeprecationWarning: Module `scrapy.contrib.linkextractors.sgml` is deprecated, use `scrapy.linkextractors.sgml` instead
from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/spiders/__init__.py:15: ScrapyDeprecationWarning: SgmlLinkExtractor is deprecated and will be removed in future releases. Please use scrapy.linkextractors.LinkExtractor
SgmlLinkExtractor(allow=('bangalore'), restrict_xpaths=("//div[contains(@class, 'browseTopLoc')]")),
INFO:scrapy.utils.log:Scrapy 1.0.1 started (bot: naukri)
2015-07-16 19:59:07 [scrapy] INFO: Scrapy 1.0.1 started (bot: naukri)
INFO:scrapy.utils.log:Optional features available: ssl, http11
2015-07-16 19:59:07 [scrapy] INFO: Optional features available: ssl, http11
INFO:scrapy.utils.log:Overridden settings: {'NEWSPIDER_MODULE': 'naukri.spiders', 'FEED_URI': 'feed.json', 'SPIDER_MODULES': ['naukri.spiders'], 'BOT_NAME': 'naukri', 'USER_AGENT': 'naukricw (+http://www.naukricw.com)', 'FEED_FORMAT': 'json'}
2015-07-16 19:59:07 [scrapy] INFO: Overridden settings: {'NEWSPIDER_MODULE': 'naukri.spiders', 'FEED_URI': 'feed.json', 'SPIDER_MODULES': ['naukri.spiders'], 'BOT_NAME': 'naukri', 'USER_AGENT': 'naukricw (+http://www.naukricw.com)', 'FEED_FORMAT': 'json'}
INFO:scrapy.middleware:Enabled extensions: CloseSpider, FeedExporter, TelnetConsole, LogStats, CoreStats, SpiderState
2015-07-16 19:59:07 [scrapy] INFO: Enabled extensions: CloseSpider, FeedExporter, TelnetConsole, LogStats, CoreStats, SpiderState
INFO:scrapy.middleware:Enabled downloader middlewares: HttpAuthMiddleware, DownloadTimeoutMiddleware, UserAgentMiddleware, RetryMiddleware, DefaultHeadersMiddleware, MetaRefreshMiddleware, HttpCompressionMiddleware, RedirectMiddleware, CookiesMiddleware, ChunkedTransferMiddleware, DownloaderStats
2015-07-16 19:59:08 [scrapy] INFO: Enabled downloader middlewares: HttpAuthMiddleware, DownloadTimeoutMiddleware, UserAgentMiddleware, RetryMiddleware, DefaultHeadersMiddleware, MetaRefreshMiddleware, HttpCompressionMiddleware, RedirectMiddleware, CookiesMiddleware, ChunkedTransferMiddleware, DownloaderStats
INFO:scrapy.middleware:Enabled spider middlewares: HttpErrorMiddleware, OffsiteMiddleware, RefererMiddleware, UrlLengthMiddleware, DepthMiddleware
2015-07-16 19:59:08 [scrapy] INFO: Enabled spider middlewares: HttpErrorMiddleware, OffsiteMiddleware, RefererMiddleware, UrlLengthMiddleware, DepthMiddleware
ERROR:twisted:Unhandled error in Deferred:
2015-07-16 19:59:08 [twisted] ERROR: Unhandled error in Deferred:
Unhandled error in Deferred:
ERROR:twisted:Unhandled Error
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/scrapy/cmdline.py", line 150, in _run_command
cmd.run(args, opts)
File "/Library/Python/2.7/site-packages/scrapy/commands/crawl.py", line 57, in run
self.crawler_process.crawl(spname, **opts.spargs)
File "/Library/Python/2.7/site-packages/scrapy/crawler.py", line 153, in crawl
d = crawler.crawl(*args, **kwargs)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 1187, in unwindGenerator
return _inlineCallbacks(None, gen, Deferred())
--- <exception caught here> ---
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 1045, in _inlineCallbacks
result = g.send(result)
File "/Library/Python/2.7/site-packages/scrapy/crawler.py", line 71, in crawl
self.engine = self._create_engine()
File "/Library/Python/2.7/site-packages/scrapy/crawler.py", line 83, in _create_engine
return ExecutionEngine(self, lambda _: self.stop())
File "/Library/Python/2.7/site-packages/scrapy/core/engine.py", line 67, in __init__
self.scraper = Scraper(crawler)
File "/Library/Python/2.7/site-packages/scrapy/core/scraper.py", line 70, in __init__
self.itemproc = itemproc_cls.from_crawler(crawler)
File "/Library/Python/2.7/site-packages/scrapy/middleware.py", line 56, in from_crawler
return cls.from_settings(crawler.settings, crawler)
File "/Library/Python/2.7/site-packages/scrapy/middleware.py", line 38, in from_settings
mw = mwcls()
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 26, in __init__
connection = pymongo.MongoClient(MONGO_URL)
File "/Library/Python/2.7/site-packages/pymongo/mongo_client.py", line 378, in __init__
raise ConnectionFailure(str(e))
pymongo.errors.ConnectionFailure: [Errno 61] Connection refused
2015-07-16 19:59:08 [twisted] ERROR: Unhandled Error
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/scrapy/cmdline.py", line 150, in _run_command
cmd.run(args, opts)
File "/Library/Python/2.7/site-packages/scrapy/commands/crawl.py", line 57, in run
self.crawler_process.crawl(spname, **opts.spargs)
File "/Library/Python/2.7/site-packages/scrapy/crawler.py", line 153, in crawl
d = crawler.crawl(*args, **kwargs)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 1187, in unwindGenerator
return _inlineCallbacks(None, gen, Deferred())
--- <exception caught here> ---
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 1045, in _inlineCallbacks
result = g.send(result)
File "/Library/Python/2.7/site-packages/scrapy/crawler.py", line 71, in crawl
self.engine = self._create_engine()
File "/Library/Python/2.7/site-packages/scrapy/crawler.py", line 83, in _create_engine
return ExecutionEngine(self, lambda _: self.stop())
File "/Library/Python/2.7/site-packages/scrapy/core/engine.py", line 67, in __init__
self.scraper = Scraper(crawler)
File "/Library/Python/2.7/site-packages/scrapy/core/scraper.py", line 70, in __init__
self.itemproc = itemproc_cls.from_crawler(crawler)
File "/Library/Python/2.7/site-packages/scrapy/middleware.py", line 56, in from_crawler
return cls.from_settings(crawler.settings, crawler)
File "/Library/Python/2.7/site-packages/scrapy/middleware.py", line 38, in from_settings
mw = mwcls()
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 26, in __init__
connection = pymongo.MongoClient(MONGO_URL)
File "/Library/Python/2.7/site-packages/pymongo/mongo_client.py", line 378, in __init__
raise ConnectionFailure(str(e))
pymongo.errors.ConnectionFailure: [Errno 61] Connection refused
Unhandled Error
Traceback (most recent call last):
File "/Library/Python/2.7/site-packages/scrapy/cmdline.py", line 150, in _run_command
cmd.run(args, opts)
File "/Library/Python/2.7/site-packages/scrapy/commands/crawl.py", line 57, in run
self.crawler_process.crawl(spname, **opts.spargs)
File "/Library/Python/2.7/site-packages/scrapy/crawler.py", line 153, in crawl
d = crawler.crawl(*args, **kwargs)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 1187, in unwindGenerator
return _inlineCallbacks(None, gen, Deferred())
--- <exception caught here> ---
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 1045, in _inlineCallbacks
result = g.send(result)
File "/Library/Python/2.7/site-packages/scrapy/crawler.py", line 71, in crawl
self.engine = self._create_engine()
File "/Library/Python/2.7/site-packages/scrapy/crawler.py", line 83, in _create_engine
return ExecutionEngine(self, lambda _: self.stop())
File "/Library/Python/2.7/site-packages/scrapy/core/engine.py", line 67, in __init__
self.scraper = Scraper(crawler)
File "/Library/Python/2.7/site-packages/scrapy/core/scraper.py", line 70, in __init__
self.itemproc = itemproc_cls.from_crawler(crawler)
File "/Library/Python/2.7/site-packages/scrapy/middleware.py", line 56, in from_crawler
return cls.from_settings(crawler.settings, crawler)
File "/Library/Python/2.7/site-packages/scrapy/middleware.py", line 38, in from_settings
mw = mwcls()
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 26, in __init__
connection = pymongo.MongoClient(MONGO_URL)
File "/Library/Python/2.7/site-packages/pymongo/mongo_client.py", line 378, in __init__
raise ConnectionFailure(str(e))
pymongo.errors.ConnectionFailure: [Errno 61] Connection refused
CodeCruxs-MacBook-Pro:crawler codecrux$ mongo
MongoDB shell version: 3.0.4
connecting to: test
2015-07-16T20:00:21.085+0530 W NETWORK Failed to connect to 127.0.0.1:27017, reason: errno:61 Connection refused
2015-07-16T20:00:21.086+0530 E QUERY Error: couldn't connect to server 127.0.0.1:27017 (127.0.0.1), connection attempt failed
at connect (src/mongo/shell/mongo.js:179:14)
at (connect):1:6 at src/mongo/shell/mongo.js:179
exception: connect failed
CodeCruxs-MacBook-Pro:crawler codecrux$ brew update
Updated Homebrew from 3947f854 to 836afe06.
==> New Formulae
hayai minisign scw
==> Updated Formulae
aws-elasticbeanstalk fish jenkins ninja stunnel
awscli fleetctl jruby ola swig
basex fontforge keybase openssl syncthing
bibtexconv gauge kitchen-sync openwsman tor
bind git kjell passenger trafficserver
boot2docker git-review kubernetes-cli peco ucspi-tools
capstone glide libcec protobuf-swift vault
commonmark goolabs libressl python vimpager
datomic grails libvirt python3 wellington
docker heroku-toolbelt mackup ruby-build
fbida htop-osx makepkg saltstack
fig imagemagick mm-common screenfetch
CodeCruxs-MacBook-Pro:crawler codecrux$ mkdir -p /data/db
mkdir: /data/db: Permission denied
CodeCruxs-MacBook-Pro:crawler codecrux$ cd
CodeCruxs-MacBook-Pro:~ codecrux$ mkdir -p /data/db
mkdir: /data/db: Permission denied
CodeCruxs-MacBook-Pro:~ codecrux$ brew info mongo
mongodb: stable 3.0.4 (bottled), devel 3.1.5
High-performance, schema-free, document-oriented database
https://www.mongodb.org/
/usr/local/Cellar/mongodb/3.0.4 (17 files, 154M) *
Poured from bottle
From: https://github.com/Homebrew/homebrew/blob/master/Library/Formula/mongodb.rb
==> Dependencies
Build: go ✘, scons ✘
Optional: boost ✘, openssl ✘
==> Options
--with-boost
Compile using installed boost, not the version shipped with mongodb
--with-openssl
Build with openssl support
--devel
Install development version 3.1.5
==> Caveats
To have launchd start mongodb at login:
ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
Then to load mongodb now:
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
Or, if you don't want/need launchctl, you can just run:
mongod --config /usr/local/etc/mongod.conf
CodeCruxs-MacBook-Pro:~ codecrux$ ln -sfv /usr/local/opt/mongodb/*.plist ~/Library/LaunchAgents
/Users/codecrux/Library/LaunchAgents/homebrew.mxcl.mongodb.plist -> /usr/local/opt/mongodb/homebrew.mxcl.mongodb.plist
CodeCruxs-MacBook-Pro:~ codecrux$ launchctl load ~/Library/LaunchAgents/homebrew.mxcl.mongodb.plist
CodeCruxs-MacBook-Pro:~ codecrux$ mongo
MongoDB shell version: 3.0.4
connecting to: test
Welcome to the MongoDB shell.
For interactive help, type "help".
For more comprehensive documentation, see
http://docs.mongodb.org/
Questions? Try the support group
http://groups.google.com/group/mongodb-user
> exit
bye
CodeCruxs-MacBook-Pro:~ codecrux$ ls
Applications/ Documents/ Google Drive/ Movies/ Pictures/ macports/ newApp/ workspace/
Desktop/ Downloads/ Library/ Music/ Public/ myApp/ node_modules/
CodeCruxs-MacBook-Pro:~ codecrux$ cd workspace/codecrux/naukricw_new/
CodeCruxs-MacBook-Pro:naukricw_new codecrux$ cd crawler/
CodeCruxs-MacBook-Pro:crawler codecrux$ scrapy crawl naukri
/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/spiders/__init__.py:2: ScrapyDeprecationWarning: Module `scrapy.contrib.spiders` is deprecated, use `scrapy.spiders` instead
from scrapy.contrib.spiders import CrawlSpider, Rule
/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/spiders/__init__.py:3: ScrapyDeprecationWarning: Module `scrapy.contrib.linkextractors` is deprecated, use `scrapy.linkextractors` instead
from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/spiders/__init__.py:3: ScrapyDeprecationWarning: Module `scrapy.contrib.linkextractors.sgml` is deprecated, use `scrapy.linkextractors.sgml` instead
from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/spiders/__init__.py:15: ScrapyDeprecationWarning: SgmlLinkExtractor is deprecated and will be removed in future releases. Please use scrapy.linkextractors.LinkExtractor
SgmlLinkExtractor(allow=('bangalore'), restrict_xpaths=("//div[contains(@class, 'browseTopLoc')]")),
INFO:scrapy.utils.log:Scrapy 1.0.1 started (bot: naukri)
2015-07-16 20:05:20 [scrapy] INFO: Scrapy 1.0.1 started (bot: naukri)
INFO:scrapy.utils.log:Optional features available: ssl, http11
2015-07-16 20:05:20 [scrapy] INFO: Optional features available: ssl, http11
INFO:scrapy.utils.log:Overridden settings: {'NEWSPIDER_MODULE': 'naukri.spiders', 'FEED_URI': 'feed.json', 'SPIDER_MODULES': ['naukri.spiders'], 'BOT_NAME': 'naukri', 'USER_AGENT': 'naukricw (+http://www.naukricw.com)', 'FEED_FORMAT': 'json'}
2015-07-16 20:05:20 [scrapy] INFO: Overridden settings: {'NEWSPIDER_MODULE': 'naukri.spiders', 'FEED_URI': 'feed.json', 'SPIDER_MODULES': ['naukri.spiders'], 'BOT_NAME': 'naukri', 'USER_AGENT': 'naukricw (+http://www.naukricw.com)', 'FEED_FORMAT': 'json'}
INFO:scrapy.middleware:Enabled extensions: CloseSpider, FeedExporter, TelnetConsole, LogStats, CoreStats, SpiderState
2015-07-16 20:05:20 [scrapy] INFO: Enabled extensions: CloseSpider, FeedExporter, TelnetConsole, LogStats, CoreStats, SpiderState
INFO:scrapy.middleware:Enabled downloader middlewares: HttpAuthMiddleware, DownloadTimeoutMiddleware, UserAgentMiddleware, RetryMiddleware, DefaultHeadersMiddleware, MetaRefreshMiddleware, HttpCompressionMiddleware, RedirectMiddleware, CookiesMiddleware, ChunkedTransferMiddleware, DownloaderStats
2015-07-16 20:05:20 [scrapy] INFO: Enabled downloader middlewares: HttpAuthMiddleware, DownloadTimeoutMiddleware, UserAgentMiddleware, RetryMiddleware, DefaultHeadersMiddleware, MetaRefreshMiddleware, HttpCompressionMiddleware, RedirectMiddleware, CookiesMiddleware, ChunkedTransferMiddleware, DownloaderStats
INFO:scrapy.middleware:Enabled spider middlewares: HttpErrorMiddleware, OffsiteMiddleware, RefererMiddleware, UrlLengthMiddleware, DepthMiddleware
2015-07-16 20:05:20 [scrapy] INFO: Enabled spider middlewares: HttpErrorMiddleware, OffsiteMiddleware, RefererMiddleware, UrlLengthMiddleware, DepthMiddleware
INFO:scrapy.middleware:Enabled item pipelines: MemoryPipeline, MongoDBPipeline
2015-07-16 20:05:21 [scrapy] INFO: Enabled item pipelines: MemoryPipeline, MongoDBPipeline
INFO:scrapy.core.engine:Spider opened
2015-07-16 20:05:21 [scrapy] INFO: Spider opened
INFO:scrapy.extensions.logstats:Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
2015-07-16 20:05:21 [scrapy] INFO: Crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min)
DEBUG:scrapy.telnet:Telnet console listening on 127.0.0.1:6023
2015-07-16 20:05:21 [scrapy] DEBUG: Telnet console listening on 127.0.0.1:6023
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/jobs-by-location> (referer: None)
2015-07-16 20:05:22 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/jobs-by-location> (referer: None)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/jobs-in-bangalore> (referer: http://jobsearch.naukri.com/jobs-by-location)
2015-07-16 20:05:23 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/jobs-in-bangalore> (referer: http://jobsearch.naukri.com/jobs-by-location)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-App-Developer-iOS-Android--Unnati-Bengaluru-Bangalore-3-to-5-years-160715008447> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:24 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-App-Developer-iOS-Android--Unnati-Bengaluru-Bangalore-3-to-5-years-160715008447> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Java-Dev-3-5yrs-Imdte-30dys-Joiners-for-Bangalore-only-Banglore-Cand--Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-2-to-5-years-160715008537> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:24 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Java-Dev-3-5yrs-Imdte-30dys-Joiners-for-Bangalore-only-Banglore-Cand--Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-2-to-5-years-160715008537> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Analyst-m-a-Black-Turtle-Bengaluru-Bangalore-1-to-3-years-160715008452> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:24 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Analyst-m-a-Black-Turtle-Bengaluru-Bangalore-1-to-3-years-160715008452> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
ERROR:scrapy.core.scraper:Error processing {'company': u'Unnati',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 26, 104308),
'description': [u'\t<p>Our Clientis building next generation e-commerce platform for home decor and interior designs. The engineering team is responsible for building the e-commerce and design platform and we own the entire stack of the engineering infrastructure.</p>\n\n\t<p>As an App developer, you will be responsible for building new features for our mobile experience. You will be dealing with development of mobile applications, and web services. We are looking for talented developers who can learn new things quickly and contribute at all layers of a web product. Being a start-up, we move fast and constantly ship new features. If fast paced fun environments and complete ownership of web products excites you, you&#8217;ll be at home.</p>\n\n\t<p>Design new features for the our mobile apps Have significant impact on current and future technology roadmap Contribute creatively in strategic products that will reach large audience Build a mobile experience that users love Experience in Linux, Apache, MySQL and <span class="caps">PHP</span> Experience in jQuery, <span class="caps">HTML</span>, <span class="caps">CSS</span> Experience in <span class="caps">HTTP</span> and <span class="caps">REST</span> web services Experience in iOS &amp; Android development Experience in Data structures and algorithm design </p>\n\n\t<p>Salary: 9,00,000 &#8211; 12,00,000 P.A </p>\n\n\t<p>Industry: Architecture / Interior Design </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nios Android app developer Mobile Application Application Development Application Design <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization</p>\n\n\t<p>You earned B.Tech or equivalent degree in computer science or related engineering fieldYou have at least 4 years of experience working with large scale web productsYou can learn new technologies quicklyYou have strong communication and collaboration skillsYou have prior ownership of the delivery of an entire feature/subsystem</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 26, 104260),
'salary': u'9,00,000 - 12,00,000 P.A',
'skills': [u'Android',
u'app developer',
u'Mobile Application',
u'Application Development',
u'Application Design'],
'title': u'App Developer (iOS & Android)',
'url': 'http://jobsearch.naukri.com/job-listings-App-Developer-iOS-Android--Unnati-Bengaluru-Bangalore-3-to-5-years-160715008447'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:27 [scrapy] ERROR: Error processing {'company': u'Unnati',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 26, 104308),
'description': [u'\t<p>Our Clientis building next generation e-commerce platform for home decor and interior designs. The engineering team is responsible for building the e-commerce and design platform and we own the entire stack of the engineering infrastructure.</p>\n\n\t<p>As an App developer, you will be responsible for building new features for our mobile experience. You will be dealing with development of mobile applications, and web services. We are looking for talented developers who can learn new things quickly and contribute at all layers of a web product. Being a start-up, we move fast and constantly ship new features. If fast paced fun environments and complete ownership of web products excites you, you&#8217;ll be at home.</p>\n\n\t<p>Design new features for the our mobile apps Have significant impact on current and future technology roadmap Contribute creatively in strategic products that will reach large audience Build a mobile experience that users love Experience in Linux, Apache, MySQL and <span class="caps">PHP</span> Experience in jQuery, <span class="caps">HTML</span>, <span class="caps">CSS</span> Experience in <span class="caps">HTTP</span> and <span class="caps">REST</span> web services Experience in iOS &amp; Android development Experience in Data structures and algorithm design </p>\n\n\t<p>Salary: 9,00,000 &#8211; 12,00,000 P.A </p>\n\n\t<p>Industry: Architecture / Interior Design </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nios Android app developer Mobile Application Application Development Application Design <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization</p>\n\n\t<p>You earned B.Tech or equivalent degree in computer science or related engineering fieldYou have at least 4 years of experience working with large scale web productsYou can learn new technologies quicklyYou have strong communication and collaboration skillsYou have prior ownership of the delivery of an entire feature/subsystem</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 26, 104260),
'salary': u'9,00,000 - 12,00,000 P.A',
'skills': [u'Android',
u'app developer',
u'Mobile Application',
u'Application Development',
u'Application Design'],
'title': u'App Developer (iOS & Android)',
'url': 'http://jobsearch.naukri.com/job-listings-App-Developer-iOS-Android--Unnati-Bengaluru-Bangalore-3-to-5-years-160715008447'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Opening-for-Windchill-Admin-bangalore-Trigent-Software-Ltd-Bengaluru-Bangalore-3-to-8-years-160715008362> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:27 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Opening-for-Windchill-Admin-bangalore-Trigent-Software-Ltd-Bengaluru-Bangalore-3-to-8-years-160715008362> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Looking-for-QA-Automationengineer-with-a-Finance-Based-MNC-Company--Spigot-Software-Private-Limited-Bengaluru-Bangalore-4-to-9-years-160715008485> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:27 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Looking-for-QA-Automationengineer-with-a-Finance-Based-MNC-Company--Spigot-Software-Private-Limited-Bengaluru-Bangalore-4-to-9-years-160715008485> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Database-Developer--Collabera-Technologies-Pvt-Ltd--Bengaluru-Bangalore-4-to-8-years-160715008259> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:27 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Database-Developer--Collabera-Technologies-Pvt-Ltd--Bengaluru-Bangalore-4-to-8-years-160715008259> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Customer-Care-Executive-ACT-Television-Bengaluru-Bangalore-1-to-4-years-160715008363> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:27 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Customer-Care-Executive-ACT-Television-Bengaluru-Bangalore-1-to-4-years-160715008363> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Websphere-Commerce-Developer-Permanent-Position-for-Bangalore-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715008461> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:27 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Websphere-Commerce-Developer-Permanent-Position-for-Bangalore-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715008461> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-BPO-Jobs-in-Voice-Process-wid-sal-upto-35k-call-09953262467-Gratitude-India-Bengaluru-Bangalore-Mumbai-Delhi-NCR-National-Capital-Region--1-to-5-years-160715008491> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:27 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-BPO-Jobs-in-Voice-Process-wid-sal-upto-35k-call-09953262467-Gratitude-India-Bengaluru-Bangalore-Mumbai-Delhi-NCR-National-Capital-Region--1-to-5-years-160715008491> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-HR-End-to-End-Recruitment-Career-Tree-HR-Solutions-Pvt-Ltd--Chennai-Bengaluru-Bangalore-1-to-5-years-120615005554> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:27 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-HR-End-to-End-Recruitment-Career-Tree-HR-Solutions-Pvt-Ltd--Chennai-Bengaluru-Bangalore-1-to-5-years-120615005554> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Joining-Within-15-days-Asp-net-with-MVC-for-Novigo-Solutions-bangalore-Novigo-Solutions-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008469> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:27 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Joining-Within-15-days-Asp-net-with-MVC-for-Novigo-Solutions-bangalore-Novigo-Solutions-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008469> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
ERROR:scrapy.core.scraper:Error processing {'company': u'Careernet Technologies Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 28, 465923),
'description': [u'\t<p>Java Developer</p>\n\n\t<p>Exp: 3-5yrs</p>\n\n\t<p>Notice Period: Max 30days</p>\n\n\t<p>Location : Bangalore</p>\n\n\t<p>BE,B Tech, <span class="caps">MCA</span></p>\n\n\t<p>Only Bangalore candidates can apply</p>\n\n\t<p>Directly Face to Face Interview </p>\n\n\t<p>JD:</p>\n\n\t<p>Mandates are as below:-</p>\n\n\t<p>OS only Unix or linux no windows</p>\n\n\t<p>Ability to design and develop eCommerce solutions using Java 1.5 and above, <span class="caps">XML</span>, Web Services (<span class="caps">SOAP</span> &amp; <span class="caps">REST</span>)</p>\n\n\t<p>Experience implementing webbased technologies like Spring, Struts, Hibernate, etc. Exp in Spring Integration is must</p>\n\n\t<p>Knowledge or Exp of Queuing Messaging systems particularly <span class="caps">IBM</span> MQ series. <br />\nmySQL but experience <br />\nBuild, Deploy and Debug application on server JBoss using <span class="caps">IDE</span> Eclipse </p>\n\n\t<p>Mandatory Key Skills: </p>\n\n\t<p>Spring (Mandatory) <br />\nJQuery (Mandatory)</p>\n\n\t<p>Web-Services (Mandatory)</p>\n\n\t<p>Angular JS (Will be given preference)</p>\n\n\t<p>Ankita Pardeshi <br />\n020 49022802 <br />\nAnkita.pardeshi@careernet.co.in</p>\n\n\t<p>Salary: 3,00,000 &#8211; 8,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJava Hibernate Spring Struts JBoss Rest Eclipse JQuery Javascript Web Services MQ Series Message Queuing <span class="caps">RESTSOAP</span> Unix Linux <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization, Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, M.Tech &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 28, 465840),
'salary': u'3,00,000 - 8,00,000 P.A',
'skills': [u'Java',
u'Hibernate',
u'Spring',
u'Struts',
u'JBoss',
u'Eclipse',
u'JQuery',
u'Javascript',
u'Web Services',
u'MQ Series',
u'Unix',
u'Linux'],
'title': u'Java Dev 3-5yrs Imdte 30dys Joiners for Bangalore(only Banglore Cand)',
'url': 'http://jobsearch.naukri.com/job-listings-Java-Dev-3-5yrs-Imdte-30dys-Joiners-for-Bangalore-only-Banglore-Cand--Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-2-to-5-years-160715008537'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:28 [scrapy] ERROR: Error processing {'company': u'Careernet Technologies Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 28, 465923),
'description': [u'\t<p>Java Developer</p>\n\n\t<p>Exp: 3-5yrs</p>\n\n\t<p>Notice Period: Max 30days</p>\n\n\t<p>Location : Bangalore</p>\n\n\t<p>BE,B Tech, <span class="caps">MCA</span></p>\n\n\t<p>Only Bangalore candidates can apply</p>\n\n\t<p>Directly Face to Face Interview </p>\n\n\t<p>JD:</p>\n\n\t<p>Mandates are as below:-</p>\n\n\t<p>OS only Unix or linux no windows</p>\n\n\t<p>Ability to design and develop eCommerce solutions using Java 1.5 and above, <span class="caps">XML</span>, Web Services (<span class="caps">SOAP</span> &amp; <span class="caps">REST</span>)</p>\n\n\t<p>Experience implementing webbased technologies like Spring, Struts, Hibernate, etc. Exp in Spring Integration is must</p>\n\n\t<p>Knowledge or Exp of Queuing Messaging systems particularly <span class="caps">IBM</span> MQ series. <br />\nmySQL but experience <br />\nBuild, Deploy and Debug application on server JBoss using <span class="caps">IDE</span> Eclipse </p>\n\n\t<p>Mandatory Key Skills: </p>\n\n\t<p>Spring (Mandatory) <br />\nJQuery (Mandatory)</p>\n\n\t<p>Web-Services (Mandatory)</p>\n\n\t<p>Angular JS (Will be given preference)</p>\n\n\t<p>Ankita Pardeshi <br />\n020 49022802 <br />\nAnkita.pardeshi@careernet.co.in</p>\n\n\t<p>Salary: 3,00,000 &#8211; 8,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJava Hibernate Spring Struts JBoss Rest Eclipse JQuery Javascript Web Services MQ Series Message Queuing <span class="caps">RESTSOAP</span> Unix Linux <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization, Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, M.Tech &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 28, 465840),
'salary': u'3,00,000 - 8,00,000 P.A',
'skills': [u'Java',
u'Hibernate',
u'Spring',
u'Struts',
u'JBoss',
u'Eclipse',
u'JQuery',
u'Javascript',
u'Web Services',
u'MQ Series',
u'Unix',
u'Linux'],
'title': u'Java Dev 3-5yrs Imdte 30dys Joiners for Bangalore(only Banglore Cand)',
'url': 'http://jobsearch.naukri.com/job-listings-Java-Dev-3-5yrs-Imdte-30dys-Joiners-for-Bangalore-only-Banglore-Cand--Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-2-to-5-years-160715008537'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Black Turtle',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 28, 550901),
'description': [u'<html><body><div><tr valign="top"> <td class="jdHead">Job Description</td> <td valign="top" class="detailJob"> <p> This is regarding an opportunity with a leading investment bank for Bangalore location as Analyst - Mergers and Acquisitions.</p> <p> <br/> </p> <p> Role:</p> <p> <br/> </p> <div> <ul> <li> The incumbent will be required to work extensively in an integrated team environment with global investment banking professionals on ideas, pitch books and presentations across sectors and countries</li> <li> Focus on supporting origination and execution of mergers and acquisitions (M&amp;A) assignments, divestitures, financial restructurings and associated financing solutions</li> <li> Support the deal team by performing financial valuation; delivered through our coordinated coverage and global-local infrastructure</li> <li> Acquire in-depth understanding of client needs and the market, industry and business environment. This understanding enables the firm to design customized solutions for clients - whether it is strategic initiatives like M&amp;A, financing or risk management solutions</li> <li> The incumbent will work on a very wide variety of transactions with colleagues from across the world</li> </ul> </div> <p> Duties and Responsibilities:</p> <p> <br/> </p> <div> <ul> <li> Analyses, building and using financial models; preparing presentation materials and participating in deal pitches &amp; executions; conducting industry and product research</li> <li> Overtime creates enough understanding of the sector to identify new business opportunities</li> <li> Carrying out financial modeling (vis relative valuation analysis, LBOs, DCFs, Merger plans), and developing and presenting appropriate pitchbooks to senior bankers</li> </ul> </div> </td> </tr> </div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Analyst-m&a',
'url': 'http://jobsearch.naukri.com/job-listings-Analyst-m-a-Black-Turtle-Bengaluru-Bangalore-1-to-3-years-160715008452'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:28 [scrapy] ERROR: Error processing {'company': u'Black Turtle',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 28, 550901),
'description': [u'<html><body><div><tr valign="top"> <td class="jdHead">Job Description</td> <td valign="top" class="detailJob"> <p> This is regarding an opportunity with a leading investment bank for Bangalore location as Analyst - Mergers and Acquisitions.</p> <p> <br/> </p> <p> Role:</p> <p> <br/> </p> <div> <ul> <li> The incumbent will be required to work extensively in an integrated team environment with global investment banking professionals on ideas, pitch books and presentations across sectors and countries</li> <li> Focus on supporting origination and execution of mergers and acquisitions (M&amp;A) assignments, divestitures, financial restructurings and associated financing solutions</li> <li> Support the deal team by performing financial valuation; delivered through our coordinated coverage and global-local infrastructure</li> <li> Acquire in-depth understanding of client needs and the market, industry and business environment. This understanding enables the firm to design customized solutions for clients - whether it is strategic initiatives like M&amp;A, financing or risk management solutions</li> <li> The incumbent will work on a very wide variety of transactions with colleagues from across the world</li> </ul> </div> <p> Duties and Responsibilities:</p> <p> <br/> </p> <div> <ul> <li> Analyses, building and using financial models; preparing presentation materials and participating in deal pitches &amp; executions; conducting industry and product research</li> <li> Overtime creates enough understanding of the sector to identify new business opportunities</li> <li> Carrying out financial modeling (vis relative valuation analysis, LBOs, DCFs, Merger plans), and developing and presenting appropriate pitchbooks to senior bankers</li> </ul> </div> </td> </tr> </div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Analyst-m&a',
'url': 'http://jobsearch.naukri.com/job-listings-Analyst-m-a-Black-Turtle-Bengaluru-Bangalore-1-to-3-years-160715008452'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Selenium-Testing-Specialist-for-Bangalore-Choice-Consultants-Bengaluru-Bangalore-5-to-8-years-160715008515> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:28 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Selenium-Testing-Specialist-for-Bangalore-Choice-Consultants-Bengaluru-Bangalore-5-to-8-years-160715008515> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-CSC-Hiring-Hitachi-Administrator-CSC-India-Pvt-Ltd--Noida-Hyderabad-Secunderabad-Chennai-Bengaluru-Bangalore-7-to-12-years-150515000466> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:28 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-CSC-Hiring-Hitachi-Administrator-CSC-India-Pvt-Ltd--Noida-Hyderabad-Secunderabad-Chennai-Bengaluru-Bangalore-7-to-12-years-150515000466> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Websphere-Commerce-Module-Lead-Permanent-Position-Bangalore-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-7-years-160715008528> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:28 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Websphere-Commerce-Module-Lead-Permanent-Position-Bangalore-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-7-years-160715008528> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-District-Manager-Bata-India-Limited-Hyderabad-Secunderabad-Chennai-Bengaluru-Bangalore-Belgaum-Mysore-Visakhapatnam-Vizag-Trichy-Kollam-Quilon-Ernakulam-Kochi-Cochin-4-to-5-years-160715008440> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:28 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-District-Manager-Bata-India-Limited-Hyderabad-Secunderabad-Chennai-Bengaluru-Bangalore-Belgaum-Mysore-Visakhapatnam-Vizag-Trichy-Kollam-Quilon-Ernakulam-Kochi-Cochin-4-to-5-years-160715008440> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
ERROR:scrapy.core.scraper:Error processing {'company': u'Trigent Software Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 29, 521921),
'description': [u'\t<p>Greetings from Trigent Software, Bangalore!!!!</p>\n\n\t<p>This is regarding the job opportunity with our client in Bangalore Location. Please find below job description for the same.<br />\nAbout Trigent:</p>\n\n\t<p>Trigent Software is a <span class="caps">SEI</span> <span class="caps">CMM</span> Level 4 certified information technology services consulting company with offices in Southborough, Massachusetts, U.S. and India.<br />\nTrigent Software is a member of <span class="caps">NASSCOM</span> and is ranked in Software Magazine the Software 500 survey for 2008-10. The company was ranked among top three SharePoint consulting companies in the U.S. by bestwebdesignagencies.com </p>\n\n\t<p>Job location: Bangalore<br />\nExp: 3+ Yrs<br />\nKey Responsibilities:<br />\nWindchill Admin<br />\nWe are looking for a senior resource in Windchill, skilled in Windchill System Administration. this is for a critical project requirement <br />\n<span class="caps">KEY</span> <span class="caps">TERMS</span>: Upgrade, <span class="caps">COGNOS</span>, System Administration in Windchil &#8211; Junior to Senior Resource for Windchill <span class="caps">PDML</span>ink &#8211; From 4 to 7 years experienced </p>\n\n\t<p>- Windhill Upgrade expert in 10.x versions &#8211; System Administration Expert with Windchill Upgrade experience </p>\n\n\t<p>- Hands on with Cognos (Business reporting) deployment and troubleshooting </p>\n\n\t<p>- Owns effective upkeep of the Windchill system <br />\nInterested candidate can send profile on khushboo_j@trigent.com<br />\nFull Name: <br />\nAlternate Contact Number:<br />\nDate of Birth:<br />\nPancard Number:<br />\nCurrent Location:</p>\n\n\t<p>Looking for some Immediate Joinees <br />\nLooking forward for your updated profile and do refer your friends for the same position</p>\n\n\t<p>Regards,<br />\nKhushboo Jaiswal<br />\nTrigent Software Limited Unit II<br />\nPhone: +91 080-22157000 Ext: 115, 9611155056<br />\nEmail ID : khushboo_j@trigent.com</p>\n\n\t<p>Salary: 5,00,000 &#8211; 10,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nWindchill <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization, B.Sc &#8211; Any Specialization, B.Com &#8211; Commerce, <span class="caps">BCA</span> &#8211; Computers</p>\n\n\t<p>PG:Any Postgraduate</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 29, 521863),
'salary': u'5,00,000 - 10,00,000 P.A',
'skills': [u'Windchill'],
'title': u'Job Opening for Windchill Admin_bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Opening-for-Windchill-Admin-bangalore-Trigent-Software-Ltd-Bengaluru-Bangalore-3-to-8-years-160715008362'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:29 [scrapy] ERROR: Error processing {'company': u'Trigent Software Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 29, 521921),
'description': [u'\t<p>Greetings from Trigent Software, Bangalore!!!!</p>\n\n\t<p>This is regarding the job opportunity with our client in Bangalore Location. Please find below job description for the same.<br />\nAbout Trigent:</p>\n\n\t<p>Trigent Software is a <span class="caps">SEI</span> <span class="caps">CMM</span> Level 4 certified information technology services consulting company with offices in Southborough, Massachusetts, U.S. and India.<br />\nTrigent Software is a member of <span class="caps">NASSCOM</span> and is ranked in Software Magazine the Software 500 survey for 2008-10. The company was ranked among top three SharePoint consulting companies in the U.S. by bestwebdesignagencies.com </p>\n\n\t<p>Job location: Bangalore<br />\nExp: 3+ Yrs<br />\nKey Responsibilities:<br />\nWindchill Admin<br />\nWe are looking for a senior resource in Windchill, skilled in Windchill System Administration. this is for a critical project requirement <br />\n<span class="caps">KEY</span> <span class="caps">TERMS</span>: Upgrade, <span class="caps">COGNOS</span>, System Administration in Windchil &#8211; Junior to Senior Resource for Windchill <span class="caps">PDML</span>ink &#8211; From 4 to 7 years experienced </p>\n\n\t<p>- Windhill Upgrade expert in 10.x versions &#8211; System Administration Expert with Windchill Upgrade experience </p>\n\n\t<p>- Hands on with Cognos (Business reporting) deployment and troubleshooting </p>\n\n\t<p>- Owns effective upkeep of the Windchill system <br />\nInterested candidate can send profile on khushboo_j@trigent.com<br />\nFull Name: <br />\nAlternate Contact Number:<br />\nDate of Birth:<br />\nPancard Number:<br />\nCurrent Location:</p>\n\n\t<p>Looking for some Immediate Joinees <br />\nLooking forward for your updated profile and do refer your friends for the same position</p>\n\n\t<p>Regards,<br />\nKhushboo Jaiswal<br />\nTrigent Software Limited Unit II<br />\nPhone: +91 080-22157000 Ext: 115, 9611155056<br />\nEmail ID : khushboo_j@trigent.com</p>\n\n\t<p>Salary: 5,00,000 &#8211; 10,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nWindchill <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization, B.Sc &#8211; Any Specialization, B.Com &#8211; Commerce, <span class="caps">BCA</span> &#8211; Computers</p>\n\n\t<p>PG:Any Postgraduate</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 29, 521863),
'salary': u'5,00,000 - 10,00,000 P.A',
'skills': [u'Windchill'],
'title': u'Job Opening for Windchill Admin_bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Opening-for-Windchill-Admin-bangalore-Trigent-Software-Ltd-Bengaluru-Bangalore-3-to-8-years-160715008362'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Spigot Software Private Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 29, 557438),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>TITLE : QA Automation Engineer</p><p> Exp : 4 - 9 Yrs</p><p> Work Location: Bangalore </p><p> Note: Looking for immediate joinees or 15 Days </p><p> \tExperience in manual software testing.</p><p> Experience in automation testing.<br/> \tExperience in testing applications using Microsoft testing tools like Microsoft Test Manager(MTM).<br/> \tExperience in Programming / Scripting (C, C#, JavaScript, VBScript)<br/> \tFirst-hand experience with a wide variety of protocols, such as Adobe Flex/RIA, COM/DCOM, and Web (HTTP/HTML)<br/> \tWrite Automation test cases, plans, scripts and test harnesses as required<br/> \tMaintains and updates the Automation test strategy<br/> \tUses MS Test Manager and custom C scripting to record and execute scripts with CODED UI <br/> \tProvides Performance testing assistance to Development and Technical Operations community by performing tuning activities for various hardware, OS, network and application troubleshooting and analysis initiatives.<br/> \tDemonstrated knowledge of SQL Server, query building and data extraction tools<br/> \tEffective in a fast paced environment<br/> \tCollaborative/enjoys working in teams<br/> \tSelf-starter/motivator<br/> \tCreative and Effective problem solving skills<br/> \tAbility to work on/manage multiple tasks concurrently<br/> \tHighly organized and detail oriented<br/> \tExcellent written and verbal communication skills<br/> <br/> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: IT-Software / Software Services</p><p>&#13;\n\t\t\tFunctional Area: IT Software - QA &amp; Testing</p><p>&#13;\n\t\t\tRole Category: Testing Engineer</p><p>&#13;\n\t\t\tRole: Testing Engineer</p><p>&#13;\n\t\t\tKeyskills: Coded UI, MTM, Microsoft test Manager, Automation Testing, Manual testing, C programming, C#, Load Runner, Quick Test Professional, Javascript, VB scripting, codedui, MS Test Manager, QA Aututomation Engineer, Test Engineer</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Looking for QA Automationengineer with a Finance Based MNC Company',
'url': 'http://jobsearch.naukri.com/job-listings-Looking-for-QA-Automationengineer-with-a-Finance-Based-MNC-Company--Spigot-Software-Private-Limited-Bengaluru-Bangalore-4-to-9-years-160715008485'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:29 [scrapy] ERROR: Error processing {'company': u'Spigot Software Private Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 29, 557438),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>TITLE : QA Automation Engineer</p><p> Exp : 4 - 9 Yrs</p><p> Work Location: Bangalore </p><p> Note: Looking for immediate joinees or 15 Days </p><p> \tExperience in manual software testing.</p><p> Experience in automation testing.<br/> \tExperience in testing applications using Microsoft testing tools like Microsoft Test Manager(MTM).<br/> \tExperience in Programming / Scripting (C, C#, JavaScript, VBScript)<br/> \tFirst-hand experience with a wide variety of protocols, such as Adobe Flex/RIA, COM/DCOM, and Web (HTTP/HTML)<br/> \tWrite Automation test cases, plans, scripts and test harnesses as required<br/> \tMaintains and updates the Automation test strategy<br/> \tUses MS Test Manager and custom C scripting to record and execute scripts with CODED UI <br/> \tProvides Performance testing assistance to Development and Technical Operations community by performing tuning activities for various hardware, OS, network and application troubleshooting and analysis initiatives.<br/> \tDemonstrated knowledge of SQL Server, query building and data extraction tools<br/> \tEffective in a fast paced environment<br/> \tCollaborative/enjoys working in teams<br/> \tSelf-starter/motivator<br/> \tCreative and Effective problem solving skills<br/> \tAbility to work on/manage multiple tasks concurrently<br/> \tHighly organized and detail oriented<br/> \tExcellent written and verbal communication skills<br/> <br/> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: IT-Software / Software Services</p><p>&#13;\n\t\t\tFunctional Area: IT Software - QA &amp; Testing</p><p>&#13;\n\t\t\tRole Category: Testing Engineer</p><p>&#13;\n\t\t\tRole: Testing Engineer</p><p>&#13;\n\t\t\tKeyskills: Coded UI, MTM, Microsoft test Manager, Automation Testing, Manual testing, C programming, C#, Load Runner, Quick Test Professional, Javascript, VB scripting, codedui, MS Test Manager, QA Aututomation Engineer, Test Engineer</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Looking for QA Automationengineer with a Finance Based MNC Company',
'url': 'http://jobsearch.naukri.com/job-listings-Looking-for-QA-Automationengineer-with-a-Finance-Based-MNC-Company--Spigot-Software-Private-Limited-Bengaluru-Bangalore-4-to-9-years-160715008485'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Collabera Technologies Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 30, 793226),
'description': [u'\t<p>Bachelors degree in Computer Science, Software Engineering, Information Technology, or related field required. <br />\nAt least 5 years of experience as a Database Developer.</p>\n\n\t<p>Experience in Composite software platform or familiarity with object models and virtual data platform software.</p>\n\n\t<p>At least 4 years of <span class="caps">SQL</span> experience with the ability to write queries to perform data analysis. A preference is given to Sybase v12.5 and DB2 v10+ databases.</p>\n\n\t<p>Experience with <span class="caps">IBM</span> Cognos BI v8+ and <span class="caps">IBM</span> Open Pages is a plus.</p>\n\n\t<p>At least 4 years of experience working on Business Intelligence\\Business Analytics\\Data Warehouse solutions.</p>\n\n\t<p>Strong collaboration and communication skills</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nDatabase and developer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 30, 793161),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'Database Developer.',
'url': 'http://jobsearch.naukri.com/job-listings-Database-Developer--Collabera-Technologies-Pvt-Ltd--Bengaluru-Bangalore-4-to-8-years-160715008259'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:30 [scrapy] ERROR: Error processing {'company': u'Collabera Technologies Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 30, 793226),
'description': [u'\t<p>Bachelors degree in Computer Science, Software Engineering, Information Technology, or related field required. <br />\nAt least 5 years of experience as a Database Developer.</p>\n\n\t<p>Experience in Composite software platform or familiarity with object models and virtual data platform software.</p>\n\n\t<p>At least 4 years of <span class="caps">SQL</span> experience with the ability to write queries to perform data analysis. A preference is given to Sybase v12.5 and DB2 v10+ databases.</p>\n\n\t<p>Experience with <span class="caps">IBM</span> Cognos BI v8+ and <span class="caps">IBM</span> Open Pages is a plus.</p>\n\n\t<p>At least 4 years of experience working on Business Intelligence\\Business Analytics\\Data Warehouse solutions.</p>\n\n\t<p>Strong collaboration and communication skills</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nDatabase and developer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 30, 793161),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'Database Developer.',
'url': 'http://jobsearch.naukri.com/job-listings-Database-Developer--Collabera-Technologies-Pvt-Ltd--Bengaluru-Bangalore-4-to-8-years-160715008259'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'ACT Television',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 32, 40023),
'description': [u'\t<p>Please walk in for Customer Care at below Venue between 10.00 AM to 1.00 PM</p>\n\n\t<p>Atria Convergence Technologies Pvt Ltd.<br />\nGolden Heights, 59th C Cross, 4th M Block, Rajajinagar,<br />\nBangalore 5600 10 </p>\n\n\t<p>Must Know Two languages: Kannada &amp; english</p>\n\n\t<p>Has to do out bound call and also inbound calls</p>\n\n\t<p>Minimum of excel knowledge</p>\n\n\t<p>Salary: 1,50,000 &#8211; 2,50,000 P.A. Incentives Best In Industry </p>\n\n\t<p>Industry: Telecom/ISP / </p>\n\n\t<p>Functional Area: Other </p>\n\n\t<p>Role Category:Other</p>\n\n\t<p>Role:Other</p>\n\n\t<p>Keyskills <br />\ncustomer care customer service telecalling Outbound Sales telesales outbound process inbound sales upselling outbound calling telemarketing <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Graduation Not Required</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 4 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 32, 39959),
'salary': u'1,50,000 - 2,50,000 P.A. Incentives Best In Industry',
'skills': [u'customer care',
u'customer service',
u'telecalling',
u'Outbound Sales',
u'telesales',
u'outbound process',
u'upselling',
u'outbound calling',
u'telemarketing'],
'title': u'Customer Care Executive',
'url': 'http://jobsearch.naukri.com/job-listings-Customer-Care-Executive-ACT-Television-Bengaluru-Bangalore-1-to-4-years-160715008363'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:32 [scrapy] ERROR: Error processing {'company': u'ACT Television',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 32, 40023),
'description': [u'\t<p>Please walk in for Customer Care at below Venue between 10.00 AM to 1.00 PM</p>\n\n\t<p>Atria Convergence Technologies Pvt Ltd.<br />\nGolden Heights, 59th C Cross, 4th M Block, Rajajinagar,<br />\nBangalore 5600 10 </p>\n\n\t<p>Must Know Two languages: Kannada &amp; english</p>\n\n\t<p>Has to do out bound call and also inbound calls</p>\n\n\t<p>Minimum of excel knowledge</p>\n\n\t<p>Salary: 1,50,000 &#8211; 2,50,000 P.A. Incentives Best In Industry </p>\n\n\t<p>Industry: Telecom/ISP / </p>\n\n\t<p>Functional Area: Other </p>\n\n\t<p>Role Category:Other</p>\n\n\t<p>Role:Other</p>\n\n\t<p>Keyskills <br />\ncustomer care customer service telecalling Outbound Sales telesales outbound process inbound sales upselling outbound calling telemarketing <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Graduation Not Required</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 4 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 32, 39959),
'salary': u'1,50,000 - 2,50,000 P.A. Incentives Best In Industry',
'skills': [u'customer care',
u'customer service',
u'telecalling',
u'Outbound Sales',
u'telesales',
u'outbound process',
u'upselling',
u'outbound calling',
u'telemarketing'],
'title': u'Customer Care Executive',
'url': 'http://jobsearch.naukri.com/job-listings-Customer-Care-Executive-ACT-Television-Bengaluru-Bangalore-1-to-4-years-160715008363'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 34, 188893),
'description': [u'\t<p>Job Title : Websphere Commerce &#8211; Developer<br />\nWork Location &#8211; Bangalore<br />\nJob Type &#8211; Permanent<br />\nExperience &#8211; 3-5 Yrs<br />\nJob Description :<br />\nWebshpere Commerce Suite/Server Developers.<br />\nShould have very strong development experience in e-Commerece.<br />\nJob Title : Websphere Commerce &#8211; Developer<br />\nWork Location &#8211; Bangalore<br />\nJob Type &#8211; Permanent<br />\nExperience &#8211; 3-5 Yrs<br />\nJob Description :<br />\nWebshpere Commerce Suite/Server Developers.<br />\nShould have very strong development experience in e-Commerece.<br />\nJava, J2EE,, C++, web services, web2.0, <span class="caps">XML</span>, <span class="caps">SOAP</span></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nWebsphere Commerce websphere commerce server websphere commerce suite webspherecommercesuite websphere commerce server6.0 websphere customer centre <span class="caps">WCC</span> Server <span class="caps">WCC</span> Suite WebsphereCommerce <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 34, 188803),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Websphere Commerce',
u'websphere commerce server',
u'websphere commerce suite',
u'websphere commerce server6.0',
u'websphere customer centre'],
'title': u'Websphere Commerce Developer - Permanent Position for Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Websphere-Commerce-Developer-Permanent-Position-for-Bangalore-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715008461'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:34 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 34, 188893),
'description': [u'\t<p>Job Title : Websphere Commerce &#8211; Developer<br />\nWork Location &#8211; Bangalore<br />\nJob Type &#8211; Permanent<br />\nExperience &#8211; 3-5 Yrs<br />\nJob Description :<br />\nWebshpere Commerce Suite/Server Developers.<br />\nShould have very strong development experience in e-Commerece.<br />\nJob Title : Websphere Commerce &#8211; Developer<br />\nWork Location &#8211; Bangalore<br />\nJob Type &#8211; Permanent<br />\nExperience &#8211; 3-5 Yrs<br />\nJob Description :<br />\nWebshpere Commerce Suite/Server Developers.<br />\nShould have very strong development experience in e-Commerece.<br />\nJava, J2EE,, C++, web services, web2.0, <span class="caps">XML</span>, <span class="caps">SOAP</span></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nWebsphere Commerce websphere commerce server websphere commerce suite webspherecommercesuite websphere commerce server6.0 websphere customer centre <span class="caps">WCC</span> Server <span class="caps">WCC</span> Suite WebsphereCommerce <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 34, 188803),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Websphere Commerce',
u'websphere commerce server',
u'websphere commerce suite',
u'websphere commerce server6.0',
u'websphere customer centre'],
'title': u'Websphere Commerce Developer - Permanent Position for Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Websphere-Commerce-Developer-Permanent-Position-for-Bangalore-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715008461'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Gratitude India',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 35, 621186),
'description': [u'\t<p>Top <span class="caps">BPO</span>&#8217;s hiring with Excellent Salary. Inhouse Interviews.<br />\nFixed Shift &amp; Weekend Off!<br />\nSalary 18K-35K+Excellent Incentives+Joining Bonus.<br />\n2 Rounds of <span class="caps">EASY</span> Interview!<br />\nHiring for Pan India<br />\n<span class="caps">MSG</span> OR <span class="caps">CALL</span> Deepak@09953262467 / 09711472700 </p>\n\n\t<p>Salary: 2,00,000 &#8211; 5,50,000 P.A. Best in the Industry &amp; Excellent Incentives! </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Voice</p>\n\n\t<p>Role:Associate/Senior Associate -(NonTechnical)</p>\n\n\t<p>Keyskills <br />\nTeam Member Customer Service Associate Customer Service Executive <span class="caps">CSR</span> <span class="caps">CSE</span> <span class="caps">CCA</span> <span class="caps">CSO</span> Customer Service technical support call center <span class="caps">BPO</span> Fresher night shift rotational shift <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Graduation Not Required</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Candidates having an excellent command over English and willing to work in Night Shifts in Voice Process shall apply. Candidates already working in International call Centres should expect an excellent salary hike when they apply. Freshers can apply</p>'],
'exp': u'1 - 5 yrs',
'location': [u'Bengaluru/Bangalore',
u'Mumbai',
u'Delhi/NCR(National Capital Region)'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 35, 621117),
'salary': u'2,00,000 - 5,50,000 P.A. Best in the Industry & Excellent Incentives!',
'skills': [u'Customer Service Associate',
u'Customer Service Executive',
u'CSR',
u'CSE',
u'CCA',
u'CSO',
u'Customer Service',
u'technical support',
u'call center',
u'BPO',
u'night shift'],
'title': u'BPO Jobs in Voice Process wid sal upto 35k...call',
'url': 'http://jobsearch.naukri.com/job-listings-BPO-Jobs-in-Voice-Process-wid-sal-upto-35k-call-09953262467-Gratitude-India-Bengaluru-Bangalore-Mumbai-Delhi-NCR-National-Capital-Region--1-to-5-years-160715008491'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:35 [scrapy] ERROR: Error processing {'company': u'Gratitude India',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 35, 621186),
'description': [u'\t<p>Top <span class="caps">BPO</span>&#8217;s hiring with Excellent Salary. Inhouse Interviews.<br />\nFixed Shift &amp; Weekend Off!<br />\nSalary 18K-35K+Excellent Incentives+Joining Bonus.<br />\n2 Rounds of <span class="caps">EASY</span> Interview!<br />\nHiring for Pan India<br />\n<span class="caps">MSG</span> OR <span class="caps">CALL</span> Deepak@09953262467 / 09711472700 </p>\n\n\t<p>Salary: 2,00,000 &#8211; 5,50,000 P.A. Best in the Industry &amp; Excellent Incentives! </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Voice</p>\n\n\t<p>Role:Associate/Senior Associate -(NonTechnical)</p>\n\n\t<p>Keyskills <br />\nTeam Member Customer Service Associate Customer Service Executive <span class="caps">CSR</span> <span class="caps">CSE</span> <span class="caps">CCA</span> <span class="caps">CSO</span> Customer Service technical support call center <span class="caps">BPO</span> Fresher night shift rotational shift <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Graduation Not Required</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Candidates having an excellent command over English and willing to work in Night Shifts in Voice Process shall apply. Candidates already working in International call Centres should expect an excellent salary hike when they apply. Freshers can apply</p>'],
'exp': u'1 - 5 yrs',
'location': [u'Bengaluru/Bangalore',
u'Mumbai',
u'Delhi/NCR(National Capital Region)'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 35, 621117),
'salary': u'2,00,000 - 5,50,000 P.A. Best in the Industry & Excellent Incentives!',
'skills': [u'Customer Service Associate',
u'Customer Service Executive',
u'CSR',
u'CSE',
u'CCA',
u'CSO',
u'Customer Service',
u'technical support',
u'call center',
u'BPO',
u'night shift'],
'title': u'BPO Jobs in Voice Process wid sal upto 35k...call',
'url': 'http://jobsearch.naukri.com/job-listings-BPO-Jobs-in-Voice-Process-wid-sal-upto-35k-call-09953262467-Gratitude-India-Bengaluru-Bangalore-Mumbai-Delhi-NCR-National-Capital-Region--1-to-5-years-160715008491'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Career Tree HR Solutions Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 36, 620461),
'description': [u'\t<p>*An expert recruiter for one of the leading recruitment consultancy in India.\n*Its based out of Chennai\n\t<ul>\n\t\t<li>1 to 4 years experienced people in Non-IT domain.</li>\n\t</ul>\n*End-to -end recruitment.\n\t<ul>\n\t\t<li>Want candidates who can join immediately</li>\n\t</ul></p>\n\n\t<p>bhargavi@career-tree.in </p>\n\n\t<p>Salary: 1,25,000 &#8211; 5,00,000 P.A. Can be discussed. </p>\n\n\t<p>Industry: Recruitment / Staffing </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Executive</p>\n\n\t<p>Keyskills <br />\nNon It Recruitment recruiter HR hr executive human resource <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>*Preferably from Non IT background.\n*Joining within 10 to 15 days once offered.\n\t<ul>\n\t\t<li>Experience in Infrastructure, Manufacturing, Telecom &amp; Automobile would be an added advantage.</li>\n\t\t<li>Ready to Travel</li>\n\t\t<li>Open to take new Challenges</li>\n\t</ul></p>'],
'exp': u'1 - 5 yrs',
'location': [u'Chennai', u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 36, 620392),
'salary': u'1,25,000 - 5,00,000 P.A. Can be discussed.',
'skills': [u'Recruitment', u'recruiter'],
'title': u'HR - End to End Recruitment',
'url': 'http://jobsearch.naukri.com/job-listings-HR-End-to-End-Recruitment-Career-Tree-HR-Solutions-Pvt-Ltd--Chennai-Bengaluru-Bangalore-1-to-5-years-120615005554'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:36 [scrapy] ERROR: Error processing {'company': u'Career Tree HR Solutions Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 36, 620461),
'description': [u'\t<p>*An expert recruiter for one of the leading recruitment consultancy in India.\n*Its based out of Chennai\n\t<ul>\n\t\t<li>1 to 4 years experienced people in Non-IT domain.</li>\n\t</ul>\n*End-to -end recruitment.\n\t<ul>\n\t\t<li>Want candidates who can join immediately</li>\n\t</ul></p>\n\n\t<p>bhargavi@career-tree.in </p>\n\n\t<p>Salary: 1,25,000 &#8211; 5,00,000 P.A. Can be discussed. </p>\n\n\t<p>Industry: Recruitment / Staffing </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Executive</p>\n\n\t<p>Keyskills <br />\nNon It Recruitment recruiter HR hr executive human resource <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>*Preferably from Non IT background.\n*Joining within 10 to 15 days once offered.\n\t<ul>\n\t\t<li>Experience in Infrastructure, Manufacturing, Telecom &amp; Automobile would be an added advantage.</li>\n\t\t<li>Ready to Travel</li>\n\t\t<li>Open to take new Challenges</li>\n\t</ul></p>'],
'exp': u'1 - 5 yrs',
'location': [u'Chennai', u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 36, 620392),
'salary': u'1,25,000 - 5,00,000 P.A. Can be discussed.',
'skills': [u'Recruitment', u'recruiter'],
'title': u'HR - End to End Recruitment',
'url': 'http://jobsearch.naukri.com/job-listings-HR-End-to-End-Recruitment-Career-Tree-HR-Solutions-Pvt-Ltd--Chennai-Bengaluru-Bangalore-1-to-5-years-120615005554'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Novigo Solutions Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 38, 557709),
'description': [u'\t<p>- Hands-on programming experience on web applications using the stack mentioned above or similar alternatives &#8211; Development experience using of at least 6 months using Spring.Net and <span class="caps">ASP</span>.Net <span class="caps">MVC</span> <br />\nDevelopment , using at least 12 months in N Hibernate </p>\n\n\t<p>Salary: Attractive Salary Package </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">ASP</span>.Net <span class="caps">MVC</span> Web Technologies mvc <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 38, 557650),
'salary': u'Attractive Salary Package',
'skills': [u'Web Technologies', u'mvc'],
'title': u'Joining Within 15 days Asp.net with MVC for Novigo Solutions,bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Joining-Within-15-days-Asp-net-with-MVC-for-Novigo-Solutions-bangalore-Novigo-Solutions-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008469'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:38 [scrapy] ERROR: Error processing {'company': u'Novigo Solutions Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 38, 557709),
'description': [u'\t<p>- Hands-on programming experience on web applications using the stack mentioned above or similar alternatives &#8211; Development experience using of at least 6 months using Spring.Net and <span class="caps">ASP</span>.Net <span class="caps">MVC</span> <br />\nDevelopment , using at least 12 months in N Hibernate </p>\n\n\t<p>Salary: Attractive Salary Package </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">ASP</span>.Net <span class="caps">MVC</span> Web Technologies mvc <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 38, 557650),
'salary': u'Attractive Salary Package',
'skills': [u'Web Technologies', u'mvc'],
'title': u'Joining Within 15 days Asp.net with MVC for Novigo Solutions,bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Joining-Within-15-days-Asp-net-with-MVC-for-Novigo-Solutions-bangalore-Novigo-Solutions-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008469'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.downloadermiddlewares.redirect:Redirecting (301) to <GET http://jobsearch.naukri.com/jobs-in-bangalore> from <GET http://jobsearch.naukri.com/jobs-in-bangalore-1>
2015-07-16 20:05:38 [scrapy] DEBUG: Redirecting (301) to <GET http://jobsearch.naukri.com/jobs-in-bangalore> from <GET http://jobsearch.naukri.com/jobs-in-bangalore-1>
DEBUG:scrapy.dupefilters:Filtered duplicate request: <GET http://jobsearch.naukri.com/jobs-in-bangalore> - no more duplicates will be shown (see DUPEFILTER_DEBUG to show all duplicates)
2015-07-16 20:05:38 [scrapy] DEBUG: Filtered duplicate request: <GET http://jobsearch.naukri.com/jobs-in-bangalore> - no more duplicates will be shown (see DUPEFILTER_DEBUG to show all duplicates)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Clinical-Research-Associate-Technosoft-Global-Services-Pvt-Ltd-Bengaluru-Bangalore-1-to-3-years-250615003735> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:38 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Clinical-Research-Associate-Technosoft-Global-Services-Pvt-Ltd-Bengaluru-Bangalore-1-to-3-years-250615003735> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Walk-In-for-Accounts-Payable-invoice-Process-Technosoft-Global-Services-Pvt-Ltd-Bengaluru-Bangalore-2-to-3-years-130715007383> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:38 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Walk-In-for-Accounts-Payable-invoice-Process-Technosoft-Global-Services-Pvt-Ltd-Bengaluru-Bangalore-2-to-3-years-130715007383> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Guest-Relation-Executive-PVR-LIMITED-Bengaluru-Bangalore-0-to-3-years-160715008095> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:38 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Guest-Relation-Executive-PVR-LIMITED-Bengaluru-Bangalore-0-to-3-years-160715008095> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Quality-Control-Officer-Metropolis-Healthcare-Limited-Bengaluru-Bangalore-0-to-3-years-160715008222> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:38 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Quality-Control-Officer-Metropolis-Healthcare-Limited-Bengaluru-Bangalore-0-to-3-years-160715008222> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/jobs-in-bangalore-4> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:38 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/jobs-in-bangalore-4> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/jobs-in-bangalore-3> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:38 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/jobs-in-bangalore-3> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/jobs-in-bangalore-2> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:38 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/jobs-in-bangalore-2> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
ERROR:scrapy.core.scraper:Error processing {'company': u'Choice Consultants',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 39, 630571),
'description': [u'\t<p>Need Selenium Testing Experts strong in Selenium Testing, Core Java Programming, Web Driver,Junit/TestNG,<br />\nMaven/Hudson/ANT build tool knowledge ,<br />\n<span class="caps">SQL</span> query knowledge,<br />\nShould have worked in Agile</p>\n\n\t<p>Joining :15 days only. </p>\n\n\t<p>Salary: Excellent (negotiable) for the right candidate. </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; QA &amp; Testing </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nSelenium Testing Core Java Programming WebDriver Junit TestNG Maven Hudso <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:MCA &#8211; Computers, M.Tech &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Selenium Testing Experts Bamboo &#8211; CI tool</p>\n\n\t<p>Jira &#8211; Agile tool</p>\n\n\t<p>JBehave &#8211; <span class="caps">BDD</span> Automation tool</p>\n\n\t<p>Mail CV to :choiceit@vsnl.com, vl share detailed JD and setup interview<br />\nJoining within 20 days</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 39, 630511),
'salary': u'Excellent (negotiable) for the right candidate.',
'skills': [u'Selenium', u'Testing', u'Junit', u'Maven'],
'title': u'Selenium Testing Specialist for Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Selenium-Testing-Specialist-for-Bangalore-Choice-Consultants-Bengaluru-Bangalore-5-to-8-years-160715008515'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:39 [scrapy] ERROR: Error processing {'company': u'Choice Consultants',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 39, 630571),
'description': [u'\t<p>Need Selenium Testing Experts strong in Selenium Testing, Core Java Programming, Web Driver,Junit/TestNG,<br />\nMaven/Hudson/ANT build tool knowledge ,<br />\n<span class="caps">SQL</span> query knowledge,<br />\nShould have worked in Agile</p>\n\n\t<p>Joining :15 days only. </p>\n\n\t<p>Salary: Excellent (negotiable) for the right candidate. </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; QA &amp; Testing </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nSelenium Testing Core Java Programming WebDriver Junit TestNG Maven Hudso <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:MCA &#8211; Computers, M.Tech &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Selenium Testing Experts Bamboo &#8211; CI tool</p>\n\n\t<p>Jira &#8211; Agile tool</p>\n\n\t<p>JBehave &#8211; <span class="caps">BDD</span> Automation tool</p>\n\n\t<p>Mail CV to :choiceit@vsnl.com, vl share detailed JD and setup interview<br />\nJoining within 20 days</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 39, 630511),
'salary': u'Excellent (negotiable) for the right candidate.',
'skills': [u'Selenium', u'Testing', u'Junit', u'Maven'],
'title': u'Selenium Testing Specialist for Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Selenium-Testing-Specialist-for-Bangalore-Choice-Consultants-Bengaluru-Bangalore-5-to-8-years-160715008515'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'CSC India Pvt Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 39, 693398),
'description': [u'<html><body><div><tr> <td><h1>Careers</h1><table width="98%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <noscript> <img src="http://b.scorecardresearch.com/p?c1=2&amp;c2=6035313&amp;cv=2.0&amp;cj=1"/> </noscript> </td></tr></table></td></tr></div></body></html>'],
'location': [u'Noida, Hyderabad / Secunderabad, Chennai, Bengaluru/Bangalore'],
'title': u'CSC Hiring - Hitachi Administrator',
'url': 'http://jobsearch.naukri.com/job-listings-CSC-Hiring-Hitachi-Administrator-CSC-India-Pvt-Ltd--Noida-Hyderabad-Secunderabad-Chennai-Bengaluru-Bangalore-7-to-12-years-150515000466'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:39 [scrapy] ERROR: Error processing {'company': u'CSC India Pvt Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 39, 693398),
'description': [u'<html><body><div><tr> <td><h1>Careers</h1><table width="98%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <noscript> <img src="http://b.scorecardresearch.com/p?c1=2&amp;c2=6035313&amp;cv=2.0&amp;cj=1"/> </noscript> </td></tr></table></td></tr></div></body></html>'],
'location': [u'Noida, Hyderabad / Secunderabad, Chennai, Bengaluru/Bangalore'],
'title': u'CSC Hiring - Hitachi Administrator',
'url': 'http://jobsearch.naukri.com/job-listings-CSC-Hiring-Hitachi-Administrator-CSC-India-Pvt-Ltd--Noida-Hyderabad-Secunderabad-Chennai-Bengaluru-Bangalore-7-to-12-years-150515000466'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 413684),
'description': [u'\t<p>Job Title :Websphere commerce &#8211; Module Lead<br />\nWork Location &#8211; Bangalore<br />\nJob Type &#8211; Permanent<br />\nExperience &#8211; 5-7 Yrs<br />\nJob Description &#8211; <br />\nJob Description :<br />\nJava<br />\n<span class="caps">IBM</span> Websphere Commerce Suite V 6.0<br />\nDesigning/ Development exp on Hybris/ <span class="caps">WCS</span>/ <span class="caps">ATG</span> commerce.<br />\nOracle 10G/11G PL/SQL<br />\nMaintenance experience in E-Commerce applications/Public Websites</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nJava Websphere Commerce Suite <span class="caps">WCS</span> E &#8211; commerce WebsphereCommerce Server Websphere Commerce Server WebsphereCommerce Websphere Commerce <span class="caps">WCS</span>erver WC Server WC Suite <span class="caps">WCS</span>uite <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 413621),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Java',
u'Websphere Commerce Suite',
u'WCS',
u'E - commerce',
u'Websphere Commerce Server',
u'Websphere Commerce'],
'title': u'Websphere Commerce Module Lead - Permanent Position - Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Websphere-Commerce-Module-Lead-Permanent-Position-Bangalore-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-7-years-160715008528'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:40 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 413684),
'description': [u'\t<p>Job Title :Websphere commerce &#8211; Module Lead<br />\nWork Location &#8211; Bangalore<br />\nJob Type &#8211; Permanent<br />\nExperience &#8211; 5-7 Yrs<br />\nJob Description &#8211; <br />\nJob Description :<br />\nJava<br />\n<span class="caps">IBM</span> Websphere Commerce Suite V 6.0<br />\nDesigning/ Development exp on Hybris/ <span class="caps">WCS</span>/ <span class="caps">ATG</span> commerce.<br />\nOracle 10G/11G PL/SQL<br />\nMaintenance experience in E-Commerce applications/Public Websites</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nJava Websphere Commerce Suite <span class="caps">WCS</span> E &#8211; commerce WebsphereCommerce Server Websphere Commerce Server WebsphereCommerce Websphere Commerce <span class="caps">WCS</span>erver WC Server WC Suite <span class="caps">WCS</span>uite <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 413621),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Java',
u'Websphere Commerce Suite',
u'WCS',
u'E - commerce',
u'Websphere Commerce Server',
u'Websphere Commerce'],
'title': u'Websphere Commerce Module Lead - Permanent Position - Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Websphere-Commerce-Module-Lead-Permanent-Position-Bangalore-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-7-years-160715008528'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Bata India Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 455056),
'description': [u'<html><body><div><tr> <td valign="top"> <h1>Careers</h1> <div class="content" align="justify"> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <noscript> <img src="http://b.scorecardresearch.com/p?c1=2&amp;c2=6035313&amp;cv=2.0&amp;cj=1"/> </noscript> </td></tr></table></div></td></tr></div></body></html>'],
'location': [u'Hyderabad / Secunderabad, Chennai, Bengaluru/Bangalore, Belgaum, Mysore, Visakhapatnam/Vizag, Trichy, Kollam / Quilon, Ernakulam / Kochi/ Cochin'],
'title': u'District Manager',
'url': 'http://jobsearch.naukri.com/job-listings-District-Manager-Bata-India-Limited-Hyderabad-Secunderabad-Chennai-Bengaluru-Bangalore-Belgaum-Mysore-Visakhapatnam-Vizag-Trichy-Kollam-Quilon-Ernakulam-Kochi-Cochin-4-to-5-years-160715008440'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:40 [scrapy] ERROR: Error processing {'company': u'Bata India Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 455056),
'description': [u'<html><body><div><tr> <td valign="top"> <h1>Careers</h1> <div class="content" align="justify"> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <noscript> <img src="http://b.scorecardresearch.com/p?c1=2&amp;c2=6035313&amp;cv=2.0&amp;cj=1"/> </noscript> </td></tr></table></div></td></tr></div></body></html>'],
'location': [u'Hyderabad / Secunderabad, Chennai, Bengaluru/Bangalore, Belgaum, Mysore, Visakhapatnam/Vizag, Trichy, Kollam / Quilon, Ernakulam / Kochi/ Cochin'],
'title': u'District Manager',
'url': 'http://jobsearch.naukri.com/job-listings-District-Manager-Bata-India-Limited-Hyderabad-Secunderabad-Chennai-Bengaluru-Bangalore-Belgaum-Mysore-Visakhapatnam-Vizag-Trichy-Kollam-Quilon-Ernakulam-Kochi-Cochin-4-to-5-years-160715008440'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Instructional-Designer-Senior-Akamai-Technologies-Bengaluru-Bangalore-8-to-10-years-090215002582> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:40 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Instructional-Designer-Senior-Akamai-Technologies-Bengaluru-Bangalore-8-to-10-years-090215002582> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Requirement-for-BMC-Service-Management-mandatory--Experis-IT-Private-Limited-Bengaluru-Bangalore-3-to-5-years-160715008156> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:40 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Requirement-for-BMC-Service-Management-mandatory--Experis-IT-Private-Limited-Bengaluru-Bangalore-3-to-5-years-160715008156> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Regional-Manager-MAVEN-INFO-SOLUTIONS-OPC-PRIVATE-LIMITED-Bengaluru-Bangalore-15-to-18-years-160715008162> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:40 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Regional-Manager-MAVEN-INFO-SOLUTIONS-OPC-PRIVATE-LIMITED-Bengaluru-Bangalore-15-to-18-years-160715008162> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-MS-Exchange-US-Service-Group-Bengaluru-Bangalore-Chennai-Hyderabad-Secunderabad-2-to-7-years-160715008176> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:40 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-MS-Exchange-US-Service-Group-Bengaluru-Bangalore-Chennai-Hyderabad-Secunderabad-2-to-7-years-160715008176> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Fire-Safety-Officer-PVR-LIMITED-Bengaluru-Bangalore-1-to-5-years-160715008187> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:40 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Fire-Safety-Officer-PVR-LIMITED-Bengaluru-Bangalore-1-to-5-years-160715008187> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Opportunity-for-Windows-Vmware-Admin-Bangalore-walk-in--US-Software-Service-Group-Bengaluru-Bangalore-Chennai-Hyderabad-Secunderabad-3-to-8-years-160715008205> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:40 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Opportunity-for-Windows-Vmware-Admin-Bangalore-walk-in--US-Software-Service-Group-Bengaluru-Bangalore-Chennai-Hyderabad-Secunderabad-3-to-8-years-160715008205> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-SAP-TAO-Testing-Engineers-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008228> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:40 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-SAP-TAO-Testing-Engineers-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008228> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
ERROR:scrapy.core.scraper:Error processing {'company': u'Technosoft Global Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 535719),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p> Hi,</p> <p> <br/> </p> <p> There is an job opening with Technosoft Corporation for Clinical Research.</p> <p> <br/> </p> <p> Skill:Clinical data management, real world late phase, Clinical care options, Record Index Management.<br/> </p> <p> \xa0</p> <p> Job location:Bangalore</p> <p> <br/> </p> <p> Walkin Date:13th July\xa02015-17th July 2015</p> <p> Time:9am to 5pm</p> <p> Venue:Cessna Business Park</p> <p> Embassy Tech Square,</p> <p> Signet building west wing,</p> <p> 3rd floor,Kadubeesanahalli,</p> <p> Marathalli</p> <p> Landmark:New Horizon College</p> <p> Contact Persons : Meena / Deepika<br/> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Attractive</p><p>&#13;\n\t\t\tIndustry: Pharma / Biotech / Clinical Research</p><p>&#13;\n\t\t\tFunctional Area: Medical, Healthcare, R&amp;D, Pharmaceuticals, Biotechnology</p><p>&#13;\n\t\t\tRole Category: Clinical Research Associate/Scientist</p><p>&#13;\n\t\t\tRole: Clinical Research Associate/Scientist</p><p>&#13;\n\t\t\tKeyskills: Clinical Research, Clinical Data Management, clinical data validation, pharmacovigilance, clinical programming</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Clinical Research Associate',
'url': 'http://jobsearch.naukri.com/job-listings-Clinical-Research-Associate-Technosoft-Global-Services-Pvt-Ltd-Bengaluru-Bangalore-1-to-3-years-250615003735'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:40 [scrapy] ERROR: Error processing {'company': u'Technosoft Global Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 535719),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p> Hi,</p> <p> <br/> </p> <p> There is an job opening with Technosoft Corporation for Clinical Research.</p> <p> <br/> </p> <p> Skill:Clinical data management, real world late phase, Clinical care options, Record Index Management.<br/> </p> <p> \xa0</p> <p> Job location:Bangalore</p> <p> <br/> </p> <p> Walkin Date:13th July\xa02015-17th July 2015</p> <p> Time:9am to 5pm</p> <p> Venue:Cessna Business Park</p> <p> Embassy Tech Square,</p> <p> Signet building west wing,</p> <p> 3rd floor,Kadubeesanahalli,</p> <p> Marathalli</p> <p> Landmark:New Horizon College</p> <p> Contact Persons : Meena / Deepika<br/> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Attractive</p><p>&#13;\n\t\t\tIndustry: Pharma / Biotech / Clinical Research</p><p>&#13;\n\t\t\tFunctional Area: Medical, Healthcare, R&amp;D, Pharmaceuticals, Biotechnology</p><p>&#13;\n\t\t\tRole Category: Clinical Research Associate/Scientist</p><p>&#13;\n\t\t\tRole: Clinical Research Associate/Scientist</p><p>&#13;\n\t\t\tKeyskills: Clinical Research, Clinical Data Management, clinical data validation, pharmacovigilance, clinical programming</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Clinical Research Associate',
'url': 'http://jobsearch.naukri.com/job-listings-Clinical-Research-Associate-Technosoft-Global-Services-Pvt-Ltd-Bengaluru-Bangalore-1-to-3-years-250615003735'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Technosoft Global Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 562454),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p align="left"> <strong> Greetings from Technosoft Corporation</strong> <br/> <br/> <strong> Experience:</strong> 2-4 Years<br/> <br/> <strong> Job Location</strong> : Bangalore</p> <p align="left"> <br/> </p> <p align="left"> <strong> Walk-in Date:</strong> 17th July\xa0 2015 from 9AM onwards</p> <p align="left"> <br/> </p> <p align="left"> <br/> <br/> <strong> Job Description:</strong> </p> <p align="left"> <br/> </p> <p align="left"> </p> <p> 1.\tExcellent Communication Skills</p> <p> 2. Good exposure invoice process, payments.<br/> <br/> </p> <p align="left"> Interested candidates can come on the below venue-</p> <p align="left"> <strong> Venue:</strong> </p> <p align="left"> <br/> </p> <p align="left"> Technosoft Corporation<br/> Embassy Tech Square,<br/> Signet building, West wing,<br/> 3rd floor, Kadubeesanahalli,<br/> Sarjapur Marathalli Outer Ring Road,<br/> Bangalore-560 103. <br/> <br/> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Attractive</p><p>&#13;\n\t\t\tIndustry: IT-Software / Software Services</p><p>&#13;\n\t\t\tFunctional Area: Accounts, Finance, Tax, Company Secretary, Audit</p><p>&#13;\n\t\t\tRole Category: Accounts Executive/Accountant</p><p>&#13;\n\t\t\tRole: Accounts Executive/Accountant</p><p>&#13;\n\t\t\tKeyskills: Invoice Processing, Vendor Payments</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Walk In for Accounts Payable-invoice Process',
'url': 'http://jobsearch.naukri.com/job-listings-Walk-In-for-Accounts-Payable-invoice-Process-Technosoft-Global-Services-Pvt-Ltd-Bengaluru-Bangalore-2-to-3-years-130715007383'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:40 [scrapy] ERROR: Error processing {'company': u'Technosoft Global Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 562454),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p align="left"> <strong> Greetings from Technosoft Corporation</strong> <br/> <br/> <strong> Experience:</strong> 2-4 Years<br/> <br/> <strong> Job Location</strong> : Bangalore</p> <p align="left"> <br/> </p> <p align="left"> <strong> Walk-in Date:</strong> 17th July\xa0 2015 from 9AM onwards</p> <p align="left"> <br/> </p> <p align="left"> <br/> <br/> <strong> Job Description:</strong> </p> <p align="left"> <br/> </p> <p align="left"> </p> <p> 1.\tExcellent Communication Skills</p> <p> 2. Good exposure invoice process, payments.<br/> <br/> </p> <p align="left"> Interested candidates can come on the below venue-</p> <p align="left"> <strong> Venue:</strong> </p> <p align="left"> <br/> </p> <p align="left"> Technosoft Corporation<br/> Embassy Tech Square,<br/> Signet building, West wing,<br/> 3rd floor, Kadubeesanahalli,<br/> Sarjapur Marathalli Outer Ring Road,<br/> Bangalore-560 103. <br/> <br/> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Attractive</p><p>&#13;\n\t\t\tIndustry: IT-Software / Software Services</p><p>&#13;\n\t\t\tFunctional Area: Accounts, Finance, Tax, Company Secretary, Audit</p><p>&#13;\n\t\t\tRole Category: Accounts Executive/Accountant</p><p>&#13;\n\t\t\tRole: Accounts Executive/Accountant</p><p>&#13;\n\t\t\tKeyskills: Invoice Processing, Vendor Payments</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Walk In for Accounts Payable-invoice Process',
'url': 'http://jobsearch.naukri.com/job-listings-Walk-In-for-Accounts-Payable-invoice-Process-Technosoft-Global-Services-Pvt-Ltd-Bengaluru-Bangalore-2-to-3-years-130715007383'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'PVR LIMITED',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 588829),
'description': [u'<html><body><div><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">Job Location -Bangalore-VR Mall<br/> <br/> Handling Customers, Solving the queries, Taking feedback<br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: Service Change<br/>&#13;\n\t\t\tIndustry: Media / Entertainment / Internet<br/>&#13;\n\t\t\tFunctional Area: Hotels, Restaurants<br/>&#13;\n\t\t\tRole Category: Front Office/Guest Relations Executive/Manager<br/>&#13;\n\t\t\tRole: Front Office/Guest Relations Executive/Manager<br/>&#13;\n\t\t\tKeyskills: Customer Handling, Guest Relation Executive, front office executive , guest relation officer</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, BHM - Hotel Management <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Guest Relation Executive',
'url': 'http://jobsearch.naukri.com/job-listings-Guest-Relation-Executive-PVR-LIMITED-Bengaluru-Bangalore-0-to-3-years-160715008095'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:40 [scrapy] ERROR: Error processing {'company': u'PVR LIMITED',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 40, 588829),
'description': [u'<html><body><div><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">Job Location -Bangalore-VR Mall<br/> <br/> Handling Customers, Solving the queries, Taking feedback<br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: Service Change<br/>&#13;\n\t\t\tIndustry: Media / Entertainment / Internet<br/>&#13;\n\t\t\tFunctional Area: Hotels, Restaurants<br/>&#13;\n\t\t\tRole Category: Front Office/Guest Relations Executive/Manager<br/>&#13;\n\t\t\tRole: Front Office/Guest Relations Executive/Manager<br/>&#13;\n\t\t\tKeyskills: Customer Handling, Guest Relation Executive, front office executive , guest relation officer</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, BHM - Hotel Management <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Guest Relation Executive',
'url': 'http://jobsearch.naukri.com/job-listings-Guest-Relation-Executive-PVR-LIMITED-Bengaluru-Bangalore-0-to-3-years-160715008095'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Metropolis Healthcare Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 41, 462955),
'description': [u'\t<p>Job description:<br />\n1. Assist the QA Manager with implementing and maintaining the quality system.<br />\n2. Assist with preparation, issuance, amendment and maintenance of quality management system documentation, such as procedures, forms, etc. <br />\n3. Assist in the implementation and maintenance of record control and archiving procedures. <br />\n4. Produce and submit reports as directed by the QA Manager <br />\n5. Assist in internal and external audits to the latest <span class="caps">ISO</span><br />\n6. Performing microbiological analysis of human samples.<br />\n7. Preparation of reports.<br />\n8. Documentation and Maintaining of analysis records.<br />\n9. To maintain calibration records of all the instruments in QC lab<br />\n10. Develop, prepare and maintain Standard Operating Procedures (<span class="caps">SOP</span>) and test methods for all routine testing in the laboratory.<br />\n11. Validation of all microbiological test methods including writing protocols and validation reports.<br />\n12. Maintain strict and accurate quality control documentation of all test procedures and results.<br />\n13. Train and evaluate new staff on <span class="caps">SOP</span> and testing procedures.<br />\n14. Investigate laboratory Out-of Specification results and assist with corrective and preventive actions.<br />\n15. Assist in investigation of deviations, non-conformances and complaints etc.</p>\n\n\t<p>Salary: 80,000 &#8211; 2,25,000 P.A </p>\n\n\t<p>Industry: Medical / Healthcare / Hospitals </p>\n\n\t<p>Functional Area: Medical , Healthcare , R&D , Pharmaceuticals , Biotechnology </p>\n\n\t<p>Role Category:Medical Professional</p>\n\n\t<p>Role:Lab Technician/Medical Technician/Lab Staff</p>\n\n\t<p>Keyskills <br />\nQA Management Quality Control QC Quality Management Microbiological Analysis Testing Standard Operating Procedures External Audit <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'0 - 3 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 41, 462895),
'salary': u'80,000 - 2,25,000 P.A',
'skills': [u'Quality Control',
u'QC',
u'Quality Management',
u'Testing',
u'External Audit'],
'title': u'Quality Control Officer',
'url': 'http://jobsearch.naukri.com/job-listings-Quality-Control-Officer-Metropolis-Healthcare-Limited-Bengaluru-Bangalore-0-to-3-years-160715008222'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:41 [scrapy] ERROR: Error processing {'company': u'Metropolis Healthcare Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 41, 462955),
'description': [u'\t<p>Job description:<br />\n1. Assist the QA Manager with implementing and maintaining the quality system.<br />\n2. Assist with preparation, issuance, amendment and maintenance of quality management system documentation, such as procedures, forms, etc. <br />\n3. Assist in the implementation and maintenance of record control and archiving procedures. <br />\n4. Produce and submit reports as directed by the QA Manager <br />\n5. Assist in internal and external audits to the latest <span class="caps">ISO</span><br />\n6. Performing microbiological analysis of human samples.<br />\n7. Preparation of reports.<br />\n8. Documentation and Maintaining of analysis records.<br />\n9. To maintain calibration records of all the instruments in QC lab<br />\n10. Develop, prepare and maintain Standard Operating Procedures (<span class="caps">SOP</span>) and test methods for all routine testing in the laboratory.<br />\n11. Validation of all microbiological test methods including writing protocols and validation reports.<br />\n12. Maintain strict and accurate quality control documentation of all test procedures and results.<br />\n13. Train and evaluate new staff on <span class="caps">SOP</span> and testing procedures.<br />\n14. Investigate laboratory Out-of Specification results and assist with corrective and preventive actions.<br />\n15. Assist in investigation of deviations, non-conformances and complaints etc.</p>\n\n\t<p>Salary: 80,000 &#8211; 2,25,000 P.A </p>\n\n\t<p>Industry: Medical / Healthcare / Hospitals </p>\n\n\t<p>Functional Area: Medical , Healthcare , R&D , Pharmaceuticals , Biotechnology </p>\n\n\t<p>Role Category:Medical Professional</p>\n\n\t<p>Role:Lab Technician/Medical Technician/Lab Staff</p>\n\n\t<p>Keyskills <br />\nQA Management Quality Control QC Quality Management Microbiological Analysis Testing Standard Operating Procedures External Audit <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'0 - 3 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 41, 462895),
'salary': u'80,000 - 2,25,000 P.A',
'skills': [u'Quality Control',
u'QC',
u'Quality Management',
u'Testing',
u'External Audit'],
'title': u'Quality Control Officer',
'url': 'http://jobsearch.naukri.com/job-listings-Quality-Control-Officer-Metropolis-Healthcare-Limited-Bengaluru-Bangalore-0-to-3-years-160715008222'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-SAP-TAO-Testing-Lead-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-6-to-8-years-160715008287> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-SAP-TAO-Testing-Lead-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-6-to-8-years-160715008287> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opening-For-Big-Data-Technology-Lead-prod-Engg-Hadoop-Kulaja-Services-LLP-Bengaluru-Bangalore-6-to-8-years-160715008160> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opening-For-Big-Data-Technology-Lead-prod-Engg-Hadoop-Kulaja-Services-LLP-Bengaluru-Bangalore-6-to-8-years-160715008160> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Factory-Manager-Production-In-charge-food-Dried-and-Fresh-and-pack-SRI-RAJARAJESHWARI-AND-CO--Bengaluru-Bangalore-6-to-11-years-160715008288> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Factory-Manager-Production-In-charge-food-Dried-and-Fresh-and-pack-SRI-RAJARAJESHWARI-AND-CO--Bengaluru-Bangalore-6-to-11-years-160715008288> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-PMC-Head-STANTON-CHASE-INTERNATIONAL-PRIVATE-LIMITED-Bengaluru-Bangalore-Mumbai-Chennai-15-to-20-years-160715008296> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-PMC-Head-STANTON-CHASE-INTERNATIONAL-PRIVATE-LIMITED-Bengaluru-Bangalore-Mumbai-Chennai-15-to-20-years-160715008296> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opening-for-Messaging-Admin-for-Bangalore-Chennai-Experis-IT-Private-Limited-Bengaluru-Bangalore-5-to-8-years-160715008232> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opening-for-Messaging-Admin-for-Bangalore-Chennai-Experis-IT-Private-Limited-Bengaluru-Bangalore-5-to-8-years-160715008232> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IT-Freshers-C-c-Developers-2015-2014-Batch-DCS-Bengaluru-Bangalore-0-to-1-years-160715008308> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IT-Freshers-C-c-Developers-2015-2014-Batch-DCS-Bengaluru-Bangalore-0-to-1-years-160715008308> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
ERROR:scrapy.core.scraper:Error processing {'company': u'Akamai Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 43, 20276),
'description': [u'\t<p>About the Team </p>\n\n\t<p>The Training team is responsible for deploying diverse learning methods that empower and encourage employees to learn on a continuous basis, transform themselves into world class professionals &amp; apply their knowledge to the fullest potential. As a Senior Instructional Designer you will work closely with project managers and employees to help capture learning needs and offer learning solutions within a highly dynamic working environment. You will be responsible for leading the planning, analysis, design, development, deployment and evaluation of learning materials for Akamai University</p>\n\n\t<p>Responsibilities </p>\n\n\t<p>Work closely with the functional teams to manage the development, and delivery of technical elearnings and classroom trainings as part of the <span class="caps">GSSM</span> Educations solution, ensuring optimum service in accordance with agreed performance measures. Analyze learning needs, determine project goals, learning objectives, and performance measurements by collaborating with subject matter experts and project managers Design and develop learning content using instructional design strategies in a variety of methods including instructor-led, web-based and virtual training Work with graphic designer/sound designer/animator and software engineers to develop program elements Review the technical design outlines and storyboards developed by other team members for completeness, compliance with standards, and consistency with the detailed design Coordinate project activities between all disciplines including content design/development, graphics design/development, QA, and hosting on the learning management system Schedule project status meetings with stakeholders to report status including estimates to complete work; identify potential risks and recommendations for mitigation Provide coaching to team members on implementing internal processes, using content development best practices, and improving quality metrics Administer pilots to evaluate and revise training materials <br />\nQualification </p>\n\n\t<p>Concrete knowledge of Instructional Design theories and practices Prior experience (6-8 yrs) in developing technical trainings and labs Efficient and comfortable in interacting with geographically diverse subject matter experts and project team Exhibit strong communication and interpersonal skills Multi-tasking skills, organizational ability and attention to detail Knowledge of graphic design elements appropriate for online instruction Knowledge of Articulate, and Adobe&#8217;s training design products including Flash, Dream Weaver and Captivate The Training team is responsible for deploying diverse learning methods that empower and encourage employees to learn on a continuous basis, transform themselves into world class professionals &amp; apply their knowledge to the fullest potential. As a Senior Instructional Designer you will work closely with project managers and employees to help capture learning needs and offer learning solutions within a highly dynamic working environment. You will be responsible for leading the planning, analysis, design, development, deployment and evaluation of learning materials for Akamai University <br />\nResponsibilities</p>\n\n\t<p>- Work closely with the functional teams to manage the development, and delivery of technical elearnings and classroom trainings as part of the <span class="caps">GSSM</span> Educations solution, ensuring optimum service in accordance with agreed performance measures. &#8211; Analyze learning needs, determine project goals, learning objectives, and performance measurements by collaborating with subject matter experts and project managers &#8211; Design and develop learning content using instructional design strategies in a variety of methods including instructor-led, web-based and virtual training &#8211; Work with graphic designer/sound designer/animator and software engineers to develop program elements &#8211; Review the technical design outlines and storyboards developed by other team members for completeness, compliance with standards, and consistency with the detailed design &#8211; Coordinate project activities between all disciplines including content design/development, graphics design/development, QA, and hosting on the learning management system &#8211; Schedule project status meetings with stakeholders to report status including estimates to complete work; identify potential risks and recommendations for mitigation &#8211; Provide coaching to team members on implementing internal processes, using content development best practices, and improving quality metrics &#8211; Administer pilots to evaluate and revise training materials</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Embedded , <span class="caps">EDA</span> , <span class="caps">VLSI</span> , <span class="caps">ASIC</span> , Chip Design </p>\n\n\t<p>Role Category:QA/Testing/Documentation</p>\n\n\t<p>Role:Instructional Designer</p>\n\n\t<p>Keyskills <br />\nInstructional Design Content Development Animation Technical Design Detail Design Design Development Quality Improvement Graphic Designing Instructional Designer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate</p>\n\n\t<p>PG:Any Postgraduate</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Qualification &#8211; Concrete knowledge of Instructional Design theories and practices &#8211; Prior experience (8-10 yrs) in developing technical trainings and labs &#8211; Efficient and comfortable in interacting with geographically diverse subject matter experts and project team &#8211; Exhibit strong communication and interpersonal skills &#8211; Multi-tasking skills, organizational ability and attention to detail &#8211; Knowledge of graphic design elements appropriate for online instruction &#8211; Knowledge of Articulate, and Adobe&#8217;s training design products including Flash, Dream Weaver and Captivate</p>'],
'exp': u'8 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 43, 20208),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Animation',
u'Technical Design',
u'Detail Design',
u'Design Development',
u'Quality Improvement'],
'title': u'Instructional Designer Senior',
'url': 'http://jobsearch.naukri.com/job-listings-Instructional-Designer-Senior-Akamai-Technologies-Bengaluru-Bangalore-8-to-10-years-090215002582'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:43 [scrapy] ERROR: Error processing {'company': u'Akamai Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 43, 20276),
'description': [u'\t<p>About the Team </p>\n\n\t<p>The Training team is responsible for deploying diverse learning methods that empower and encourage employees to learn on a continuous basis, transform themselves into world class professionals &amp; apply their knowledge to the fullest potential. As a Senior Instructional Designer you will work closely with project managers and employees to help capture learning needs and offer learning solutions within a highly dynamic working environment. You will be responsible for leading the planning, analysis, design, development, deployment and evaluation of learning materials for Akamai University</p>\n\n\t<p>Responsibilities </p>\n\n\t<p>Work closely with the functional teams to manage the development, and delivery of technical elearnings and classroom trainings as part of the <span class="caps">GSSM</span> Educations solution, ensuring optimum service in accordance with agreed performance measures. Analyze learning needs, determine project goals, learning objectives, and performance measurements by collaborating with subject matter experts and project managers Design and develop learning content using instructional design strategies in a variety of methods including instructor-led, web-based and virtual training Work with graphic designer/sound designer/animator and software engineers to develop program elements Review the technical design outlines and storyboards developed by other team members for completeness, compliance with standards, and consistency with the detailed design Coordinate project activities between all disciplines including content design/development, graphics design/development, QA, and hosting on the learning management system Schedule project status meetings with stakeholders to report status including estimates to complete work; identify potential risks and recommendations for mitigation Provide coaching to team members on implementing internal processes, using content development best practices, and improving quality metrics Administer pilots to evaluate and revise training materials <br />\nQualification </p>\n\n\t<p>Concrete knowledge of Instructional Design theories and practices Prior experience (6-8 yrs) in developing technical trainings and labs Efficient and comfortable in interacting with geographically diverse subject matter experts and project team Exhibit strong communication and interpersonal skills Multi-tasking skills, organizational ability and attention to detail Knowledge of graphic design elements appropriate for online instruction Knowledge of Articulate, and Adobe&#8217;s training design products including Flash, Dream Weaver and Captivate The Training team is responsible for deploying diverse learning methods that empower and encourage employees to learn on a continuous basis, transform themselves into world class professionals &amp; apply their knowledge to the fullest potential. As a Senior Instructional Designer you will work closely with project managers and employees to help capture learning needs and offer learning solutions within a highly dynamic working environment. You will be responsible for leading the planning, analysis, design, development, deployment and evaluation of learning materials for Akamai University <br />\nResponsibilities</p>\n\n\t<p>- Work closely with the functional teams to manage the development, and delivery of technical elearnings and classroom trainings as part of the <span class="caps">GSSM</span> Educations solution, ensuring optimum service in accordance with agreed performance measures. &#8211; Analyze learning needs, determine project goals, learning objectives, and performance measurements by collaborating with subject matter experts and project managers &#8211; Design and develop learning content using instructional design strategies in a variety of methods including instructor-led, web-based and virtual training &#8211; Work with graphic designer/sound designer/animator and software engineers to develop program elements &#8211; Review the technical design outlines and storyboards developed by other team members for completeness, compliance with standards, and consistency with the detailed design &#8211; Coordinate project activities between all disciplines including content design/development, graphics design/development, QA, and hosting on the learning management system &#8211; Schedule project status meetings with stakeholders to report status including estimates to complete work; identify potential risks and recommendations for mitigation &#8211; Provide coaching to team members on implementing internal processes, using content development best practices, and improving quality metrics &#8211; Administer pilots to evaluate and revise training materials</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Embedded , <span class="caps">EDA</span> , <span class="caps">VLSI</span> , <span class="caps">ASIC</span> , Chip Design </p>\n\n\t<p>Role Category:QA/Testing/Documentation</p>\n\n\t<p>Role:Instructional Designer</p>\n\n\t<p>Keyskills <br />\nInstructional Design Content Development Animation Technical Design Detail Design Design Development Quality Improvement Graphic Designing Instructional Designer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate</p>\n\n\t<p>PG:Any Postgraduate</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Qualification &#8211; Concrete knowledge of Instructional Design theories and practices &#8211; Prior experience (8-10 yrs) in developing technical trainings and labs &#8211; Efficient and comfortable in interacting with geographically diverse subject matter experts and project team &#8211; Exhibit strong communication and interpersonal skills &#8211; Multi-tasking skills, organizational ability and attention to detail &#8211; Knowledge of graphic design elements appropriate for online instruction &#8211; Knowledge of Articulate, and Adobe&#8217;s training design products including Flash, Dream Weaver and Captivate</p>'],
'exp': u'8 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 43, 20208),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Animation',
u'Technical Design',
u'Detail Design',
u'Design Development',
u'Quality Improvement'],
'title': u'Instructional Designer Senior',
'url': 'http://jobsearch.naukri.com/job-listings-Instructional-Designer-Senior-Akamai-Technologies-Bengaluru-Bangalore-8-to-10-years-090215002582'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Experis IT Private Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 44, 351281),
'description': [u'\t<p>Hi,</p>\n\n\t<p>Greetings of the day !!</p>\n\n\t<p>We have an urgent requirement for <span class="caps">BMC</span> Service Management(Mandatory)</p>\n\n\t<p>Minimum work experience:3 &#8211; 5 Years<br />\nLocation: Bangalore<br />\nMode : C2H</p>\n\n\t<p>Key skills required for the job are:</p>\n\n\t<p><span class="caps">BMC</span> Service Management(Mandatory)<br />\nAs a Senior Administrator, you should be able to handle first point escalation for all technical and process issues. Provide technical subject matter expertise wherever required. Ensure proper communication and quick resolution as a crisis manager. Plan and schedule Changes, Coordinating with different stakeholders. Perform <span class="caps">RCA</span> for Major Incidents related to his / her tower Follow quality / security process defined for the engagement. Perform Trend analysis, identify top few incidents and work with respective teams/individual to minimize the incidents, Hardware troubleshooting &amp; Vendor coordination Prepare Weekly and monthly status reports. Participate in business meetings with various stake holders on a need basis. Take corrective actions based on the customer satisfaction surveys. Work on the service improvement programs. Effort estimation/reviews on need basis for new projects. Training of new team members. Able to work on Knowledge acquisition and updates to related documents.</p>\n\n\t<p>If interested, pls share resumes to cshravanthi@experisindia.com</p>\n\n\t<p>Desired Profile Please refer to the Job description above Experience 3 &#8211; 5 Years Industry Type IT-Software / Software Services Role Software Developer Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG &#8211; Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: 3,00,000 &#8211; 8,00,000 P.A Location Bengaluru/Bangalore Keywords Service Management <span class="caps">BMC</span> service management Contact Kuhelli Santra</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Urgent Requirement for BMC Service Management(mandatory)',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Requirement-for-BMC-Service-Management-mandatory--Experis-IT-Private-Limited-Bengaluru-Bangalore-3-to-5-years-160715008156'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:44 [scrapy] ERROR: Error processing {'company': u'Experis IT Private Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 44, 351281),
'description': [u'\t<p>Hi,</p>\n\n\t<p>Greetings of the day !!</p>\n\n\t<p>We have an urgent requirement for <span class="caps">BMC</span> Service Management(Mandatory)</p>\n\n\t<p>Minimum work experience:3 &#8211; 5 Years<br />\nLocation: Bangalore<br />\nMode : C2H</p>\n\n\t<p>Key skills required for the job are:</p>\n\n\t<p><span class="caps">BMC</span> Service Management(Mandatory)<br />\nAs a Senior Administrator, you should be able to handle first point escalation for all technical and process issues. Provide technical subject matter expertise wherever required. Ensure proper communication and quick resolution as a crisis manager. Plan and schedule Changes, Coordinating with different stakeholders. Perform <span class="caps">RCA</span> for Major Incidents related to his / her tower Follow quality / security process defined for the engagement. Perform Trend analysis, identify top few incidents and work with respective teams/individual to minimize the incidents, Hardware troubleshooting &amp; Vendor coordination Prepare Weekly and monthly status reports. Participate in business meetings with various stake holders on a need basis. Take corrective actions based on the customer satisfaction surveys. Work on the service improvement programs. Effort estimation/reviews on need basis for new projects. Training of new team members. Able to work on Knowledge acquisition and updates to related documents.</p>\n\n\t<p>If interested, pls share resumes to cshravanthi@experisindia.com</p>\n\n\t<p>Desired Profile Please refer to the Job description above Experience 3 &#8211; 5 Years Industry Type IT-Software / Software Services Role Software Developer Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG &#8211; Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: 3,00,000 &#8211; 8,00,000 P.A Location Bengaluru/Bangalore Keywords Service Management <span class="caps">BMC</span> service management Contact Kuhelli Santra</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Urgent Requirement for BMC Service Management(mandatory)',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Requirement-for-BMC-Service-Management-mandatory--Experis-IT-Private-Limited-Bengaluru-Bangalore-3-to-5-years-160715008156'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'MAVEN INFO SOLUTIONS OPC PRIVATE LIMITED',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 220022),
'description': [u'\t<p>-Prepare Business Plan<br />\n-Interacting with Engineering Head / Manufacturing Head on technical support and commercial/pricing matters<br />\n-Periodically review distributor performance<br />\n-Conduct customer or training seminars <br />\n-Reporting to the President </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Other </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Regional Manager</p>\n\n\t<p>Keyskills <br />\nRegional Management Sales Business Design key account management Business Development Account Management Senior Management &#8211; Sales senior management &#8211; sales <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'15 - 18 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 219963),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Sales',
u'key account management',
u'Business Development',
u'Account Management'],
'title': u'Regional Manager',
'url': 'http://jobsearch.naukri.com/job-listings-Regional-Manager-MAVEN-INFO-SOLUTIONS-OPC-PRIVATE-LIMITED-Bengaluru-Bangalore-15-to-18-years-160715008162'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:45 [scrapy] ERROR: Error processing {'company': u'MAVEN INFO SOLUTIONS OPC PRIVATE LIMITED',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 220022),
'description': [u'\t<p>-Prepare Business Plan<br />\n-Interacting with Engineering Head / Manufacturing Head on technical support and commercial/pricing matters<br />\n-Periodically review distributor performance<br />\n-Conduct customer or training seminars <br />\n-Reporting to the President </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Other </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Regional Manager</p>\n\n\t<p>Keyskills <br />\nRegional Management Sales Business Design key account management Business Development Account Management Senior Management &#8211; Sales senior management &#8211; sales <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'15 - 18 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 219963),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Sales',
u'key account management',
u'Business Development',
u'Account Management'],
'title': u'Regional Manager',
'url': 'http://jobsearch.naukri.com/job-listings-Regional-Manager-MAVEN-INFO-SOLUTIONS-OPC-PRIVATE-LIMITED-Bengaluru-Bangalore-15-to-18-years-160715008162'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'US Service Group',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 952970),
'description': [u'\t<p>MS exchange admin<br />\nLevel-Level 1,Level 2,Level 3</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Network Administration , Security </p>\n\n\t<p>Role Category:Admin/Maintenance/Security/Datawarehousing</p>\n\n\t<p>Role:System Administrator</p>\n\n\t<p>Keyskills <br />\nMS Exchange microsoft exchange exchange server admin exchange server exchange admin md exchange <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore', u'Chennai', u'Hyderabad / Secunderabad'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 952910),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'MS Exchange',
u'microsoft exchange',
u'exchange server admin',
u'exchange server',
u'exchange admin'],
'title': u'MS Exchange',
'url': 'http://jobsearch.naukri.com/job-listings-MS-Exchange-US-Service-Group-Bengaluru-Bangalore-Chennai-Hyderabad-Secunderabad-2-to-7-years-160715008176'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:45 [scrapy] ERROR: Error processing {'company': u'US Service Group',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 952970),
'description': [u'\t<p>MS exchange admin<br />\nLevel-Level 1,Level 2,Level 3</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Network Administration , Security </p>\n\n\t<p>Role Category:Admin/Maintenance/Security/Datawarehousing</p>\n\n\t<p>Role:System Administrator</p>\n\n\t<p>Keyskills <br />\nMS Exchange microsoft exchange exchange server admin exchange server exchange admin md exchange <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore', u'Chennai', u'Hyderabad / Secunderabad'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 952910),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'MS Exchange',
u'microsoft exchange',
u'exchange server admin',
u'exchange server',
u'exchange admin'],
'title': u'MS Exchange',
'url': 'http://jobsearch.naukri.com/job-listings-MS-Exchange-US-Service-Group-Bengaluru-Bangalore-Chennai-Hyderabad-Secunderabad-2-to-7-years-160715008176'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'PVR LIMITED',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 980882),
'description': [u'<html><body><div><div id="apply_career" class="oh"><a title="Create a Job Alert" class="hidden-phone f12 lh30 fr" href="">Send me Jobs like this</a><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">Internal audit score <br/> Reporting of security and safety equipments defects timely.<br/> Correct bill submission on time every month<br/> Training &amp; Grooming done as laid out in manual (soft skill/fire drill, fire training, evacuation, emergency response )<br/> Reporting of incidents<br/> Legal compliance and documentations at site<br/> <br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: INR 2,00,000 - 2,50,000 P.A<br/>&#13;\n\t\t\tIndustry: Travel / Hotels / Restaurants / Airlines / Railways<br/>&#13;\n\t\t\tFunctional Area: Hotels, Restaurants<br/>&#13;\n\t\t\tRole Category: Fresher<br/>&#13;\n\t\t\tRole: Fresher<br/>&#13;\n\t\t\tKeyskills: Safety Officer Activities, Auditing, Fire Safety, Emergency Response, Legal Compliance, Internal Audit</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, Graduation Not Required <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20">&#13;\n\t\t\t<p class="cTitle f16 lh30">Company Profile</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ">PVR, a pioneer and a trailblazer in Multiplex development in India, is the largest cinema exhibition player in the country today. The company began its commercial operations in June 1997 with the launch of PVR Anupam in Saket, India\'s first multiplex. By introducing the multiplex concept in the country PVR Cinemas brought in a whole new paradigm shift to cinema viewing experience, high class seating, state of the art screens and audio visual systems. This catapulted the company to command a significant presence in New Delhi, NCR &amp;amp;amp;amp; Bangalore, Indore, Lucknow, Aurangabad, Mumbai making it the larget cinema exhibition chain in the country.</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<p class="toggleBtn f14 lh30" id="contact">View Contact Details<span>+</span></p> &#13;\n\t\t\t</div>&#13;\n&#13;\n\t\t\t&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Fire & Safety Officer',
'url': 'http://jobsearch.naukri.com/job-listings-Fire-Safety-Officer-PVR-LIMITED-Bengaluru-Bangalore-1-to-5-years-160715008187'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:45 [scrapy] ERROR: Error processing {'company': u'PVR LIMITED',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 45, 980882),
'description': [u'<html><body><div><div id="apply_career" class="oh"><a title="Create a Job Alert" class="hidden-phone f12 lh30 fr" href="">Send me Jobs like this</a><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">Internal audit score <br/> Reporting of security and safety equipments defects timely.<br/> Correct bill submission on time every month<br/> Training &amp; Grooming done as laid out in manual (soft skill/fire drill, fire training, evacuation, emergency response )<br/> Reporting of incidents<br/> Legal compliance and documentations at site<br/> <br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: INR 2,00,000 - 2,50,000 P.A<br/>&#13;\n\t\t\tIndustry: Travel / Hotels / Restaurants / Airlines / Railways<br/>&#13;\n\t\t\tFunctional Area: Hotels, Restaurants<br/>&#13;\n\t\t\tRole Category: Fresher<br/>&#13;\n\t\t\tRole: Fresher<br/>&#13;\n\t\t\tKeyskills: Safety Officer Activities, Auditing, Fire Safety, Emergency Response, Legal Compliance, Internal Audit</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, Graduation Not Required <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20">&#13;\n\t\t\t<p class="cTitle f16 lh30">Company Profile</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ">PVR, a pioneer and a trailblazer in Multiplex development in India, is the largest cinema exhibition player in the country today. The company began its commercial operations in June 1997 with the launch of PVR Anupam in Saket, India\'s first multiplex. By introducing the multiplex concept in the country PVR Cinemas brought in a whole new paradigm shift to cinema viewing experience, high class seating, state of the art screens and audio visual systems. This catapulted the company to command a significant presence in New Delhi, NCR &amp;amp;amp;amp; Bangalore, Indore, Lucknow, Aurangabad, Mumbai making it the larget cinema exhibition chain in the country.</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<p class="toggleBtn f14 lh30" id="contact">View Contact Details<span>+</span></p> &#13;\n\t\t\t</div>&#13;\n&#13;\n\t\t\t&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Fire & Safety Officer',
'url': 'http://jobsearch.naukri.com/job-listings-Fire-Safety-Officer-PVR-LIMITED-Bengaluru-Bangalore-1-to-5-years-160715008187'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'US Software Service Group',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 46, 800911),
'description': [u'\t<p>Hi ,</p>\n\n\t<p>We are on the lookout for a Windows/ <span class="caps">VMW</span>are Admin to work for one of our Client located at Bangalore</p>\n\n\t<p>Designation: Windows/ <span class="caps">VMW</span> are Admin<br />\nLocation: Bangalore/ch ennai</p>\n\n\t<p>Interview Location::bangalore /chennai/ hyderabad/ delhi</p>\n\n\t<p>We are conducting weekend drive this weekend for Windows/ <span class="caps">VMW</span>are position this weekend.</p>\n\n\t<p>Responsibilities:- <br />\nWindows/ <span class="caps">VMW</span>are/Linux<br />\n2+ yrs of experience<br />\nExperience on the server side.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; System Programming </p>\n\n\t<p>Role Category:Admin/Maintenance/Security/Datawarehousing</p>\n\n\t<p>Role:System Administrator</p>\n\n\t<p>Keyskills <br />\nWindows Vmware vmware admin citrix intel virtualization active directory Server Monitoring server execution <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Bengaluru/Bangalore', u'Chennai', u'Hyderabad / Secunderabad'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 46, 800847),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Windows',
u'Vmware',
u'vmware admin',
u'citrix',
u'virtualization',
u'active directory',
u'Server Monitoring'],
'title': u'Job | Opportunity for Windows/ Vmware Admin @ Bangalore (walk-in)',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Opportunity-for-Windows-Vmware-Admin-Bangalore-walk-in--US-Software-Service-Group-Bengaluru-Bangalore-Chennai-Hyderabad-Secunderabad-3-to-8-years-160715008205'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:46 [scrapy] ERROR: Error processing {'company': u'US Software Service Group',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 46, 800911),
'description': [u'\t<p>Hi ,</p>\n\n\t<p>We are on the lookout for a Windows/ <span class="caps">VMW</span>are Admin to work for one of our Client located at Bangalore</p>\n\n\t<p>Designation: Windows/ <span class="caps">VMW</span> are Admin<br />\nLocation: Bangalore/ch ennai</p>\n\n\t<p>Interview Location::bangalore /chennai/ hyderabad/ delhi</p>\n\n\t<p>We are conducting weekend drive this weekend for Windows/ <span class="caps">VMW</span>are position this weekend.</p>\n\n\t<p>Responsibilities:- <br />\nWindows/ <span class="caps">VMW</span>are/Linux<br />\n2+ yrs of experience<br />\nExperience on the server side.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; System Programming </p>\n\n\t<p>Role Category:Admin/Maintenance/Security/Datawarehousing</p>\n\n\t<p>Role:System Administrator</p>\n\n\t<p>Keyskills <br />\nWindows Vmware vmware admin citrix intel virtualization active directory Server Monitoring server execution <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Bengaluru/Bangalore', u'Chennai', u'Hyderabad / Secunderabad'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 46, 800847),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Windows',
u'Vmware',
u'vmware admin',
u'citrix',
u'virtualization',
u'active directory',
u'Server Monitoring'],
'title': u'Job | Opportunity for Windows/ Vmware Admin @ Bangalore (walk-in)',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Opportunity-for-Windows-Vmware-Admin-Bangalore-walk-in--US-Software-Service-Group-Bengaluru-Bangalore-Chennai-Hyderabad-Secunderabad-3-to-8-years-160715008205'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 47, 839472),
'description': [u'\t<p>Job Type &#8211; Contract (6 months)<br />\nWork Location &#8211; Client Location, Bangalore<br />\nExperience &#8211; 3-6 Years <br />\nJob Description &#8211; &#8211; Strong hands on experience on <span class="caps">SAP</span> <span class="caps">TAO</span> (Test Accelerator and Optimizer) and related ecosystem including <span class="caps">SOLMAN</span>, HP QC, HP <span class="caps">QTP</span> etc. &#8211; Ability to plan for <span class="caps">SAP</span> automation, script test cases and manage the test suites using HP QC, <span class="caps">BPT</span>, <span class="caps">QTP</span>. &#8211; Very good understanding of <span class="caps">SAP</span> testing methodologies, techniques. Should have project experience automating and deploying automation suites for large complex <span class="caps">SAP</span> roll outs. &#8211; Experience handling of Testing for migration projects is a big plus. &#8211; Excellent understanding of the <span class="caps">SAP</span> Testing landscape and test automation nuances around <span class="caps">SAP</span>. &#8211; Hands on experience working on Unix/Linux OS to the extent required for effective testing. &#8211; Hands on experience scripting using HP <span class="caps">QTP</span> (knowledge of equivalent tools is a huge plus.) &#8211; Strong in Quality Assurance fundamentals, QA processes, requirements understanding and QA life cycle. &#8211; Excellent communication, reporting and documentation ability.<br />\nResponsibilities &#8211; Design and implementation of test plans. &#8211; Work with Development Engineering to determine <span class="caps">SQA</span> strategy and ensure test coverage. &#8211; Writing test plans, end to end execution and reporting in a timely fashion &#8211; Developing metrics to track test progress. &#8211; Continuously improve <span class="caps">SQA</span> methodology, such as by increasing automation.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Testing Engineer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">SAPTAO</span> Testing <span class="caps">SAP</span> <span class="caps">TAO</span> Testing <span class="caps">SAPTAO</span> Tester <span class="caps">SAP</span> <span class="caps">TAO</span> Tester <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 47, 839414),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'SAP TAO Testing Engineers - Contract - Bangalore Location',
'url': 'http://jobsearch.naukri.com/job-listings-SAP-TAO-Testing-Engineers-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008228'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:47 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 47, 839472),
'description': [u'\t<p>Job Type &#8211; Contract (6 months)<br />\nWork Location &#8211; Client Location, Bangalore<br />\nExperience &#8211; 3-6 Years <br />\nJob Description &#8211; &#8211; Strong hands on experience on <span class="caps">SAP</span> <span class="caps">TAO</span> (Test Accelerator and Optimizer) and related ecosystem including <span class="caps">SOLMAN</span>, HP QC, HP <span class="caps">QTP</span> etc. &#8211; Ability to plan for <span class="caps">SAP</span> automation, script test cases and manage the test suites using HP QC, <span class="caps">BPT</span>, <span class="caps">QTP</span>. &#8211; Very good understanding of <span class="caps">SAP</span> testing methodologies, techniques. Should have project experience automating and deploying automation suites for large complex <span class="caps">SAP</span> roll outs. &#8211; Experience handling of Testing for migration projects is a big plus. &#8211; Excellent understanding of the <span class="caps">SAP</span> Testing landscape and test automation nuances around <span class="caps">SAP</span>. &#8211; Hands on experience working on Unix/Linux OS to the extent required for effective testing. &#8211; Hands on experience scripting using HP <span class="caps">QTP</span> (knowledge of equivalent tools is a huge plus.) &#8211; Strong in Quality Assurance fundamentals, QA processes, requirements understanding and QA life cycle. &#8211; Excellent communication, reporting and documentation ability.<br />\nResponsibilities &#8211; Design and implementation of test plans. &#8211; Work with Development Engineering to determine <span class="caps">SQA</span> strategy and ensure test coverage. &#8211; Writing test plans, end to end execution and reporting in a timely fashion &#8211; Developing metrics to track test progress. &#8211; Continuously improve <span class="caps">SQA</span> methodology, such as by increasing automation.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Testing Engineer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">SAPTAO</span> Testing <span class="caps">SAP</span> <span class="caps">TAO</span> Testing <span class="caps">SAPTAO</span> Tester <span class="caps">SAP</span> <span class="caps">TAO</span> Tester <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 47, 839414),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'SAP TAO Testing Engineers - Contract - Bangalore Location',
'url': 'http://jobsearch.naukri.com/job-listings-SAP-TAO-Testing-Engineers-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008228'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IT-Freshers-Java-Developers-2015-2014-Batch-DCS-Bengaluru-Bangalore-0-to-1-years-160715008316> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:47 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IT-Freshers-Java-Developers-2015-2014-Batch-DCS-Bengaluru-Bangalore-0-to-1-years-160715008316> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Area-Sales-Executive-Aguai-Solutions-Bengaluru-Bangalore-0-to-1-years-160715008326> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:47 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Area-Sales-Executive-Aguai-Solutions-Bengaluru-Bangalore-0-to-1-years-160715008326> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Accounts-Executive-GSS-HR-Solutions-Bengaluru-Bangalore-2-to-6-years-160715008335> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:47 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Accounts-Executive-GSS-HR-Solutions-Bengaluru-Bangalore-2-to-6-years-160715008335> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Sugar-CRM-Developer-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008340> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:47 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Sugar-CRM-Developer-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008340> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Execellent-Openings-in-Bangalore--Speed-Jobs-Consultancy-Bengaluru-Bangalore-4-to-9-years-160715008174> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:47 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Execellent-Openings-in-Bangalore--Speed-Jobs-Consultancy-Bengaluru-Bangalore-4-to-9-years-160715008174> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-VB-Excel-with-Macros-Contract-Position-for-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-7-years-080715001813> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:47 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-VB-Excel-with-Macros-Contract-Position-for-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-7-years-080715001813> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 48, 965840),
'description': [u'\t<p>Job Type &#8211; Contract (6 months)<br />\nWork Location &#8211; Client Location, Bangalore<br />\nExperience &#8211; 6-8 Years <br />\nJob Description &#8211; &#8211; Strong hands on experience on <span class="caps">SAP</span> <span class="caps">TAO</span> (Test Accelerator and Optimizer) and related ecosystem including <span class="caps">SOLMAN</span>, HP QC, HP <span class="caps">QTP</span> etc. &#8211; Ability to plan for <span class="caps">SAP</span> automation, script test cases and manage the test suites using HP QC, <span class="caps">BPT</span>, <span class="caps">QTP</span>. &#8211; Very good understanding of <span class="caps">SAP</span> testing methodologies, techniques. Should have project experience automating and deploying automation suites for large complex <span class="caps">SAP</span> roll outs. &#8211; Experience handling of Testing for migration projects is a big plus. &#8211; Should have ability to guide a team of <span class="caps">SAP</span> Test engineers to successful quality outcomes. &#8211; Excellent understanding of the <span class="caps">SAP</span> Testing landscape and test automation nuances around <span class="caps">SAP</span>. &#8211; Should have exposure to Unix/Linux OS to the extent required for effective testing. &#8211; Hands on experience scripting using HP <span class="caps">QTP</span>, knowledge of equivalent tools is a huge plus. &#8211; Strong in Quality Assurance fundamentals, QA processes, requirements understanding and QA life cycle. &#8211; Excellent stakeholder management, communication, reporting and documentation ability<br />\nResponsibilities &#8211; Design and implementation of test plans. &#8211; Work with Development Engineering to determine <span class="caps">SQA</span> strategy and ensure test coverage. &#8211; Writing test plans, end to end execution and reporting in a timely fashion &#8211; Developing metrics to track test progress. &#8211; Continuously improve <span class="caps">SQA</span> methodology, such as by increasing automation.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\n<span class="caps">SAP</span> <span class="caps">TAO</span> <span class="caps">SAP</span> <span class="caps">TAO</span> Testing <span class="caps">SAPTAO</span> Testing <span class="caps">SAP</span> <span class="caps">TAO</span> Tester <span class="caps">SAPTAO</span> Tester sap tao test engineer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'6 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 48, 965763),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'SAP TAO'],
'title': u'SAP TAO Testing Lead - Contract - Bangalore Location',
'url': 'http://jobsearch.naukri.com/job-listings-SAP-TAO-Testing-Lead-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-6-to-8-years-160715008287'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:48 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 48, 965840),
'description': [u'\t<p>Job Type &#8211; Contract (6 months)<br />\nWork Location &#8211; Client Location, Bangalore<br />\nExperience &#8211; 6-8 Years <br />\nJob Description &#8211; &#8211; Strong hands on experience on <span class="caps">SAP</span> <span class="caps">TAO</span> (Test Accelerator and Optimizer) and related ecosystem including <span class="caps">SOLMAN</span>, HP QC, HP <span class="caps">QTP</span> etc. &#8211; Ability to plan for <span class="caps">SAP</span> automation, script test cases and manage the test suites using HP QC, <span class="caps">BPT</span>, <span class="caps">QTP</span>. &#8211; Very good understanding of <span class="caps">SAP</span> testing methodologies, techniques. Should have project experience automating and deploying automation suites for large complex <span class="caps">SAP</span> roll outs. &#8211; Experience handling of Testing for migration projects is a big plus. &#8211; Should have ability to guide a team of <span class="caps">SAP</span> Test engineers to successful quality outcomes. &#8211; Excellent understanding of the <span class="caps">SAP</span> Testing landscape and test automation nuances around <span class="caps">SAP</span>. &#8211; Should have exposure to Unix/Linux OS to the extent required for effective testing. &#8211; Hands on experience scripting using HP <span class="caps">QTP</span>, knowledge of equivalent tools is a huge plus. &#8211; Strong in Quality Assurance fundamentals, QA processes, requirements understanding and QA life cycle. &#8211; Excellent stakeholder management, communication, reporting and documentation ability<br />\nResponsibilities &#8211; Design and implementation of test plans. &#8211; Work with Development Engineering to determine <span class="caps">SQA</span> strategy and ensure test coverage. &#8211; Writing test plans, end to end execution and reporting in a timely fashion &#8211; Developing metrics to track test progress. &#8211; Continuously improve <span class="caps">SQA</span> methodology, such as by increasing automation.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\n<span class="caps">SAP</span> <span class="caps">TAO</span> <span class="caps">SAP</span> <span class="caps">TAO</span> Testing <span class="caps">SAPTAO</span> Testing <span class="caps">SAP</span> <span class="caps">TAO</span> Tester <span class="caps">SAPTAO</span> Tester sap tao test engineer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'6 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 48, 965763),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'SAP TAO'],
'title': u'SAP TAO Testing Lead - Contract - Bangalore Location',
'url': 'http://jobsearch.naukri.com/job-listings-SAP-TAO-Testing-Lead-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-6-to-8-years-160715008287'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Kulaja Services LLP',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 49, 846655),
'description': [u'\t<p>1.Good understanding of the overall Enterprise Information Management space, BI &amp; Reporting Architecture and the emerging trends<br />\n2.Good understanding of the emerging Big Data Technologies Tools,Text Analytics &amp; <span class="caps">NLP</span><br />\n3.Hadoop With Java Open Source <span class="caps">SDLC</span> </p>\n\n\t<p>Salary: 8,00,000 &#8211; 10,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nCore Java <span class="caps">SDLC</span> Hadoop information management space BI &amp; Reporting Architecture Team lead Software Devloper sr.software developer java developer hadoop developer map reduce <span class="caps">NLP</span> design patterns machine learning Number Crunching <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'6 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 49, 846592),
'salary': u'8,00,000 - 10,00,000 P.A',
'skills': [u'Core Java',
u'SDLC',
u'sr.software developer',
u'design patterns',
u'machine learning'],
'title': u'Opening For Big Data Technology Lead (prod. Engg)- Hadoop',
'url': 'http://jobsearch.naukri.com/job-listings-Opening-For-Big-Data-Technology-Lead-prod-Engg-Hadoop-Kulaja-Services-LLP-Bengaluru-Bangalore-6-to-8-years-160715008160'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:49 [scrapy] ERROR: Error processing {'company': u'Kulaja Services LLP',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 49, 846655),
'description': [u'\t<p>1.Good understanding of the overall Enterprise Information Management space, BI &amp; Reporting Architecture and the emerging trends<br />\n2.Good understanding of the emerging Big Data Technologies Tools,Text Analytics &amp; <span class="caps">NLP</span><br />\n3.Hadoop With Java Open Source <span class="caps">SDLC</span> </p>\n\n\t<p>Salary: 8,00,000 &#8211; 10,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nCore Java <span class="caps">SDLC</span> Hadoop information management space BI &amp; Reporting Architecture Team lead Software Devloper sr.software developer java developer hadoop developer map reduce <span class="caps">NLP</span> design patterns machine learning Number Crunching <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'6 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 49, 846592),
'salary': u'8,00,000 - 10,00,000 P.A',
'skills': [u'Core Java',
u'SDLC',
u'sr.software developer',
u'design patterns',
u'machine learning'],
'title': u'Opening For Big Data Technology Lead (prod. Engg)- Hadoop',
'url': 'http://jobsearch.naukri.com/job-listings-Opening-For-Big-Data-Technology-Lead-prod-Engg-Hadoop-Kulaja-Services-LLP-Bengaluru-Bangalore-6-to-8-years-160715008160'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'SRI RAJARAJESHWARI AND CO.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 50, 571443),
'description': [u'\t<p>Candidate would be expected to handle a factory/production unit with 150 laborer and high end machineries. The unit is certified for <span class="caps">ISO</span>/BRC so the factory in charge has to work in tandem with the QC in achieving /renewing the audit and certificatio </p>\n\n\t<p>Salary: <span class="caps">VERY</span> <span class="caps">GOOD</span> Salary <span class="caps">WITH</span> Other Benefits &#8211; Salary would commensurate to the qualification and experience </p>\n\n\t<p>Industry: <span class="caps">FMCG</span> / Foods / Beverage </p>\n\n\t<p>Functional Area: Production , Manufacturing , Maintenance </p>\n\n\t<p>Role Category:Production/Manufacturing/Maintenance</p>\n\n\t<p>Role:Production Manager</p>\n\n\t<p>Keyskills <br />\nProduction Management Factory Management plant management manufacturing management unit management singleton management manufacturing unit management works management factory project and manager <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Preference would be for a candidate who has worked in <span class="caps">FMCG</span> or food industry etc.,We expect candidate to have exposure in handling machine/machinery maintenance etc.,Capable of handling laborer and machineries and should be able to match the deliver</p>'],
'exp': u'6 - 11 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 50, 571384),
'salary': u'VERY GOOD Salary WITH Other Benefits - Salary would commensurate to the qualification and experience',
'skills': [u'Production Management'],
'title': u'Factory Manager / Production In-charge-food - Dried and Fresh and pack',
'url': 'http://jobsearch.naukri.com/job-listings-Factory-Manager-Production-In-charge-food-Dried-and-Fresh-and-pack-SRI-RAJARAJESHWARI-AND-CO--Bengaluru-Bangalore-6-to-11-years-160715008288'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:50 [scrapy] ERROR: Error processing {'company': u'SRI RAJARAJESHWARI AND CO.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 50, 571443),
'description': [u'\t<p>Candidate would be expected to handle a factory/production unit with 150 laborer and high end machineries. The unit is certified for <span class="caps">ISO</span>/BRC so the factory in charge has to work in tandem with the QC in achieving /renewing the audit and certificatio </p>\n\n\t<p>Salary: <span class="caps">VERY</span> <span class="caps">GOOD</span> Salary <span class="caps">WITH</span> Other Benefits &#8211; Salary would commensurate to the qualification and experience </p>\n\n\t<p>Industry: <span class="caps">FMCG</span> / Foods / Beverage </p>\n\n\t<p>Functional Area: Production , Manufacturing , Maintenance </p>\n\n\t<p>Role Category:Production/Manufacturing/Maintenance</p>\n\n\t<p>Role:Production Manager</p>\n\n\t<p>Keyskills <br />\nProduction Management Factory Management plant management manufacturing management unit management singleton management manufacturing unit management works management factory project and manager <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Preference would be for a candidate who has worked in <span class="caps">FMCG</span> or food industry etc.,We expect candidate to have exposure in handling machine/machinery maintenance etc.,Capable of handling laborer and machineries and should be able to match the deliver</p>'],
'exp': u'6 - 11 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 50, 571384),
'salary': u'VERY GOOD Salary WITH Other Benefits - Salary would commensurate to the qualification and experience',
'skills': [u'Production Management'],
'title': u'Factory Manager / Production In-charge-food - Dried and Fresh and pack',
'url': 'http://jobsearch.naukri.com/job-listings-Factory-Manager-Production-In-charge-food-Dried-and-Fresh-and-pack-SRI-RAJARAJESHWARI-AND-CO--Bengaluru-Bangalore-6-to-11-years-160715008288'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'STANTON CHASE INTERNATIONAL PRIVATE LIMITED',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 51, 299095),
'description': [u'\t<p><span class="caps">PMC</span> experience in either complex buildings like hotels, hospitals, industrial plants or in Infrastructure projects particularly highways design. Should possess knowledge of materials and finishes, knowledge of building services, proficient in MS Project and PrimaVera. Should be capable of handling several infrastructure projects. Will be preferred if he has knowledge of Buildings <span class="caps">PMC</span> Business and has executed several large campuses/complex projects involving all disciplines. Knowledge of <span class="caps">PMC</span> software is essential. Integrity, Inter personal skills and Good communication skills of paramount importance. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Construction / Engineering / Cement / Metals </p>\n\n\t<p>Functional Area: Other </p>\n\n\t<p>Role Category:Other</p>\n\n\t<p>Role:Other</p>\n\n\t<p>Keyskills <br />\nPrimavera MS Project Project Management Planning Construction Planning <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Civil</p>\n\n\t<p>PG:M.Tech &#8211; Any Specialization, Civil</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'15 - 20 yrs',
'location': [u'Bengaluru/Bangalore', u'Mumbai', u'Chennai'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 51, 299025),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Primavera',
u'MS Project',
u'Project Management',
u'Planning',
u'Construction Planning'],
'title': u'PMC Head',
'url': 'http://jobsearch.naukri.com/job-listings-PMC-Head-STANTON-CHASE-INTERNATIONAL-PRIVATE-LIMITED-Bengaluru-Bangalore-Mumbai-Chennai-15-to-20-years-160715008296'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:51 [scrapy] ERROR: Error processing {'company': u'STANTON CHASE INTERNATIONAL PRIVATE LIMITED',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 51, 299095),
'description': [u'\t<p><span class="caps">PMC</span> experience in either complex buildings like hotels, hospitals, industrial plants or in Infrastructure projects particularly highways design. Should possess knowledge of materials and finishes, knowledge of building services, proficient in MS Project and PrimaVera. Should be capable of handling several infrastructure projects. Will be preferred if he has knowledge of Buildings <span class="caps">PMC</span> Business and has executed several large campuses/complex projects involving all disciplines. Knowledge of <span class="caps">PMC</span> software is essential. Integrity, Inter personal skills and Good communication skills of paramount importance. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Construction / Engineering / Cement / Metals </p>\n\n\t<p>Functional Area: Other </p>\n\n\t<p>Role Category:Other</p>\n\n\t<p>Role:Other</p>\n\n\t<p>Keyskills <br />\nPrimavera MS Project Project Management Planning Construction Planning <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Civil</p>\n\n\t<p>PG:M.Tech &#8211; Any Specialization, Civil</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'15 - 20 yrs',
'location': [u'Bengaluru/Bangalore', u'Mumbai', u'Chennai'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 51, 299025),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Primavera',
u'MS Project',
u'Project Management',
u'Planning',
u'Construction Planning'],
'title': u'PMC Head',
'url': 'http://jobsearch.naukri.com/job-listings-PMC-Head-STANTON-CHASE-INTERNATIONAL-PRIVATE-LIMITED-Bengaluru-Bangalore-Mumbai-Chennai-15-to-20-years-160715008296'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Experis IT Private Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 51, 863158),
'description': [u'\t<p>Hi</p>\n\n\t<p>Greetings of the day !!</p>\n\n\t<p>We have an Opening for Messaging Admin for Bangalore/ Chennai</p>\n\n\t<p>Exp: 5-7yrs<br />\nLocation: Bangalore / Chennai<br />\nMode : C2H</p>\n\n\t<p>Job Description:</p>\n\n\t<p>&#8220;Installing, configuring, administering <span class="caps">IIS</span> (Version 6.0 to <br />\nGood working experience in Windows Servers(Win2003/2008/2008 R2 ) and Networking Technologies<br />\nConfiguring <span class="caps">ASP</span> .NET applications<br />\nProject delivery &#8211; build, configure windows servers and applications from Development, Staging/ <span class="caps">UAT</span> Environment to production<br />\nConfiguring Load balancing / Clustering/ Fail over (e.g. <span class="caps">BIG</span> IP, Windows load balancing)<br />\nInstalling and configuring Third party vendor applications and integration with <span class="caps">IIS</span><br />\nGenerate, install and Configure <span class="caps">SSL</span>.<br />\nPerforming <span class="caps">IIS</span> migrations<br />\nPerformance monitoring ,IIS Hardening and Tuning Log Analyzing.<br />\nTroubleshooting all types of server related issues and web applications<br />\nCoordination with PM/Infra/application teams for new projects/Migrations, deployments, configurations, changes, patches. <br />\nMicrosoft Certifications (<span class="caps">MCP</span>, <span class="caps">MCSA</span>, <span class="caps">MCSE</span> etc.) <br />\nExcellent written, verbal, and interpersonal communication skills</p>\n\n\t<p>Added advantage:<br />\nGood knowledge in Windows, AD, <span class="caps">DNS</span><br />\nConfiguring Websphere, Weblogic plugins &amp; two way <span class="caps">SSL</span> for <span class="caps">IIS</span> <br />\nMicrosoft <span class="caps">ISA</span> or <span class="caps">TMG</span> proxy server experience </p>\n\n\t<p>If interested, pls share resumes to cshravanthi@experisindia.com</p>\n\n\t<p>Regards,<br />\nShravanthi<br />\nDesired Profile Please refer to the Job description above Experience 5 &#8211; 8 Years Industry Type IT-Software / Software Services Role Software Developer Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG &#8211; Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: 4,00,000 &#8211; 9,00,000 P.A Location Bengaluru/Bangalore Keywords messaging admin Contact Kuhelli Santra</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Opening for Messaging Admin for Bangalore/ Chennai',
'url': 'http://jobsearch.naukri.com/job-listings-Opening-for-Messaging-Admin-for-Bangalore-Chennai-Experis-IT-Private-Limited-Bengaluru-Bangalore-5-to-8-years-160715008232'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:51 [scrapy] ERROR: Error processing {'company': u'Experis IT Private Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 51, 863158),
'description': [u'\t<p>Hi</p>\n\n\t<p>Greetings of the day !!</p>\n\n\t<p>We have an Opening for Messaging Admin for Bangalore/ Chennai</p>\n\n\t<p>Exp: 5-7yrs<br />\nLocation: Bangalore / Chennai<br />\nMode : C2H</p>\n\n\t<p>Job Description:</p>\n\n\t<p>&#8220;Installing, configuring, administering <span class="caps">IIS</span> (Version 6.0 to <br />\nGood working experience in Windows Servers(Win2003/2008/2008 R2 ) and Networking Technologies<br />\nConfiguring <span class="caps">ASP</span> .NET applications<br />\nProject delivery &#8211; build, configure windows servers and applications from Development, Staging/ <span class="caps">UAT</span> Environment to production<br />\nConfiguring Load balancing / Clustering/ Fail over (e.g. <span class="caps">BIG</span> IP, Windows load balancing)<br />\nInstalling and configuring Third party vendor applications and integration with <span class="caps">IIS</span><br />\nGenerate, install and Configure <span class="caps">SSL</span>.<br />\nPerforming <span class="caps">IIS</span> migrations<br />\nPerformance monitoring ,IIS Hardening and Tuning Log Analyzing.<br />\nTroubleshooting all types of server related issues and web applications<br />\nCoordination with PM/Infra/application teams for new projects/Migrations, deployments, configurations, changes, patches. <br />\nMicrosoft Certifications (<span class="caps">MCP</span>, <span class="caps">MCSA</span>, <span class="caps">MCSE</span> etc.) <br />\nExcellent written, verbal, and interpersonal communication skills</p>\n\n\t<p>Added advantage:<br />\nGood knowledge in Windows, AD, <span class="caps">DNS</span><br />\nConfiguring Websphere, Weblogic plugins &amp; two way <span class="caps">SSL</span> for <span class="caps">IIS</span> <br />\nMicrosoft <span class="caps">ISA</span> or <span class="caps">TMG</span> proxy server experience </p>\n\n\t<p>If interested, pls share resumes to cshravanthi@experisindia.com</p>\n\n\t<p>Regards,<br />\nShravanthi<br />\nDesired Profile Please refer to the Job description above Experience 5 &#8211; 8 Years Industry Type IT-Software / Software Services Role Software Developer Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG &#8211; Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: 4,00,000 &#8211; 9,00,000 P.A Location Bengaluru/Bangalore Keywords messaging admin Contact Kuhelli Santra</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Opening for Messaging Admin for Bangalore/ Chennai',
'url': 'http://jobsearch.naukri.com/job-listings-Opening-for-Messaging-Admin-for-Bangalore-Chennai-Experis-IT-Private-Limited-Bengaluru-Bangalore-5-to-8-years-160715008232'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'DCS',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 52, 818987),
'description': [u'\t<p>Freshers reqiured for software developer Position. Web development, C,C++ , Developers are required. Freshers 2014/2015 Batch .To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in </p>\n\n\t<p>Salary: 1,25,000 &#8211; 2,25,000 P.A. Incentives and Perks are provided as per performance </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nfreshers fresher C. C++ Freshers Software Engineers trainee <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Freshers 2015/2014 batch well versed with Java technologies. C C++ Having Idea of Websites . Domain . Web hosting To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in</p>'],
'exp': u'0 - 1 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 52, 818888),
'salary': u'1,25,000 - 2,25,000 P.A. Incentives and Perks are provided as per performance',
'skills': [u'trainee'],
'title': u'IT - Freshers C,c++ Developers 2015/2014 Batch',
'url': 'http://jobsearch.naukri.com/job-listings-IT-Freshers-C-c-Developers-2015-2014-Batch-DCS-Bengaluru-Bangalore-0-to-1-years-160715008308'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:52 [scrapy] ERROR: Error processing {'company': u'DCS',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 52, 818987),
'description': [u'\t<p>Freshers reqiured for software developer Position. Web development, C,C++ , Developers are required. Freshers 2014/2015 Batch .To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in </p>\n\n\t<p>Salary: 1,25,000 &#8211; 2,25,000 P.A. Incentives and Perks are provided as per performance </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nfreshers fresher C. C++ Freshers Software Engineers trainee <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Freshers 2015/2014 batch well versed with Java technologies. C C++ Having Idea of Websites . Domain . Web hosting To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in</p>'],
'exp': u'0 - 1 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 52, 818888),
'salary': u'1,25,000 - 2,25,000 P.A. Incentives and Perks are provided as per performance',
'skills': [u'trainee'],
'title': u'IT - Freshers C,c++ Developers 2015/2014 Batch',
'url': 'http://jobsearch.naukri.com/job-listings-IT-Freshers-C-c-Developers-2015-2014-Batch-DCS-Bengaluru-Bangalore-0-to-1-years-160715008308'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Information-Analyst-Ocwen-Financial-Solutions-Pvt-Ltd-Bengaluru-Bangalore-5-to-7-years-160715008345> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:52 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Information-Analyst-Ocwen-Financial-Solutions-Pvt-Ltd-Bengaluru-Bangalore-5-to-7-years-160715008345> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Talend-MDM-Lead-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-10-to-13-years-130715003507> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:52 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Talend-MDM-Lead-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-10-to-13-years-130715003507> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Talend-MDM-Architect-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-9-to-13-years-140715001310> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:52 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Talend-MDM-Architect-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-9-to-13-years-140715001310> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Exciting-Opportunities-India-Abroad-Design-Verification-Engineers-Synapse-Techno-Design-Innovations-Pvt-Ltd-Bengaluru-Bangalore-China-3-to-8-years-090315001517> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:05:52 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Exciting-Opportunities-India-Abroad-Design-Verification-Engineers-Synapse-Techno-Design-Innovations-Pvt-Ltd-Bengaluru-Bangalore-China-3-to-8-years-090315001517> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Required-Sales-Executive-1-2-yrs-Exp-any-Graduate-diploma-bangalore-Adecco-India-Bengaluru-Bangalore-1-to-2-years-160715007789> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:05:52 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Required-Sales-Executive-1-2-yrs-Exp-any-Graduate-diploma-bangalore-Adecco-India-Bengaluru-Bangalore-1-to-2-years-160715007789> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Quality-Specialist-Job-SAP-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-150715901245> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:05:52 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Quality-Specialist-Job-SAP-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-150715901245> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Data-Scientist-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-4-to-8-years-270515003017> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:52 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Data-Scientist-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-4-to-8-years-270515003017> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Opening-for-Unix-linux-Administrator-Exp-2-7-yrs-Bangalore-Softtek-Bengaluru-Bangalore-2-to-7-years-160715008361> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
2015-07-16 20:05:52 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Opening-for-Unix-linux-Administrator-Exp-2-7-yrs-Bangalore-Softtek-Bengaluru-Bangalore-2-to-7-years-160715008361> (referer: http://jobsearch.naukri.com/jobs-in-bangalore)
ERROR:scrapy.core.scraper:Error processing {'company': u'DCS',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 53, 737858),
'description': [u'\t<p>Freshers reqiured for software developer Position. Web development, Java , Developers are required. Freshers 2014/2015 Batch .To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in </p>\n\n\t<p>Salary: 1,25,000 &#8211; 2,25,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nfreshers fresher Java developer Freshers Software Engineers core java j2ee developer java j2ee java j2ee programming <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Freshers 2015/2014 batch well versed with Java technologies.J2EE To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in</p>'],
'exp': u'0 - 1 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 53, 737781),
'salary': u'1,25,000 - 2,25,000 P.A',
'skills': [u'core java', u'java', u'j2ee', u'programming'],
'title': u'IT - Freshers Java Developers 2015/2014 Batch',
'url': 'http://jobsearch.naukri.com/job-listings-IT-Freshers-Java-Developers-2015-2014-Batch-DCS-Bengaluru-Bangalore-0-to-1-years-160715008316'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:53 [scrapy] ERROR: Error processing {'company': u'DCS',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 53, 737858),
'description': [u'\t<p>Freshers reqiured for software developer Position. Web development, Java , Developers are required. Freshers 2014/2015 Batch .To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in </p>\n\n\t<p>Salary: 1,25,000 &#8211; 2,25,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nfreshers fresher Java developer Freshers Software Engineers core java j2ee developer java j2ee java j2ee programming <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Freshers 2015/2014 batch well versed with Java technologies.J2EE To get the response of your application kindly send your resumes to info@dcsit.in For more details Visit www.dcsit.in</p>'],
'exp': u'0 - 1 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 53, 737781),
'salary': u'1,25,000 - 2,25,000 P.A',
'skills': [u'core java', u'java', u'j2ee', u'programming'],
'title': u'IT - Freshers Java Developers 2015/2014 Batch',
'url': 'http://jobsearch.naukri.com/job-listings-IT-Freshers-Java-Developers-2015-2014-Batch-DCS-Bengaluru-Bangalore-0-to-1-years-160715008316'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Aguai Solutions',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 54, 676712),
'description': [u'\t<p>Sign Contracts with Pharmacies and handling inquiries from existing and new clients Gather sales leads from the market and approach Pharmacies actively and get them on board with Pharmeazy as a partner. Maintaining a strong relationship with store owners and advising them on issues related to the market and offering solutions on the same Conduct promotional events / marketing activities to develop new contacts and increase user base Being the face of Pharmeazy in the market and standing up for the values we believe in.</p>\n\n\t<p>Salary: Reimbursement of travel, fuel and mobile </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales Executive/Officer</p>\n\n\t<p>Keyskills <br />\nArea Sales Marketing Promotions New Business Development Sales Executive Activities Cold Calling lead generation it sales business development <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.B.A &#8211; Management</p>\n\n\t<p>PG:MBA/PGDM &#8211; Marketing</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>The candidate needs to be Self-driven and motivated. <br />\nExcellent listening and communication skills are essential.</p>'],
'exp': u'0 - 1 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 54, 676631),
'salary': u'Reimbursement of travel, fuel and mobile',
'skills': [u'Area Sales',
u'Marketing',
u'Promotions',
u'New Business Development',
u'Cold Calling',
u'lead generation',
u'business development'],
'title': u'Area Sales Executive',
'url': 'http://jobsearch.naukri.com/job-listings-Area-Sales-Executive-Aguai-Solutions-Bengaluru-Bangalore-0-to-1-years-160715008326'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:54 [scrapy] ERROR: Error processing {'company': u'Aguai Solutions',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 54, 676712),
'description': [u'\t<p>Sign Contracts with Pharmacies and handling inquiries from existing and new clients Gather sales leads from the market and approach Pharmacies actively and get them on board with Pharmeazy as a partner. Maintaining a strong relationship with store owners and advising them on issues related to the market and offering solutions on the same Conduct promotional events / marketing activities to develop new contacts and increase user base Being the face of Pharmeazy in the market and standing up for the values we believe in.</p>\n\n\t<p>Salary: Reimbursement of travel, fuel and mobile </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales Executive/Officer</p>\n\n\t<p>Keyskills <br />\nArea Sales Marketing Promotions New Business Development Sales Executive Activities Cold Calling lead generation it sales business development <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.B.A &#8211; Management</p>\n\n\t<p>PG:MBA/PGDM &#8211; Marketing</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>The candidate needs to be Self-driven and motivated. <br />\nExcellent listening and communication skills are essential.</p>'],
'exp': u'0 - 1 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 54, 676631),
'salary': u'Reimbursement of travel, fuel and mobile',
'skills': [u'Area Sales',
u'Marketing',
u'Promotions',
u'New Business Development',
u'Cold Calling',
u'lead generation',
u'business development'],
'title': u'Area Sales Executive',
'url': 'http://jobsearch.naukri.com/job-listings-Area-Sales-Executive-Aguai-Solutions-Bengaluru-Bangalore-0-to-1-years-160715008326'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'GSS HR Solutions',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 55, 577992),
'description': [u'\t<p>Warms Greetings!!!!<br />\nOpening With Accounts Executive With <span class="caps">TCS</span> in Banglore Location.</p>\n\n\t<p>Experience In Balance Sheet And Profit And Loss.</p>\n\n\t<p>Experience: 1-6 Years</p>\n\n\t<p>Salary :2-6 Lacs</p>\n\n\t<p>Rotational Shifts</p>\n\n\t<p>Call On 9619076766</p>\n\n\t<p>Salary: 2,00,000 &#8211; 6,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: Accounts , Finance , Tax , Company Secretary , Audit </p>\n\n\t<p>Role Category:Accounts</p>\n\n\t<p>Role:Accounts Executive/Accountant</p>\n\n\t<p>Keyskills <br />\nAccounting Balance Sheet Profit Tcs <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 55, 577933),
'salary': u'2,00,000 - 6,00,000 P.A',
'skills': [u'Accounting', u'Balance Sheet', u'Tcs'],
'title': u'Accounts Executive',
'url': 'http://jobsearch.naukri.com/job-listings-Accounts-Executive-GSS-HR-Solutions-Bengaluru-Bangalore-2-to-6-years-160715008335'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:55 [scrapy] ERROR: Error processing {'company': u'GSS HR Solutions',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 55, 577992),
'description': [u'\t<p>Warms Greetings!!!!<br />\nOpening With Accounts Executive With <span class="caps">TCS</span> in Banglore Location.</p>\n\n\t<p>Experience In Balance Sheet And Profit And Loss.</p>\n\n\t<p>Experience: 1-6 Years</p>\n\n\t<p>Salary :2-6 Lacs</p>\n\n\t<p>Rotational Shifts</p>\n\n\t<p>Call On 9619076766</p>\n\n\t<p>Salary: 2,00,000 &#8211; 6,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: Accounts , Finance , Tax , Company Secretary , Audit </p>\n\n\t<p>Role Category:Accounts</p>\n\n\t<p>Role:Accounts Executive/Accountant</p>\n\n\t<p>Keyskills <br />\nAccounting Balance Sheet Profit Tcs <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 55, 577933),
'salary': u'2,00,000 - 6,00,000 P.A',
'skills': [u'Accounting', u'Balance Sheet', u'Tcs'],
'title': u'Accounts Executive',
'url': 'http://jobsearch.naukri.com/job-listings-Accounts-Executive-GSS-HR-Solutions-Bengaluru-Bangalore-2-to-6-years-160715008335'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 56, 610596),
'description': [u'\t<p>Job Type &#8211; Contract (6 months)<br />\nWork Location &#8211; Client Location, Bangalore<br />\nExperience &#8211; 3-6 Years <br />\nJob Description &#8211; <br />\nSugar <span class="caps">CRM</span> Developer will be responsible for providing development support for client SugarCRM applications. Development will include enhancing elements of the application to better suit user groups, creating/maintaining custom modules and provide general administrative assistance to users. SugarCRM Developer should be familiar with <span class="caps">LAMP</span> stacks and be comfortable working with MySQL and RedHat OS.<br />\nEssential Duties and Responsibilities:<br />\nProvide continually evolving reporting on captured sales information utilizing reporting engine and advanced <span class="caps">SQL</span> queries<br />\nSupport <span class="caps">LAMP</span> stack (Red Hat OS, Apache, MySQL, <span class="caps">PHP</span>) with SugarCRM application<br />\nMaintain system automation via internal workflows and created logic hooks<br />\nImplement, test and deploy changes from development to staging to live instance including application updates<br />\nCreate <span class="caps">API</span>s to support integration efforts<br />\nField requests from technical support staff to build and enhance necessary modules<br />\nModel and deploy system-generated emails concerning record changes to both internal staff and related customer(s)<br />\nExperience/Education Requirements:<br />\nThe ideal candidate will meet the following qualifications:<br />\nBachelors Degree or 3-5 years experience with <span class="caps">PHP</span> applications<br />\nLanguage experience: strong <span class="caps">PHP</span> skills, MySQL, JavaScript, <span class="caps">HTML</span>, <span class="caps">XML</span>. Microsoft .NET framework and <span class="caps">VBA</span> not required but a plus.<br />\nExperience with <span class="caps">LAMP</span> (Linux Apache MySQL <span class="caps">PHP</span>) stacks<br />\nAdvanced troubleshooting skills<br />\nAttention to detail<br />\nAbility to effectively work in a team environment</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nMySQL <span class="caps">PHP</span> Javascript <span class="caps">HTML</span> SugarCRM <span class="caps">LAMP</span> Apache Linux <span class="caps">XML</span> Sugar <span class="caps">CRM</span> sugar customer relationship management sugar customer relation management sugar crm management <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 56, 610533),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'MySQL',
u'PHP',
u'Javascript',
u'HTML',
u'LAMP',
u'Apache',
u'Linux',
u'XML'],
'title': u'Sugar CRM Developer - Contract - Bangalore Location',
'url': 'http://jobsearch.naukri.com/job-listings-Sugar-CRM-Developer-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008340'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:56 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 56, 610596),
'description': [u'\t<p>Job Type &#8211; Contract (6 months)<br />\nWork Location &#8211; Client Location, Bangalore<br />\nExperience &#8211; 3-6 Years <br />\nJob Description &#8211; <br />\nSugar <span class="caps">CRM</span> Developer will be responsible for providing development support for client SugarCRM applications. Development will include enhancing elements of the application to better suit user groups, creating/maintaining custom modules and provide general administrative assistance to users. SugarCRM Developer should be familiar with <span class="caps">LAMP</span> stacks and be comfortable working with MySQL and RedHat OS.<br />\nEssential Duties and Responsibilities:<br />\nProvide continually evolving reporting on captured sales information utilizing reporting engine and advanced <span class="caps">SQL</span> queries<br />\nSupport <span class="caps">LAMP</span> stack (Red Hat OS, Apache, MySQL, <span class="caps">PHP</span>) with SugarCRM application<br />\nMaintain system automation via internal workflows and created logic hooks<br />\nImplement, test and deploy changes from development to staging to live instance including application updates<br />\nCreate <span class="caps">API</span>s to support integration efforts<br />\nField requests from technical support staff to build and enhance necessary modules<br />\nModel and deploy system-generated emails concerning record changes to both internal staff and related customer(s)<br />\nExperience/Education Requirements:<br />\nThe ideal candidate will meet the following qualifications:<br />\nBachelors Degree or 3-5 years experience with <span class="caps">PHP</span> applications<br />\nLanguage experience: strong <span class="caps">PHP</span> skills, MySQL, JavaScript, <span class="caps">HTML</span>, <span class="caps">XML</span>. Microsoft .NET framework and <span class="caps">VBA</span> not required but a plus.<br />\nExperience with <span class="caps">LAMP</span> (Linux Apache MySQL <span class="caps">PHP</span>) stacks<br />\nAdvanced troubleshooting skills<br />\nAttention to detail<br />\nAbility to effectively work in a team environment</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nMySQL <span class="caps">PHP</span> Javascript <span class="caps">HTML</span> SugarCRM <span class="caps">LAMP</span> Apache Linux <span class="caps">XML</span> Sugar <span class="caps">CRM</span> sugar customer relationship management sugar customer relation management sugar crm management <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 56, 610533),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'MySQL',
u'PHP',
u'Javascript',
u'HTML',
u'LAMP',
u'Apache',
u'Linux',
u'XML'],
'title': u'Sugar CRM Developer - Contract - Bangalore Location',
'url': 'http://jobsearch.naukri.com/job-listings-Sugar-CRM-Developer-Contract-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-160715008340'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Speed Jobs Consultancy',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 57, 530389),
'description': [u'\t<p>Dear Candidates, </p>\n\n\t<p>Very great middle level managerial positions in Bangalore, <br />\nWe are looking for candidates for the following </p>\n\n\t<p>Positions: Sales Manager<br />\nJob Profile:Channel Sales &amp; Corporate Sales </p>\n\n\t<p>Responsible for team building.<br />\nResponsible for team handling. <br />\nResponsible for team target.<br />\nYou will be reporting to Branch Manager. </p>\n\n\t<p>Remuneration: 3lakh to 4.25lakh P.A+Incentives. </p>\n\n\t<p>Interview Rounds: <br />\n1. Telephonic Interview <br />\n2. Face2Face Interview with Branch Manager <br />\n3. HR Round</p>\n\n\t<p>Please forward the CV as soon as possible, <br />\nso that we can help you out in getting a good job.</p>\n\n\t<p>For further clarification feel free to call on-9035009192 </p>\n\n\t<p>Email Id: gajendra@speedjobs.in </p>\n\n\t<p>Best Regards, <br />\nGajendra | Team Leader (HR) <br />\nMobile No: +91-9035009192 <br />\nEmail ID: gajendra@speedjobs.in </p>\n\n\t<p>Salary: 2,00,000 &#8211; 4,00,000 P.A. mega incentives </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Corporate Sales</p>\n\n\t<p>Role:Sales/Business Development Manager</p>\n\n\t<p>Keyskills <br />\nsales marketing business development sales head direct sales channel sales agency sales direct marketing distributor sales retail marketing <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 9 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 57, 530324),
'salary': u'2,00,000 - 4,00,000 P.A. mega incentives',
'skills': [u'sales',
u'marketing',
u'business development',
u'sales head',
u'direct sales',
u'channel sales',
u'agency sales',
u'direct marketing',
u'distributor sales',
u'retail marketing'],
'title': u'Execellent Openings in Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Execellent-Openings-in-Bangalore--Speed-Jobs-Consultancy-Bengaluru-Bangalore-4-to-9-years-160715008174'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:57 [scrapy] ERROR: Error processing {'company': u'Speed Jobs Consultancy',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 57, 530389),
'description': [u'\t<p>Dear Candidates, </p>\n\n\t<p>Very great middle level managerial positions in Bangalore, <br />\nWe are looking for candidates for the following </p>\n\n\t<p>Positions: Sales Manager<br />\nJob Profile:Channel Sales &amp; Corporate Sales </p>\n\n\t<p>Responsible for team building.<br />\nResponsible for team handling. <br />\nResponsible for team target.<br />\nYou will be reporting to Branch Manager. </p>\n\n\t<p>Remuneration: 3lakh to 4.25lakh P.A+Incentives. </p>\n\n\t<p>Interview Rounds: <br />\n1. Telephonic Interview <br />\n2. Face2Face Interview with Branch Manager <br />\n3. HR Round</p>\n\n\t<p>Please forward the CV as soon as possible, <br />\nso that we can help you out in getting a good job.</p>\n\n\t<p>For further clarification feel free to call on-9035009192 </p>\n\n\t<p>Email Id: gajendra@speedjobs.in </p>\n\n\t<p>Best Regards, <br />\nGajendra | Team Leader (HR) <br />\nMobile No: +91-9035009192 <br />\nEmail ID: gajendra@speedjobs.in </p>\n\n\t<p>Salary: 2,00,000 &#8211; 4,00,000 P.A. mega incentives </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Corporate Sales</p>\n\n\t<p>Role:Sales/Business Development Manager</p>\n\n\t<p>Keyskills <br />\nsales marketing business development sales head direct sales channel sales agency sales direct marketing distributor sales retail marketing <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 9 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 57, 530324),
'salary': u'2,00,000 - 4,00,000 P.A. mega incentives',
'skills': [u'sales',
u'marketing',
u'business development',
u'sales head',
u'direct sales',
u'channel sales',
u'agency sales',
u'direct marketing',
u'distributor sales',
u'retail marketing'],
'title': u'Execellent Openings in Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Execellent-Openings-in-Bangalore--Speed-Jobs-Consultancy-Bengaluru-Bangalore-4-to-9-years-160715008174'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 58, 445930),
'description': [u'\t<p>- Hands on experience on <span class="caps">VBA</span>, Excel Macros &#8211; - <span class="caps">SQL</span>, PL/SQL, Functions, Stored Procedure on Oracle</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">VBA</span> Macros <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>- Hands on experience on <span class="caps">VBA</span>, Excel Macros &#8211; - <span class="caps">SQL</span>, PL/SQL, Functions, Stored Procedure on Oracle</p>'],
'exp': u'3 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 58, 445869),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'VBA', u'Macros'],
'title': u'VB Excel with Macros - Contract Position for Bangalore Location',
'url': 'http://jobsearch.naukri.com/job-listings-VB-Excel-with-Macros-Contract-Position-for-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-7-years-080715001813'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:58 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 58, 445930),
'description': [u'\t<p>- Hands on experience on <span class="caps">VBA</span>, Excel Macros &#8211; - <span class="caps">SQL</span>, PL/SQL, Functions, Stored Procedure on Oracle</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">VBA</span> Macros <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>- Hands on experience on <span class="caps">VBA</span>, Excel Macros &#8211; - <span class="caps">SQL</span>, PL/SQL, Functions, Stored Procedure on Oracle</p>'],
'exp': u'3 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 58, 445869),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'VBA', u'Macros'],
'title': u'VB Excel with Macros - Contract Position for Bangalore Location',
'url': 'http://jobsearch.naukri.com/job-listings-VB-Excel-with-Macros-Contract-Position-for-Bangalore-Location-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-7-years-080715001813'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Looking-for-Freshers-for-an-International-Voice-Process-in-Mphasis-MphasiS-Limited-Bengaluru-Bangalore-0-to-4-years-010715006920> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:05:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Looking-for-Freshers-for-an-International-Voice-Process-in-Mphasis-MphasiS-Limited-Bengaluru-Bangalore-0-to-4-years-010715006920> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Opening-in-International-Voice-Process-MphasiS-Limited-Bengaluru-Bangalore-1-to-4-years-160615002854> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:05:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Opening-in-International-Voice-Process-MphasiS-Limited-Bengaluru-Bangalore-1-to-4-years-160615002854> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IDQ-informatica-Data-Quality-immediate-Joiners-Should-Apply--Growel-Softech-Ltd-Bengaluru-Bangalore-3-to-8-years-160715007800> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:05:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IDQ-informatica-Data-Quality-immediate-Joiners-Should-Apply--Growel-Softech-Ltd-Bengaluru-Bangalore-3-to-8-years-160715007800> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-HTML-5-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-3-to-6-years-160715007820> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:05:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-HTML-5-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-3-to-6-years-160715007820> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Product-Support-Executive-Technical-Support-Intelli-Search-Bengaluru-Bangalore-2-to-5-years-160715007822> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:05:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Product-Support-Executive-Technical-Support-Intelli-Search-Bengaluru-Bangalore-2-to-5-years-160715007822> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-PMO-Growel-Softech-Ltd-Bengaluru-Bangalore-7-to-12-years-160715007829> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:05:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-PMO-Growel-Softech-Ltd-Bengaluru-Bangalore-7-to-12-years-160715007829> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Jr-Associate-VR1-Advisors-Bengaluru-Bangalore-1-to-4-years-160715007288> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:05:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Jr-Associate-VR1-Advisors-Bengaluru-Bangalore-1-to-4-years-160715007288> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-HTML-5-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-8-to-10-years-160715007850> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:05:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-HTML-5-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-8-to-10-years-160715007850> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
ERROR:scrapy.core.scraper:Error processing {'company': u'Ocwen Financial Solutions Pvt. Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 58, 595258),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>Job Description Senior Information Analyst: </p><p> Ocwen Financial Corporation (NYSE:OCN) is an industry leader in residential and commercial mortgage loan servicing. Ocwen is headquartered in Atlanta, Georgia, with offices in West Palm Beach and Orlando, Florida and Washington, DC and support operations in India and Uruguay. At Ocwen, we make our clients loans worth more by leveraging superior processes, innovative technology and high-quality global human resources</p> <p> </p> <p> The Senior Information Analyst will have responsibility to execute on the Companys Data Quality and Data Stewardship initiatives. </p> <p> Responsibilities will include:</p> <p> Executing processes to ensure data integrity and privacy and monitor overall data quality for assigned data entities.</p> <p> Ensuring data management methodologies include the steps, activities, and deliverables required to consistently achieve high data quality.</p> <p> Owning and consistently maintaining the Enterprise Metadata Repository.</p> <p> Fostering the goal of data re-use, and articulate the strategic significance of information to executives and associates.</p> <p> Supporting project delivery teams in their effort to adopt and execute on data management processes.</p> <p> Identifying and manage the resolution of data quality issues, such as uniqueness, integrity, accuracy, consistency, and completeness in a cost-effective and timely fashion.</p> <p> Key Result Areas will include:</p> <p> </p> <p> Ensuring high levels of data quality, availability and privacy</p> <p> Timely delivery of Data Quality Dashboards to the Sr. Management</p> <p> Maintaining the Data Quality Issue Tracker.</p> <p> Capturing of DQ rules for all critical attributes.</p> <p> Maintaining Data management repositories and artifacts.</p> <p> Developing a knowledge base of business data usage and implementing cost reduction and quality enhancement projects.</p> <p> Maintaining an optimum level of structured/ unstructured data footprint and reports.</p> <p> </p> <p> Qualifications and Experience:</p> <p> Bachelors/Masters Degree in an analytical field such as Engineering, Math, Physics, Accounting, Finance or Information Technology</p> <p> 5-7 years of experience in Analytics / Reporting / Data Management functions</p> <p> Excellent written and oral communication skills, including high level report writing skills.</p> <p> Expertise in PL/SQL, SQL Queries.</p> <p> Competence in Web technologies like PHP, Java, JSP, ASP etc.</p> <p> Experience in prioritizing and managing a complex and changing workload</p> <p> Self starter and ability to deal with ambiguous situations</p> <p> Interpersonal and relationship management experience with strong organizational skills.</p> <p> Superior problem solving, influencing and analytical skills.</p> <p> Capacity to gain a thorough knowledge of the relevant Business area.</p> <p> Ability to work as part of a team.</p> <p> Financial industry experience a plus.</p> <p> Basic understanding of data lifecycle concepts</p> <p> Strong Communication skills with excellent track of working in and with teams</p> <p> \xa0</p> <p> \xa0</p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: INR 5,00,000 - 7,00,000 P.A</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(Technical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(Technical)</p><p>&#13;\n\t\t\tKeyskills: Information Specialist PL / SQL,information specialist pl / sql</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Information Analyst',
'url': 'http://jobsearch.naukri.com/job-listings-Information-Analyst-Ocwen-Financial-Solutions-Pvt-Ltd-Bengaluru-Bangalore-5-to-7-years-160715008345'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:58 [scrapy] ERROR: Error processing {'company': u'Ocwen Financial Solutions Pvt. Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 58, 595258),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>Job Description Senior Information Analyst: </p><p> Ocwen Financial Corporation (NYSE:OCN) is an industry leader in residential and commercial mortgage loan servicing. Ocwen is headquartered in Atlanta, Georgia, with offices in West Palm Beach and Orlando, Florida and Washington, DC and support operations in India and Uruguay. At Ocwen, we make our clients loans worth more by leveraging superior processes, innovative technology and high-quality global human resources</p> <p> </p> <p> The Senior Information Analyst will have responsibility to execute on the Companys Data Quality and Data Stewardship initiatives. </p> <p> Responsibilities will include:</p> <p> Executing processes to ensure data integrity and privacy and monitor overall data quality for assigned data entities.</p> <p> Ensuring data management methodologies include the steps, activities, and deliverables required to consistently achieve high data quality.</p> <p> Owning and consistently maintaining the Enterprise Metadata Repository.</p> <p> Fostering the goal of data re-use, and articulate the strategic significance of information to executives and associates.</p> <p> Supporting project delivery teams in their effort to adopt and execute on data management processes.</p> <p> Identifying and manage the resolution of data quality issues, such as uniqueness, integrity, accuracy, consistency, and completeness in a cost-effective and timely fashion.</p> <p> Key Result Areas will include:</p> <p> </p> <p> Ensuring high levels of data quality, availability and privacy</p> <p> Timely delivery of Data Quality Dashboards to the Sr. Management</p> <p> Maintaining the Data Quality Issue Tracker.</p> <p> Capturing of DQ rules for all critical attributes.</p> <p> Maintaining Data management repositories and artifacts.</p> <p> Developing a knowledge base of business data usage and implementing cost reduction and quality enhancement projects.</p> <p> Maintaining an optimum level of structured/ unstructured data footprint and reports.</p> <p> </p> <p> Qualifications and Experience:</p> <p> Bachelors/Masters Degree in an analytical field such as Engineering, Math, Physics, Accounting, Finance or Information Technology</p> <p> 5-7 years of experience in Analytics / Reporting / Data Management functions</p> <p> Excellent written and oral communication skills, including high level report writing skills.</p> <p> Expertise in PL/SQL, SQL Queries.</p> <p> Competence in Web technologies like PHP, Java, JSP, ASP etc.</p> <p> Experience in prioritizing and managing a complex and changing workload</p> <p> Self starter and ability to deal with ambiguous situations</p> <p> Interpersonal and relationship management experience with strong organizational skills.</p> <p> Superior problem solving, influencing and analytical skills.</p> <p> Capacity to gain a thorough knowledge of the relevant Business area.</p> <p> Ability to work as part of a team.</p> <p> Financial industry experience a plus.</p> <p> Basic understanding of data lifecycle concepts</p> <p> Strong Communication skills with excellent track of working in and with teams</p> <p> \xa0</p> <p> \xa0</p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: INR 5,00,000 - 7,00,000 P.A</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(Technical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(Technical)</p><p>&#13;\n\t\t\tKeyskills: Information Specialist PL / SQL,information specialist pl / sql</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Information Analyst',
'url': 'http://jobsearch.naukri.com/job-listings-Information-Analyst-Ocwen-Financial-Solutions-Pvt-Ltd-Bengaluru-Bangalore-5-to-7-years-160715008345'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 59, 446390),
'description': [u'\t<p>1. 10+ Yrs of experience<br />\n2. Exposure to multiple <span class="caps">ETL</span> tools including Talend<br />\n3. Exposure to Datawarehousing projects, <span class="caps">MDM</span><br />\n4. Expsoure to large enterprise DW projects</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; <span class="caps">DBA</span> , Datawarehousing </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Technical Architect</p>\n\n\t<p>Keyskills <br />\nTalend <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>1. 10+ Yrs of experience<br />\n2. Exposure to multiple <span class="caps">ETL</span> tools including Talend<br />\n3. Exposure to Datawarehousing projects, <span class="caps">MDM</span><br />\n4. Expsoure to large enterprise DW projects</p>'],
'exp': u'10 - 13 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 59, 446331),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'Talend MDM Lead',
'url': 'http://jobsearch.naukri.com/job-listings-Talend-MDM-Lead-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-10-to-13-years-130715003507'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:05:59 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 5, 59, 446390),
'description': [u'\t<p>1. 10+ Yrs of experience<br />\n2. Exposure to multiple <span class="caps">ETL</span> tools including Talend<br />\n3. Exposure to Datawarehousing projects, <span class="caps">MDM</span><br />\n4. Expsoure to large enterprise DW projects</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; <span class="caps">DBA</span> , Datawarehousing </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Technical Architect</p>\n\n\t<p>Keyskills <br />\nTalend <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>1. 10+ Yrs of experience<br />\n2. Exposure to multiple <span class="caps">ETL</span> tools including Talend<br />\n3. Exposure to Datawarehousing projects, <span class="caps">MDM</span><br />\n4. Expsoure to large enterprise DW projects</p>'],
'exp': u'10 - 13 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 5, 59, 446331),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'Talend MDM Lead',
'url': 'http://jobsearch.naukri.com/job-listings-Talend-MDM-Lead-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-10-to-13-years-130715003507'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 0, 467872),
'description': [u'\t<p>1. 10+ Yrs of experience<br />\n2. Exposure to multiple <span class="caps">ETL</span> tools including Talend<br />\n3. Exposure to Datawarehousing projects, <span class="caps">MDM</span><br />\n4. Expsoure to large enterprise DW projects</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Technical Architect</p>\n\n\t<p>Keyskills <br />\nData Warehousing <span class="caps">ETL</span> DW Talend <span class="caps">MDM</span> <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'9 - 13 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 0, 467813),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Data Warehousing', u'MDM'],
'title': u'Talend MDM Architect',
'url': 'http://jobsearch.naukri.com/job-listings-Talend-MDM-Architect-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-9-to-13-years-140715001310'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:00 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 0, 467872),
'description': [u'\t<p>1. 10+ Yrs of experience<br />\n2. Exposure to multiple <span class="caps">ETL</span> tools including Talend<br />\n3. Exposure to Datawarehousing projects, <span class="caps">MDM</span><br />\n4. Expsoure to large enterprise DW projects</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Technical Architect</p>\n\n\t<p>Keyskills <br />\nData Warehousing <span class="caps">ETL</span> DW Talend <span class="caps">MDM</span> <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'9 - 13 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 0, 467813),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Data Warehousing', u'MDM'],
'title': u'Talend MDM Architect',
'url': 'http://jobsearch.naukri.com/job-listings-Talend-MDM-Architect-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-9-to-13-years-140715001310'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Synapse Techno Design Innovations Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 0, 499122),
'description': [u'<html><body><div><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">DV Engineers having experience in (System Verilog, UVM) <br/> Experience 3 Years to 8 Years<br/> Job Locations Bangalore, Shanghai,\xa0<br/> <br/> JD:-<br/> <br/> a ) SoC based verification:<br/> <br/> o\tMust have working knowledge of Verilog , System Verilog (HVL)<br/> o\tMust have worked on one of the methodologies : UVM, OVM<br/> o\tWorking Knowledge of building test bench using one of the above mentioned methodologies.<br/> o\tMust have working knowledge of writing C/C++ based test cases.<br/> o\tWorking Knowledge of AXI / ACE / AHB / APB bus protocols desired.<br/> o\tWorking knowledge of ARM or any processors/controllers , processor cache and inter-processor communication. TLBs is a plus.<br/> o\tExperience in Low power verification using industry standard tool desired.<br/> o\tExperience in using industry standard VIPs (like PCIe, Ethernet and USB VIPs)<br/> o\tWorking knowledge of GLS debug is a plus<br/> o\tWorking knowledge of writing scripts (TCL, Python, Make, Perl is desired. <br/> <br/> b) IP based verification:<br/> <br/> o\tMust have working knowledge of Verilog , System Verilog (HVL)<br/> o\tMust have worked on one of the methodologies : UVM, OVM<br/> o\tWorking Knowledge of building testbench using one of the above mentioned methodologies.<br/> o\tExperience in using industry standard VIPs (like Synopsys or Cadence PCIe, Ethernet and USB VIPs) is a plus.<br/> o\tExperience in modelling BFMs and protocol checkers desired.<br/> o\tWorking knowledge of writing SV based test cases and constrained random verification , functional coverage and other coverage analysis.<br/> o\tExperience in assertion based verification methodology (using OVA and SVA) is a plus.<br/> o\tPCIe (Gen1/Gen2/Gen3), USB (2/3), SATA,Ethernet,SCSI,DDR2/DDR3 is a plus<br/> o\tWorking knowledge of GLS debug is a plus<br/> o\tWorking knowledge of writing scripts (TCL, Python, Make, Perl is desired.<br/> <br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: No Variable Pay, Best in the Industry<br/>&#13;\n\t\t\tIndustry: Semiconductors / Electronics<br/>&#13;\n\t\t\tFunctional Area: Engineering Design, R&amp;D<br/>&#13;\n\t\t\tRole Category: Senior Design Engineer<br/>&#13;\n\t\t\tRole: Senior Design Engineer<br/>&#13;\n\t\t\tKeyskills: System Verilog, UVM, OVM, AXI, ACE, AHB, APB, VERILOG, AMBA, PCIe, pci express, usb, sata, c++, ethernet</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, B.Tech/B.E. - Any Specialization <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20">&#13;\n\t\t\t<p class="cTitle f16 lh30">Company Profile</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ">Synapse Design is an industry leader in design services and is the engineering backbone of most Fortune 500 System &amp; Semiconductor companies around the world. Synapse Design target customers are companies with $1 billion in revenue, and we enable them to meet their technical &amp; resource challenges to build the next generation products. Founded in 2003, headquartered in San Jose (Silicon Valley) with operations in Irvine, Boston, San Diego, Longmont-Colorado, China, Europe and India. Synapse Design has over 750 employees distributed around the globe and is aggressively growing. Synapse Design assists its clients in developing their next generation flagship product lines (mobile devices, complex routers/switches, consumer products, storage, microprocessor, graphics processors etc.). This includes developing cutting edge technologies that are key and rare in the industry. Experts in building the most complex SoC`s, Synapse Design further differentiates by having one of the strongest analog/mixed signal &amp; software design teams in the industry. The Synapse Design engagement model is equally diverse - all the way from architecture or product spec development to full turnkey projects, or deploying large/small teams around the world to help its clients deliver their latest product - fastest to market</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore, China'],
'title': u'Exciting Opportunities- India / Abroad - Design Verification Engineers',
'url': 'http://jobsearch.naukri.com/job-listings-Exciting-Opportunities-India-Abroad-Design-Verification-Engineers-Synapse-Techno-Design-Innovations-Pvt-Ltd-Bengaluru-Bangalore-China-3-to-8-years-090315001517'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:00 [scrapy] ERROR: Error processing {'company': u'Synapse Techno Design Innovations Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 0, 499122),
'description': [u'<html><body><div><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">DV Engineers having experience in (System Verilog, UVM) <br/> Experience 3 Years to 8 Years<br/> Job Locations Bangalore, Shanghai,\xa0<br/> <br/> JD:-<br/> <br/> a ) SoC based verification:<br/> <br/> o\tMust have working knowledge of Verilog , System Verilog (HVL)<br/> o\tMust have worked on one of the methodologies : UVM, OVM<br/> o\tWorking Knowledge of building test bench using one of the above mentioned methodologies.<br/> o\tMust have working knowledge of writing C/C++ based test cases.<br/> o\tWorking Knowledge of AXI / ACE / AHB / APB bus protocols desired.<br/> o\tWorking knowledge of ARM or any processors/controllers , processor cache and inter-processor communication. TLBs is a plus.<br/> o\tExperience in Low power verification using industry standard tool desired.<br/> o\tExperience in using industry standard VIPs (like PCIe, Ethernet and USB VIPs)<br/> o\tWorking knowledge of GLS debug is a plus<br/> o\tWorking knowledge of writing scripts (TCL, Python, Make, Perl is desired. <br/> <br/> b) IP based verification:<br/> <br/> o\tMust have working knowledge of Verilog , System Verilog (HVL)<br/> o\tMust have worked on one of the methodologies : UVM, OVM<br/> o\tWorking Knowledge of building testbench using one of the above mentioned methodologies.<br/> o\tExperience in using industry standard VIPs (like Synopsys or Cadence PCIe, Ethernet and USB VIPs) is a plus.<br/> o\tExperience in modelling BFMs and protocol checkers desired.<br/> o\tWorking knowledge of writing SV based test cases and constrained random verification , functional coverage and other coverage analysis.<br/> o\tExperience in assertion based verification methodology (using OVA and SVA) is a plus.<br/> o\tPCIe (Gen1/Gen2/Gen3), USB (2/3), SATA,Ethernet,SCSI,DDR2/DDR3 is a plus<br/> o\tWorking knowledge of GLS debug is a plus<br/> o\tWorking knowledge of writing scripts (TCL, Python, Make, Perl is desired.<br/> <br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: No Variable Pay, Best in the Industry<br/>&#13;\n\t\t\tIndustry: Semiconductors / Electronics<br/>&#13;\n\t\t\tFunctional Area: Engineering Design, R&amp;D<br/>&#13;\n\t\t\tRole Category: Senior Design Engineer<br/>&#13;\n\t\t\tRole: Senior Design Engineer<br/>&#13;\n\t\t\tKeyskills: System Verilog, UVM, OVM, AXI, ACE, AHB, APB, VERILOG, AMBA, PCIe, pci express, usb, sata, c++, ethernet</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, B.Tech/B.E. - Any Specialization <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20">&#13;\n\t\t\t<p class="cTitle f16 lh30">Company Profile</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ">Synapse Design is an industry leader in design services and is the engineering backbone of most Fortune 500 System &amp; Semiconductor companies around the world. Synapse Design target customers are companies with $1 billion in revenue, and we enable them to meet their technical &amp; resource challenges to build the next generation products. Founded in 2003, headquartered in San Jose (Silicon Valley) with operations in Irvine, Boston, San Diego, Longmont-Colorado, China, Europe and India. Synapse Design has over 750 employees distributed around the globe and is aggressively growing. Synapse Design assists its clients in developing their next generation flagship product lines (mobile devices, complex routers/switches, consumer products, storage, microprocessor, graphics processors etc.). This includes developing cutting edge technologies that are key and rare in the industry. Experts in building the most complex SoC`s, Synapse Design further differentiates by having one of the strongest analog/mixed signal &amp; software design teams in the industry. The Synapse Design engagement model is equally diverse - all the way from architecture or product spec development to full turnkey projects, or deploying large/small teams around the world to help its clients deliver their latest product - fastest to market</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore, China'],
'title': u'Exciting Opportunities- India / Abroad - Design Verification Engineers',
'url': 'http://jobsearch.naukri.com/job-listings-Exciting-Opportunities-India-Abroad-Design-Verification-Engineers-Synapse-Techno-Design-Innovations-Pvt-Ltd-Bengaluru-Bangalore-China-3-to-8-years-090315001517'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Adecco India',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 1, 343585),
'description': [u'\t<p>Bike is must&#8230;..</p>\n\n\t<p>At least 1-2 years of experience in the area of Sales Marketing, preferably in the field of Medical device selling.</p>\n\n\t<p>Requirement is in Bangalore. </p>\n\n\t<p>Salary: 1,00,000 &#8211; 2,00,000 P.A </p>\n\n\t<p>Industry: Medical / Healthcare / Hospitals </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales Executive/Officer</p>\n\n\t<p>Keyskills <br />\nSales Executive Activities Marketing Selling <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 2 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 1, 343528),
'salary': u'1,00,000 - 2,00,000 P.A',
'skills': [u'Marketing'],
'title': u'Required Sales Executive, 1-2 yrs Exp,any Graduate/diploma,bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Required-Sales-Executive-1-2-yrs-Exp-any-Graduate-diploma-bangalore-Adecco-India-Bengaluru-Bangalore-1-to-2-years-160715007789'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:01 [scrapy] ERROR: Error processing {'company': u'Adecco India',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 1, 343585),
'description': [u'\t<p>Bike is must&#8230;..</p>\n\n\t<p>At least 1-2 years of experience in the area of Sales Marketing, preferably in the field of Medical device selling.</p>\n\n\t<p>Requirement is in Bangalore. </p>\n\n\t<p>Salary: 1,00,000 &#8211; 2,00,000 P.A </p>\n\n\t<p>Industry: Medical / Healthcare / Hospitals </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales Executive/Officer</p>\n\n\t<p>Keyskills <br />\nSales Executive Activities Marketing Selling <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 2 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 1, 343528),
'salary': u'1,00,000 - 2,00,000 P.A',
'skills': [u'Marketing'],
'title': u'Required Sales Executive, 1-2 yrs Exp,any Graduate/diploma,bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Required-Sales-Executive-1-2-yrs-Exp-any-Graduate-diploma-bangalore-Adecco-India-Bengaluru-Bangalore-1-to-2-years-160715007789'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'SAP India Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 2, 1300),
'description': [u'\t<p>As market leader in enterprise application software, <span class="caps">SAP</span> helps companies of all sizes and industries innovate through simplification. From the back office to the boardroom, warehouse to storefront, on premise to cloud, desktop to mobile device <span class="caps">SAP</span> empowers people and organizations to work together more efficiently and use business insight more effectively to stay ahead of the competition. <span class="caps">SAP</span> applications and services enable customers to operate profitably, adapt continuously, and grow sustainably.</p>\n\n\t<p><span class="caps">TBD</span></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; QA &amp; Testing </p>\n\n\t<p>Role Category:QA/Testing/Documentation</p>\n\n\t<p>Role:Quality Assurance/Quality Control Executive</p>\n\n\t<p>Keyskills <br />\n<span class="caps">ERP</span> <span class="caps">SAP</span> Cloud Quality Technology <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:M.Tech &#8211; Computers</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 2, 1241),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'ERP', u'SAP', u'Technology'],
'title': u'Senior Quality Specialist Job',
'url': 'http://jobsearch.naukri.com/job-listings-Senior-Quality-Specialist-Job-SAP-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-150715901245'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:02 [scrapy] ERROR: Error processing {'company': u'SAP India Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 2, 1300),
'description': [u'\t<p>As market leader in enterprise application software, <span class="caps">SAP</span> helps companies of all sizes and industries innovate through simplification. From the back office to the boardroom, warehouse to storefront, on premise to cloud, desktop to mobile device <span class="caps">SAP</span> empowers people and organizations to work together more efficiently and use business insight more effectively to stay ahead of the competition. <span class="caps">SAP</span> applications and services enable customers to operate profitably, adapt continuously, and grow sustainably.</p>\n\n\t<p><span class="caps">TBD</span></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; QA &amp; Testing </p>\n\n\t<p>Role Category:QA/Testing/Documentation</p>\n\n\t<p>Role:Quality Assurance/Quality Control Executive</p>\n\n\t<p>Keyskills <br />\n<span class="caps">ERP</span> <span class="caps">SAP</span> Cloud Quality Technology <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:M.Tech &#8211; Computers</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 2, 1241),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'ERP', u'SAP', u'Technology'],
'title': u'Senior Quality Specialist Job',
'url': 'http://jobsearch.naukri.com/job-listings-Senior-Quality-Specialist-Job-SAP-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-150715901245'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 2, 688444),
'description': [u'\t<p>Hands on experience of about 4-8 years<br />\n2. Master/PhD in computer science/engineering/statistics<br />\n3. Extremely good in building predictive models using R, Python<br />\n4. Strong Exposure R over Hadoop/Python on Hadoop etc is big plus<br />\n5. Work independently without any supervisions<br />\n6. <br />\nGood to have:<br />\n1. Big Data/Java experience<br />\n2. Retail Domain<br />\n3. Built Recommendation systems for e-commerce/online space</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Analytics &amp; Business Intelligence </p>\n\n\t<p>Role Category:Other</p>\n\n\t<p>Role:Other</p>\n\n\t<p>Keyskills <br />\nR programing python machine learning <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers, M.Tech &#8211; Any Specialization, Computers, M.Sc &#8211; Computers, Statistics, M.A &#8211; Statistics</p>\n\n\t<p>Doctorate:Ph.D &#8211; Computers, Statistics</p>\n\n\t<p>Hands on experience of about 4-8 years<br />\n2. Master/PhD in computer science/engineering/statistics<br />\n3. Extremely good in building predictive models using R, Python<br />\n4. Strong Exposure R over Hadoop/Python on Hadoop etc is big plus<br />\n5. Work independently without any supervisions<br />\n6. <br />\nGood to have:<br />\n1. Big Data/Java experience<br />\n2. Retail Domain<br />\n3. Built Recommendation systems for e-commerce/online space</p>'],
'exp': u'4 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 2, 688386),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'python', u'machine learning'],
'title': u'Data Scientist',
'url': 'http://jobsearch.naukri.com/job-listings-Data-Scientist-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-4-to-8-years-270515003017'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:02 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 2, 688444),
'description': [u'\t<p>Hands on experience of about 4-8 years<br />\n2. Master/PhD in computer science/engineering/statistics<br />\n3. Extremely good in building predictive models using R, Python<br />\n4. Strong Exposure R over Hadoop/Python on Hadoop etc is big plus<br />\n5. Work independently without any supervisions<br />\n6. <br />\nGood to have:<br />\n1. Big Data/Java experience<br />\n2. Retail Domain<br />\n3. Built Recommendation systems for e-commerce/online space</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Analytics &amp; Business Intelligence </p>\n\n\t<p>Role Category:Other</p>\n\n\t<p>Role:Other</p>\n\n\t<p>Keyskills <br />\nR programing python machine learning <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers, M.Tech &#8211; Any Specialization, Computers, M.Sc &#8211; Computers, Statistics, M.A &#8211; Statistics</p>\n\n\t<p>Doctorate:Ph.D &#8211; Computers, Statistics</p>\n\n\t<p>Hands on experience of about 4-8 years<br />\n2. Master/PhD in computer science/engineering/statistics<br />\n3. Extremely good in building predictive models using R, Python<br />\n4. Strong Exposure R over Hadoop/Python on Hadoop etc is big plus<br />\n5. Work independently without any supervisions<br />\n6. <br />\nGood to have:<br />\n1. Big Data/Java experience<br />\n2. Retail Domain<br />\n3. Built Recommendation systems for e-commerce/online space</p>'],
'exp': u'4 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 2, 688386),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'python', u'machine learning'],
'title': u'Data Scientist',
'url': 'http://jobsearch.naukri.com/job-listings-Data-Scientist-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-4-to-8-years-270515003017'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Softtek',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 3, 685784),
'description': [u'\t<p>Position : <span class="caps">UNIX</span>/LINUX Administrator<br />\nSkills : Patching experience &#8211; Mandatory<br />\nExperience : 2-7 years<br />\nJob Location : Bangalore\n\t<ul>\n\t\t<li>Please apply only if you can join in 3-4 weeks max.</li>\n\t</ul></li></p>\n\n\t<p>Job Description :</p>\n\n\t<p>Should have the following skills:</p>\n\n\t<p><span class="caps">UNIX</span> <span class="caps">ADMIN</span> (<span class="caps">SOLARIS</span> &amp; <span class="caps">LINUX</span>)<br />\nSolaris installation and management <br />\nSolaris Virtualization Containers &amp; <span class="caps">LDOMS</span> <br />\nRed Hat Linux installation and management <br />\nScripting <br />\nVeritas Cluster HA and File System <br />\nVeritas Operations Manager <br />\n<span class="caps">ZFS</span> file system </p>\n\n\t<p>If interested, please share your profile with me at sushant.verma@softtek.com with the following details:</p>\n\n\t<p>Total experience<br />\nRelevant experience<br />\nCurrent <span class="caps">CTC</span><br />\nExpected <span class="caps">CTC</span><br />\nCurrent Location<br />\nNotice Period</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 3, 685722),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'unix administration', u'linux administration', u'Solaris'],
'title': u'Urgent Opening for Unix/linux Administrator | Exp: 2-7 yrs | Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Opening-for-Unix-linux-Administrator-Exp-2-7-yrs-Bangalore-Softtek-Bengaluru-Bangalore-2-to-7-years-160715008361'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:03 [scrapy] ERROR: Error processing {'company': u'Softtek',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 3, 685784),
'description': [u'\t<p>Position : <span class="caps">UNIX</span>/LINUX Administrator<br />\nSkills : Patching experience &#8211; Mandatory<br />\nExperience : 2-7 years<br />\nJob Location : Bangalore\n\t<ul>\n\t\t<li>Please apply only if you can join in 3-4 weeks max.</li>\n\t</ul></li></p>\n\n\t<p>Job Description :</p>\n\n\t<p>Should have the following skills:</p>\n\n\t<p><span class="caps">UNIX</span> <span class="caps">ADMIN</span> (<span class="caps">SOLARIS</span> &amp; <span class="caps">LINUX</span>)<br />\nSolaris installation and management <br />\nSolaris Virtualization Containers &amp; <span class="caps">LDOMS</span> <br />\nRed Hat Linux installation and management <br />\nScripting <br />\nVeritas Cluster HA and File System <br />\nVeritas Operations Manager <br />\n<span class="caps">ZFS</span> file system </p>\n\n\t<p>If interested, please share your profile with me at sushant.verma@softtek.com with the following details:</p>\n\n\t<p>Total experience<br />\nRelevant experience<br />\nCurrent <span class="caps">CTC</span><br />\nExpected <span class="caps">CTC</span><br />\nCurrent Location<br />\nNotice Period</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 3, 685722),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'unix administration', u'linux administration', u'Solaris'],
'title': u'Urgent Opening for Unix/linux Administrator | Exp: 2-7 yrs | Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Opening-for-Unix-linux-Administrator-Exp-2-7-yrs-Bangalore-Softtek-Bengaluru-Bangalore-2-to-7-years-160715008361'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Test-Engineer-4-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-6-to-8-years-160715007794> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:03 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Test-Engineer-4-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-6-to-8-years-160715007794> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Head-of-Indian-Operations-for-one-of-Clients-in-Bangalore-CES-Ltd--Bengaluru-Bangalore-20-to-25-years-150715000090> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:03 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Head-of-Indian-Operations-for-one-of-Clients-in-Bangalore-CES-Ltd--Bengaluru-Bangalore-20-to-25-years-150715000090> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Allegis-Group-is-Hiring-Recruitment-Manager-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-5-to-8-years-160715007780> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:03 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Allegis-Group-is-Hiring-Recruitment-Manager-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-5-to-8-years-160715007780> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Developer-Job-SAP-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-150715901244> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:03 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Developer-Job-SAP-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-150715901244> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Corporate-Sales-Associate-Citibank-N-A-Bengaluru-Bangalore-0-to-2-years-160715900447> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:03 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Corporate-Sales-Associate-Citibank-N-A-Bengaluru-Bangalore-0-to-2-years-160715900447> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Operations-Analyst-AM-CI-Reference-Data-JPMorgan-Chase-Bengaluru-Bangalore-3-to-6-years-150715900590> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:03 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Operations-Analyst-AM-CI-Reference-Data-JPMorgan-Chase-Bengaluru-Bangalore-3-to-6-years-150715900590> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Developer-HCL-Technologies-Bengaluru-Bangalore-2-to-5-years-150715901142> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:03 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Developer-HCL-Technologies-Bengaluru-Bangalore-2-to-5-years-150715901142> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Team-Member-JPMorgan-Chase-Bengaluru-Bangalore-0-to-2-years-150715901036> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:03 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Team-Member-JPMorgan-Chase-Bengaluru-Bangalore-0-to-2-years-150715901036> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
ERROR:scrapy.core.scraper:Error processing {'company': u'MphasiS Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 3, 780275),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p> \xa0Company:- Mphasis, Bangalore</p> <p> Location:- Bangalore</p> <p> Experience\xa0 Freshers</p> <p> Qualification:-Graduate/Post Graduate</p> <p> Contact Person:- Sukhmeet Singh Krishan</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 +91 80 6750 5660\t</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 sukhmeet.k@mphasis.com</p> <p> Job Description:-</p> <p> </p> <p> \tExcellent Communication Skills</p> <p> \tFlexible working in Rotational Shifts UK/US/ Canadian</p> <p> \tInbound\xa0 customer support calls</p> <p> Immediate\xa0 Joinees</p> <p> \tInterested Candidates can walkin for interview on Monday to Friday, time:-10 am to 4pm</p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: INR Less Than 50,000 - 2,00,000 P.A</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tKeyskills: International Voice Process</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Looking for Freshers for an International Voice Process in Mphasis',
'url': 'http://jobsearch.naukri.com/job-listings-Looking-for-Freshers-for-an-International-Voice-Process-in-Mphasis-MphasiS-Limited-Bengaluru-Bangalore-0-to-4-years-010715006920'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:03 [scrapy] ERROR: Error processing {'company': u'MphasiS Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 3, 780275),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p> \xa0Company:- Mphasis, Bangalore</p> <p> Location:- Bangalore</p> <p> Experience\xa0 Freshers</p> <p> Qualification:-Graduate/Post Graduate</p> <p> Contact Person:- Sukhmeet Singh Krishan</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 +91 80 6750 5660\t</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 sukhmeet.k@mphasis.com</p> <p> Job Description:-</p> <p> </p> <p> \tExcellent Communication Skills</p> <p> \tFlexible working in Rotational Shifts UK/US/ Canadian</p> <p> \tInbound\xa0 customer support calls</p> <p> Immediate\xa0 Joinees</p> <p> \tInterested Candidates can walkin for interview on Monday to Friday, time:-10 am to 4pm</p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: INR Less Than 50,000 - 2,00,000 P.A</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tKeyskills: International Voice Process</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Looking for Freshers for an International Voice Process in Mphasis',
'url': 'http://jobsearch.naukri.com/job-listings-Looking-for-Freshers-for-an-International-Voice-Process-in-Mphasis-MphasiS-Limited-Bengaluru-Bangalore-0-to-4-years-010715006920'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'MphasiS Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 3, 809903),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><strong> <u> \xa0Current Opening:</u> </strong> <ul> <li> \t1.International Voice Customer Service</li> <li> 2. Graduate/UnderGraduate</li> </ul> <p> <u> <strong> Job Description:</strong> </u> </p> <ul> <li> \tExtremely Good command over English.</li> <li> Willingness to work in Rotational Shifts</li> <li> Ready to relocate to Bangalore, If outstation</li> </ul> <p> Candidates with good communication with minimum work Experience of 6 Months are Preferred.</p> <p> <strong> <u> </u> </strong> \xa0</p> <p> <strong> <u> Please Walkin directly with a copy of this mail along with you Updated Resume and Your Documents.</u> </strong> </p> <p> </p><p> <u> <strong> Contact Details:-</strong> </u> Sukhmeet</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 +91 6750 5660</p> <p> \t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Email Id:-sukhmeet.k@mphasis.com</p> <p> </p> <p> <u> <strong> Venue:-</strong> </u> </p> <p> \xa0</p> <p> 4th Floor, Wing A, Bagmane World Technology Center, WTC 4, KR Puram, Marathahalli Outer Ring Road, Mahadevapura, Bangalore 560 048, India</p> <p> T +91 80 6750 5660 Ext. 5655 | CUG Ext. #5615655 |sukhmeet.k@mphasis.com</p> <p> </p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tKeyskills: Inbound Calls Handling, outbound calls handling, bpo calls handling, inhouse sales handling, voice process calls handling</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Urgent Opening in International Voice Process',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Opening-in-International-Voice-Process-MphasiS-Limited-Bengaluru-Bangalore-1-to-4-years-160615002854'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:03 [scrapy] ERROR: Error processing {'company': u'MphasiS Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 3, 809903),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><strong> <u> \xa0Current Opening:</u> </strong> <ul> <li> \t1.International Voice Customer Service</li> <li> 2. Graduate/UnderGraduate</li> </ul> <p> <u> <strong> Job Description:</strong> </u> </p> <ul> <li> \tExtremely Good command over English.</li> <li> Willingness to work in Rotational Shifts</li> <li> Ready to relocate to Bangalore, If outstation</li> </ul> <p> Candidates with good communication with minimum work Experience of 6 Months are Preferred.</p> <p> <strong> <u> </u> </strong> \xa0</p> <p> <strong> <u> Please Walkin directly with a copy of this mail along with you Updated Resume and Your Documents.</u> </strong> </p> <p> </p><p> <u> <strong> Contact Details:-</strong> </u> Sukhmeet</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 +91 6750 5660</p> <p> \t\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 Email Id:-sukhmeet.k@mphasis.com</p> <p> </p> <p> <u> <strong> Venue:-</strong> </u> </p> <p> \xa0</p> <p> 4th Floor, Wing A, Bagmane World Technology Center, WTC 4, KR Puram, Marathahalli Outer Ring Road, Mahadevapura, Bangalore 560 048, India</p> <p> T +91 80 6750 5660 Ext. 5655 | CUG Ext. #5615655 |sukhmeet.k@mphasis.com</p> <p> </p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tKeyskills: Inbound Calls Handling, outbound calls handling, bpo calls handling, inhouse sales handling, voice process calls handling</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Urgent Opening in International Voice Process',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Opening-in-International-Voice-Process-MphasiS-Limited-Bengaluru-Bangalore-1-to-4-years-160615002854'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Growel Softech Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 4, 732440),
'description': [u'\t<p><span class="caps">IDQ</span> (Informatica Data Quality)</p>\n\n\t<p>Experience: <br />\n1) Total Years of Experience: 3- 8 Years<br />\n2) relevant in <span class="caps">IDQ</span> : 3-5 Years</p>\n\n\t<p>Notice Period: 10 Days</p>\n\n\t<p>Salary : 3 <span class="caps">LPA</span> &#8211; 12 <span class="caps">LPA</span></p>\n\n\t<p>Location : Banglore</p>\n\n\t<p>***Note: Only Immediate Joiners should apply.</p>\n\n\t<p>Conatct Details :<br />\n<span class="caps">PURVA</span><br />\n9503513294<br />\n020-30213108</p>\n\n\t<p>Salary: 3,50,000 &#8211; 8,50,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nData Quality data quality assurance Informatica Data Quality data quality control idq <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 4, 732305),
'salary': u'3,50,000 - 8,50,000 P.A',
'skills': [u'Data Quality'],
'title': u'IDQ (informatica Data Quality)/ (immediate Joiners Should Apply)',
'url': 'http://jobsearch.naukri.com/job-listings-IDQ-informatica-Data-Quality-immediate-Joiners-Should-Apply--Growel-Softech-Ltd-Bengaluru-Bangalore-3-to-8-years-160715007800'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:04 [scrapy] ERROR: Error processing {'company': u'Growel Softech Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 4, 732440),
'description': [u'\t<p><span class="caps">IDQ</span> (Informatica Data Quality)</p>\n\n\t<p>Experience: <br />\n1) Total Years of Experience: 3- 8 Years<br />\n2) relevant in <span class="caps">IDQ</span> : 3-5 Years</p>\n\n\t<p>Notice Period: 10 Days</p>\n\n\t<p>Salary : 3 <span class="caps">LPA</span> &#8211; 12 <span class="caps">LPA</span></p>\n\n\t<p>Location : Banglore</p>\n\n\t<p>***Note: Only Immediate Joiners should apply.</p>\n\n\t<p>Conatct Details :<br />\n<span class="caps">PURVA</span><br />\n9503513294<br />\n020-30213108</p>\n\n\t<p>Salary: 3,50,000 &#8211; 8,50,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nData Quality data quality assurance Informatica Data Quality data quality control idq <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 4, 732305),
'salary': u'3,50,000 - 8,50,000 P.A',
'skills': [u'Data Quality'],
'title': u'IDQ (informatica Data Quality)/ (immediate Joiners Should Apply)',
'url': 'http://jobsearch.naukri.com/job-listings-IDQ-informatica-Data-Quality-immediate-Joiners-Should-Apply--Growel-Softech-Ltd-Bengaluru-Bangalore-3-to-8-years-160715007800'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Joule Consulting Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 5, 697359),
'description': [u'\t<p><span class="caps">SUMMARY</span><br />\n3-6 Years of Exp in <span class="caps">HTML</span> 5<br />\n<span class="caps">JOB</span> <span class="caps">DESCRIPTION</span><br />\n<span class="caps">HTML</span>5/Javascript Developer <br />\nYears of Experience: 4 + years <br />\nSkill details: 4+ years of relevant experience in <span class="caps">HTML</span> 5 and UI, engineering, JavaScript, Object oriented JavaScript, <span class="caps">CSS</span>3, AngularJS, EmberJS, ReactJS, CanJS (atleast one of these is mandatory) , Responsive Web Design, <span class="caps">AJAX</span>, JQuery, JQueryUI, Strong understanding for performance aspects, <br />\nMust to have: Java Script, Good to have: <span class="caps">HTML</span>5, <span class="caps">CSS</span>3, Bootstrap, <span class="caps">LESS</span>, <span class="caps">SASS</span>, NodeJS, RequireJS </p>\n\n\t<p>Salary: 3,00,000 &#8211; 8,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJavascript <span class="caps">HTML</span> JQuery Ajax Java Web Designing Web Technologies <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 5, 697218),
'salary': u'3,00,000 - 8,00,000 P.A',
'skills': [u'Javascript',
u'HTML',
u'JQuery',
u'Ajax',
u'Java',
u'Web Designing',
u'Web Technologies'],
'title': u'HTML 5',
'url': 'http://jobsearch.naukri.com/job-listings-HTML-5-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-3-to-6-years-160715007820'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:05 [scrapy] ERROR: Error processing {'company': u'Joule Consulting Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 5, 697359),
'description': [u'\t<p><span class="caps">SUMMARY</span><br />\n3-6 Years of Exp in <span class="caps">HTML</span> 5<br />\n<span class="caps">JOB</span> <span class="caps">DESCRIPTION</span><br />\n<span class="caps">HTML</span>5/Javascript Developer <br />\nYears of Experience: 4 + years <br />\nSkill details: 4+ years of relevant experience in <span class="caps">HTML</span> 5 and UI, engineering, JavaScript, Object oriented JavaScript, <span class="caps">CSS</span>3, AngularJS, EmberJS, ReactJS, CanJS (atleast one of these is mandatory) , Responsive Web Design, <span class="caps">AJAX</span>, JQuery, JQueryUI, Strong understanding for performance aspects, <br />\nMust to have: Java Script, Good to have: <span class="caps">HTML</span>5, <span class="caps">CSS</span>3, Bootstrap, <span class="caps">LESS</span>, <span class="caps">SASS</span>, NodeJS, RequireJS </p>\n\n\t<p>Salary: 3,00,000 &#8211; 8,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJavascript <span class="caps">HTML</span> JQuery Ajax Java Web Designing Web Technologies <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 5, 697218),
'salary': u'3,00,000 - 8,00,000 P.A',
'skills': [u'Javascript',
u'HTML',
u'JQuery',
u'Ajax',
u'Java',
u'Web Designing',
u'Web Technologies'],
'title': u'HTML 5',
'url': 'http://jobsearch.naukri.com/job-listings-HTML-5-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-3-to-6-years-160715007820'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Intelli Search',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 6, 998361),
'description': [u'\t<p>product support executive / Technical support shall help one of the<br />\nworlds largest search engines customers to improve usage of tracking tools that will help customers accurately track their <span class="caps">ROI</span>. The executive will provide guidance / support via regularly planned multiple touch point communications that includes inbound / outbound calls &amp; emails. </p>\n\n\t<p>Salary: 2,00,000 &#8211; 4,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Voice</p>\n\n\t<p>Role:Associate/Senior Associate -(Technical)</p>\n\n\t<p>Keyskills <br />\nproduct support executive product support officer Technical support <span class="caps">INBOUND</span> <span class="caps">OUTBOUND</span> telesales telemarketing outbound sales <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>candidates with at least 1 year of calling experience in a business-to business (B2B) environment<br />\nFamiliarity with <span class="caps">CRM</span> process and Selling methodology<br />\nExceptional written and verbal communication skills (Native Languages)<br />\nWilling to work in any given shifts<br />\nBasic computer skills including Internet, Email, Word, Excel, PowerPoint</p>'],
'exp': u'2 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 6, 998301),
'salary': u'2,00,000 - 4,00,000 P.A',
'skills': [u'Technical support',
u'OUTBOUND',
u'telesales',
u'telemarketing',
u'outbound sales'],
'title': u'Product Support Executive / Technical Support',
'url': 'http://jobsearch.naukri.com/job-listings-Product-Support-Executive-Technical-Support-Intelli-Search-Bengaluru-Bangalore-2-to-5-years-160715007822'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:07 [scrapy] ERROR: Error processing {'company': u'Intelli Search',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 6, 998361),
'description': [u'\t<p>product support executive / Technical support shall help one of the<br />\nworlds largest search engines customers to improve usage of tracking tools that will help customers accurately track their <span class="caps">ROI</span>. The executive will provide guidance / support via regularly planned multiple touch point communications that includes inbound / outbound calls &amp; emails. </p>\n\n\t<p>Salary: 2,00,000 &#8211; 4,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Voice</p>\n\n\t<p>Role:Associate/Senior Associate -(Technical)</p>\n\n\t<p>Keyskills <br />\nproduct support executive product support officer Technical support <span class="caps">INBOUND</span> <span class="caps">OUTBOUND</span> telesales telemarketing outbound sales <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>candidates with at least 1 year of calling experience in a business-to business (B2B) environment<br />\nFamiliarity with <span class="caps">CRM</span> process and Selling methodology<br />\nExceptional written and verbal communication skills (Native Languages)<br />\nWilling to work in any given shifts<br />\nBasic computer skills including Internet, Email, Word, Excel, PowerPoint</p>'],
'exp': u'2 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 6, 998301),
'salary': u'2,00,000 - 4,00,000 P.A',
'skills': [u'Technical support',
u'OUTBOUND',
u'telesales',
u'telemarketing',
u'outbound sales'],
'title': u'Product Support Executive / Technical Support',
'url': 'http://jobsearch.naukri.com/job-listings-Product-Support-Executive-Technical-Support-Intelli-Search-Bengaluru-Bangalore-2-to-5-years-160715007822'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Growel Softech Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 8, 385687),
'description': [u'\t<p>We Have opening for&#8220;<span class="caps">PMO</span>&#8220;our client <span class="caps">CMM</span> 5LEVEL Company</p>\n\n\t<p><span class="caps">JOB</span> <span class="caps">DESCRIPTION</span></p>\n\n\t<p>Plans, directs, and co-ordinates the teams activities to manage and implement project and/or interrelated projects from contract/proposal initiation to final operational stage. </p>\n\n\t<p>Determines, monitors, and reviews all project economics to include costs, operational budgets, staffing requirements, resources, and risk. </p>\n\n\t<p>Leads the project team in determining client requirements and translating requirements into operational plans. </p>\n\n\t<p>Identifies and assembles the appropriate blend of resources to meet project needs and requirements; manages sub-contractors. </p>\n\n\t<p>Plans, schedules, monitors and reports on activities related to the project. </p>\n\n\t<p>Develops project control and reporting procedures and manages changes in operational plan. </p>\n\n\t<p>Undertakes status review meetings among project team members and clients. </p>\n\n\t<p>Works with management on project proposals, bids, contracts, estimates, and schedules. </p>\n\n\t<p>Coaches and advises team members to accomplish project goals, to meet established schedules, and resolve technical/operational issues. </p>\n\n\t<p>Proactively influences customers to apply project-planning methodologies. </p>\n\n\t<p>Ensures adherence to legally binding requirements. </p>\n\n\t<p>Controls project requirements, scope, and change management issues. </p>\n\n\t<p>Establishes appropriate metrics for measuring key project criteria. </p>\n\n\t<p>Develops, proposes, and negotiates project proposals, quotations, and add-ons to leadership and the client. </p>\n\n\t<p>Analyses needs and recommends appropriate planning concepts and tools to be used for all facets of planning, scheduling, and tracking projects. </p>\n\n\t<p>Analyses project progress/costs and facilitate the development of recommended alternatives. </p>\n\n\t<p>Integrates and uses Project Management methodologies. </p>\n\n\t<p>Creates communication plans, ensuring that appropriate information is exchanged among key stakeholders. </p>\n\n\t<p>Advises senior management on Project Management capability and risk. </p>\n\n\t<p>Maintains awareness on emerging technologies and Project Management techniques.</p>\n\n\t<p><span class="caps">REQUIRED</span> <span class="caps">SKILLS</span></p>\n\n\t<p>Demonstrates a basic knowledge of key HP Services operational policies, processes and methodologies applicable to project management. </p>\n\n\t<p>Understands project management methods.</p>\n\n\t<p>Provides reliable financial forecasts to management.</p>\n\n\t<p>Manages internal as well as external resources. </p>\n\n\t<p>Able to communicate the direct value our capabilities will provide to our business partners and customers.</p>\n\n\t<p>Demonstrated strong expertise within relevant fields or disciplines. Strong knowledge or business experience in other business units or functional areas of the company. Should know basic network technologies and be able to communicate within the context of the technology. Should be fluent in the English language.</p>\n\n\t<p>Salary: 6,50,000 &#8211; 12,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">PMO</span> project management office project coordinator program management office <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'7 - 12 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 8, 385629),
'salary': u'6,50,000 - 12,00,000 P.A',
'skills': [u'PMO'],
'title': u'PMO',
'url': 'http://jobsearch.naukri.com/job-listings-PMO-Growel-Softech-Ltd-Bengaluru-Bangalore-7-to-12-years-160715007829'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:08 [scrapy] ERROR: Error processing {'company': u'Growel Softech Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 8, 385687),
'description': [u'\t<p>We Have opening for&#8220;<span class="caps">PMO</span>&#8220;our client <span class="caps">CMM</span> 5LEVEL Company</p>\n\n\t<p><span class="caps">JOB</span> <span class="caps">DESCRIPTION</span></p>\n\n\t<p>Plans, directs, and co-ordinates the teams activities to manage and implement project and/or interrelated projects from contract/proposal initiation to final operational stage. </p>\n\n\t<p>Determines, monitors, and reviews all project economics to include costs, operational budgets, staffing requirements, resources, and risk. </p>\n\n\t<p>Leads the project team in determining client requirements and translating requirements into operational plans. </p>\n\n\t<p>Identifies and assembles the appropriate blend of resources to meet project needs and requirements; manages sub-contractors. </p>\n\n\t<p>Plans, schedules, monitors and reports on activities related to the project. </p>\n\n\t<p>Develops project control and reporting procedures and manages changes in operational plan. </p>\n\n\t<p>Undertakes status review meetings among project team members and clients. </p>\n\n\t<p>Works with management on project proposals, bids, contracts, estimates, and schedules. </p>\n\n\t<p>Coaches and advises team members to accomplish project goals, to meet established schedules, and resolve technical/operational issues. </p>\n\n\t<p>Proactively influences customers to apply project-planning methodologies. </p>\n\n\t<p>Ensures adherence to legally binding requirements. </p>\n\n\t<p>Controls project requirements, scope, and change management issues. </p>\n\n\t<p>Establishes appropriate metrics for measuring key project criteria. </p>\n\n\t<p>Develops, proposes, and negotiates project proposals, quotations, and add-ons to leadership and the client. </p>\n\n\t<p>Analyses needs and recommends appropriate planning concepts and tools to be used for all facets of planning, scheduling, and tracking projects. </p>\n\n\t<p>Analyses project progress/costs and facilitate the development of recommended alternatives. </p>\n\n\t<p>Integrates and uses Project Management methodologies. </p>\n\n\t<p>Creates communication plans, ensuring that appropriate information is exchanged among key stakeholders. </p>\n\n\t<p>Advises senior management on Project Management capability and risk. </p>\n\n\t<p>Maintains awareness on emerging technologies and Project Management techniques.</p>\n\n\t<p><span class="caps">REQUIRED</span> <span class="caps">SKILLS</span></p>\n\n\t<p>Demonstrates a basic knowledge of key HP Services operational policies, processes and methodologies applicable to project management. </p>\n\n\t<p>Understands project management methods.</p>\n\n\t<p>Provides reliable financial forecasts to management.</p>\n\n\t<p>Manages internal as well as external resources. </p>\n\n\t<p>Able to communicate the direct value our capabilities will provide to our business partners and customers.</p>\n\n\t<p>Demonstrated strong expertise within relevant fields or disciplines. Strong knowledge or business experience in other business units or functional areas of the company. Should know basic network technologies and be able to communicate within the context of the technology. Should be fluent in the English language.</p>\n\n\t<p>Salary: 6,50,000 &#8211; 12,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">PMO</span> project management office project coordinator program management office <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'7 - 12 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 8, 385629),
'salary': u'6,50,000 - 12,00,000 P.A',
'skills': [u'PMO'],
'title': u'PMO',
'url': 'http://jobsearch.naukri.com/job-listings-PMO-Growel-Softech-Ltd-Bengaluru-Bangalore-7-to-12-years-160715007829'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'VR1 Advisors',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 9, 311688),
'description': [u'\t<p>Hello<br />\nVR1 Advisors are professional Accounting and taxation advisory Service provider.<br />\nPresently we are looking for Jr. Associate;<br />\nExperian 1 to 4 Year <br />\nQualification: B.Com/MBA Finance<br />\nMust have an experience/knowledge in Tally.</p>\n\n\t<p>Excellent Communication skill. </p>\n\n\t<p>Primary Responsibilities and Accountability: </p>\n\n\t<p>- Daily accounting activities </p>\n\n\t<p>- Directly Interacting with Management for <span class="caps">MIS</span> &amp; process improvement.</p>\n\n\t<p>- Implements recommendation from management to improve accounting processes and procedures </p>\n\n\t<p>- Accounts Payable &amp; Accounts Receivable co-ordinations</p>\n\n\t<p>- Produces quarterly and annual financial statements and finance reports. </p>\n\n\t<p>- Plan and Manage the Statutory Audits/Tax Audit </p>\n\n\t<p>- General Ledger Reconciliation </p>\n\n\t<p>- Fixed Assets accounting/payment/comparison with budget/variance analysis/Maintenance of Register</p>\n\n\t<p>- Calculation of Depreciation Monthly/Yearly/statutory/as per Income tax </p>\n\n\t<p>- Support to manager in direct tax/Indirect tax work</p>\n\n\t<p>- Any other task to meet the job requirement </p>\n\n\t<p>Salary : as per experience </p>\n\n\t<p>You can send resume to: manjunatha.poojar@gmail.com</p>\n\n\t<p>Salary: 1,25,000 &#8211; 2,00,000 P.A </p>\n\n\t<p>Industry: Accounting / Finance </p>\n\n\t<p>Functional Area: Accounts , Finance , Tax , Company Secretary , Audit </p>\n\n\t<p>Role Category:Accounts</p>\n\n\t<p>Role:Accounts Executive/Accountant</p>\n\n\t<p>Keyskills <br />\nDaily Accounting Mba Finance General Ledger Auditing Accounts Payable Indirect Taxation Accounts Receivable Fixed Assets Direct Tax Income Tax <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, B.Com &#8211; Commerce</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 4 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 9, 311626),
'salary': u'1,25,000 - 2,00,000 P.A',
'skills': [u'Mba Finance',
u'Auditing',
u'Accounts Payable',
u'Accounts Receivable',
u'Direct Tax',
u'Income Tax'],
'title': u'Jr. Associate',
'url': 'http://jobsearch.naukri.com/job-listings-Jr-Associate-VR1-Advisors-Bengaluru-Bangalore-1-to-4-years-160715007288'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:09 [scrapy] ERROR: Error processing {'company': u'VR1 Advisors',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 9, 311688),
'description': [u'\t<p>Hello<br />\nVR1 Advisors are professional Accounting and taxation advisory Service provider.<br />\nPresently we are looking for Jr. Associate;<br />\nExperian 1 to 4 Year <br />\nQualification: B.Com/MBA Finance<br />\nMust have an experience/knowledge in Tally.</p>\n\n\t<p>Excellent Communication skill. </p>\n\n\t<p>Primary Responsibilities and Accountability: </p>\n\n\t<p>- Daily accounting activities </p>\n\n\t<p>- Directly Interacting with Management for <span class="caps">MIS</span> &amp; process improvement.</p>\n\n\t<p>- Implements recommendation from management to improve accounting processes and procedures </p>\n\n\t<p>- Accounts Payable &amp; Accounts Receivable co-ordinations</p>\n\n\t<p>- Produces quarterly and annual financial statements and finance reports. </p>\n\n\t<p>- Plan and Manage the Statutory Audits/Tax Audit </p>\n\n\t<p>- General Ledger Reconciliation </p>\n\n\t<p>- Fixed Assets accounting/payment/comparison with budget/variance analysis/Maintenance of Register</p>\n\n\t<p>- Calculation of Depreciation Monthly/Yearly/statutory/as per Income tax </p>\n\n\t<p>- Support to manager in direct tax/Indirect tax work</p>\n\n\t<p>- Any other task to meet the job requirement </p>\n\n\t<p>Salary : as per experience </p>\n\n\t<p>You can send resume to: manjunatha.poojar@gmail.com</p>\n\n\t<p>Salary: 1,25,000 &#8211; 2,00,000 P.A </p>\n\n\t<p>Industry: Accounting / Finance </p>\n\n\t<p>Functional Area: Accounts , Finance , Tax , Company Secretary , Audit </p>\n\n\t<p>Role Category:Accounts</p>\n\n\t<p>Role:Accounts Executive/Accountant</p>\n\n\t<p>Keyskills <br />\nDaily Accounting Mba Finance General Ledger Auditing Accounts Payable Indirect Taxation Accounts Receivable Fixed Assets Direct Tax Income Tax <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, B.Com &#8211; Commerce</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 4 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 9, 311626),
'salary': u'1,25,000 - 2,00,000 P.A',
'skills': [u'Mba Finance',
u'Auditing',
u'Accounts Payable',
u'Accounts Receivable',
u'Direct Tax',
u'Income Tax'],
'title': u'Jr. Associate',
'url': 'http://jobsearch.naukri.com/job-listings-Jr-Associate-VR1-Advisors-Bengaluru-Bangalore-1-to-4-years-160715007288'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Joule Consulting Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 10, 22333),
'description': [u'\t<p><span class="caps">JOB</span> <span class="caps">DESCRIPTION</span><br />\n<span class="caps">HTML</span>5/Javascript Developer <br />\nYears of Experience: 4 + years <br />\nSkill details: 4+ years of relevant experience in <span class="caps">HTML</span> 5 and UI, engineering, JavaScript, Object oriented JavaScript, <span class="caps">CSS</span>3, AngularJS, EmberJS, ReactJS, CanJS (atleast one of these is mandatory) , Responsive Web Design, <span class="caps">AJAX</span>, JQuery, JQueryUI, Strong understanding for performance aspects, <br />\nMust to have: Java Script, Good to have: <span class="caps">HTML</span>5, <span class="caps">CSS</span>3, Bootstrap, <span class="caps">LESS</span>, <span class="caps">SASS</span>, NodeJS, RequireJS </p>\n\n\t<p>Salary: 8,00,000 &#8211; 12,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJavascript <span class="caps">HTML</span> JQuery Ajax Java Web Designing Web Technologies <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'8 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 10, 22265),
'salary': u'8,00,000 - 12,00,000 P.A',
'skills': [u'Javascript',
u'HTML',
u'JQuery',
u'Ajax',
u'Java',
u'Web Designing',
u'Web Technologies'],
'title': u'HTML 5',
'url': 'http://jobsearch.naukri.com/job-listings-HTML-5-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-8-to-10-years-160715007850'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:10 [scrapy] ERROR: Error processing {'company': u'Joule Consulting Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 10, 22333),
'description': [u'\t<p><span class="caps">JOB</span> <span class="caps">DESCRIPTION</span><br />\n<span class="caps">HTML</span>5/Javascript Developer <br />\nYears of Experience: 4 + years <br />\nSkill details: 4+ years of relevant experience in <span class="caps">HTML</span> 5 and UI, engineering, JavaScript, Object oriented JavaScript, <span class="caps">CSS</span>3, AngularJS, EmberJS, ReactJS, CanJS (atleast one of these is mandatory) , Responsive Web Design, <span class="caps">AJAX</span>, JQuery, JQueryUI, Strong understanding for performance aspects, <br />\nMust to have: Java Script, Good to have: <span class="caps">HTML</span>5, <span class="caps">CSS</span>3, Bootstrap, <span class="caps">LESS</span>, <span class="caps">SASS</span>, NodeJS, RequireJS </p>\n\n\t<p>Salary: 8,00,000 &#8211; 12,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJavascript <span class="caps">HTML</span> JQuery Ajax Java Web Designing Web Technologies <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'8 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 10, 22265),
'salary': u'8,00,000 - 12,00,000 P.A',
'skills': [u'Javascript',
u'HTML',
u'JQuery',
u'Ajax',
u'Java',
u'Web Designing',
u'Web Technologies'],
'title': u'HTML 5',
'url': 'http://jobsearch.naukri.com/job-listings-HTML-5-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-8-to-10-years-160715007850'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Emerald-Treasury-Trade-Services-Trade-Ops-Manager-C11-JPMorgan-Chase-Bengaluru-Bangalore-7-to-10-years-150715901006> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:10 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Emerald-Treasury-Trade-Services-Trade-Ops-Manager-C11-JPMorgan-Chase-Bengaluru-Bangalore-7-to-10-years-150715901006> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Engineer-Sr-Staff-IC-Design-Broadcom-India-Pvt-Ltd-Bengaluru-Bangalore-7-to-10-years-250615901013> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:10 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Engineer-Sr-Staff-IC-Design-Broadcom-India-Pvt-Ltd-Bengaluru-Bangalore-7-to-10-years-250615901013> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Engineer-Sr-Staff-IC-Design-Broadcom-India-Pvt-Ltd-Bengaluru-Bangalore-9-to-12-years-240615901306> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:10 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Engineer-Sr-Staff-IC-Design-Broadcom-India-Pvt-Ltd-Bengaluru-Bangalore-9-to-12-years-240615901306> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-vEPC-Developer-lead-NetCracker-Technology-Solutions-India-Pvt-Ltd-Bengaluru-Bangalore-5-to-10-years-240615002641> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:10 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-vEPC-Developer-lead-NetCracker-Technology-Solutions-India-Pvt-Ltd-Bengaluru-Bangalore-5-to-10-years-240615002641> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opportunity-for-System-Architects-with-E-Commerce-Domain-Expertise--Huawei-Technologies-India-Pvt-Ltd-Bengaluru-Bangalore-9-to-14-years-290515000372> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:10 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opportunity-for-System-Architects-with-E-Commerce-Domain-Expertise--Huawei-Technologies-India-Pvt-Ltd-Bengaluru-Bangalore-9-to-14-years-290515000372> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Software-Developer-Siemens-Limited-Bengaluru-Bangalore-5-to-8-years-290615900718> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:10 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Software-Developer-Siemens-Limited-Bengaluru-Bangalore-5-to-8-years-290615900718> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Scrum-Master-c-net--Siemens-Limited-Bengaluru-Bangalore-7-to-10-years-290615900700> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:10 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Scrum-Master-c-net--Siemens-Limited-Bengaluru-Bangalore-7-to-10-years-290615900700> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Excellent-Opening-for-Servicenow-Tool-Development-with-Leading-MNC-CBSI-India-Pvt-Ltd--Bengaluru-Bangalore-3-to-8-years-160715007869> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:10 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Excellent-Opening-for-Servicenow-Tool-Development-with-Leading-MNC-CBSI-India-Pvt-Ltd--Bengaluru-Bangalore-3-to-8-years-160715007869> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
ERROR:scrapy.core.scraper:Error processing {'company': u'Joule Consulting Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 50907),
'description': [u'\t<p>6 to 8 years years of Experience testing Software<br />\nExperience with one or more modern programming/scripting languages: Python, Perl, <span class="caps">CURL</span><br />\nExperience with Malware security software and techniques.<br />\nExperience with testing cloud service application over a Cloud Infrastructure like Amazon Web Services (<span class="caps">AWS</span>).<br />\nExperience with some sort of &#8220;big data&#8221; stack: Hadoop, Dynamo DB, HBase, Cassadra, Mongo, PostgreSQL<br />\nExperience with <span class="caps">RESTFUL</span> <span class="caps">API</span>s, Web Sockets, <span class="caps">SSL</span>/TLS<br />\nSome understanding of content formats (e.g. <span class="caps">HTML</span>, <span class="caps">PDF</span>, <span class="caps">XLS</span>, <span class="caps">DOC</span>) </p>\n\n\t<p>Salary: 6,00,000 &#8211; 10,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nHBase Hadoop Test Engineering Software Testing Curl Web Services Python Web Technologies Postgresql Perl <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'6 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 50845),
'salary': u'6,00,000 - 10,00,000 P.A',
'skills': [u'Test Engineering',
u'Software Testing',
u'Web Services',
u'Python',
u'Web Technologies',
u'Postgresql',
u'Perl'],
'title': u'Test Engineer 4',
'url': 'http://jobsearch.naukri.com/job-listings-Test-Engineer-4-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-6-to-8-years-160715007794'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:11 [scrapy] ERROR: Error processing {'company': u'Joule Consulting Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 50907),
'description': [u'\t<p>6 to 8 years years of Experience testing Software<br />\nExperience with one or more modern programming/scripting languages: Python, Perl, <span class="caps">CURL</span><br />\nExperience with Malware security software and techniques.<br />\nExperience with testing cloud service application over a Cloud Infrastructure like Amazon Web Services (<span class="caps">AWS</span>).<br />\nExperience with some sort of &#8220;big data&#8221; stack: Hadoop, Dynamo DB, HBase, Cassadra, Mongo, PostgreSQL<br />\nExperience with <span class="caps">RESTFUL</span> <span class="caps">API</span>s, Web Sockets, <span class="caps">SSL</span>/TLS<br />\nSome understanding of content formats (e.g. <span class="caps">HTML</span>, <span class="caps">PDF</span>, <span class="caps">XLS</span>, <span class="caps">DOC</span>) </p>\n\n\t<p>Salary: 6,00,000 &#8211; 10,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nHBase Hadoop Test Engineering Software Testing Curl Web Services Python Web Technologies Postgresql Perl <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'6 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 50845),
'salary': u'6,00,000 - 10,00,000 P.A',
'skills': [u'Test Engineering',
u'Software Testing',
u'Web Services',
u'Python',
u'Web Technologies',
u'Postgresql',
u'Perl'],
'title': u'Test Engineer 4',
'url': 'http://jobsearch.naukri.com/job-listings-Test-Engineer-4-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-6-to-8-years-160715007794'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'CES Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 701316),
'description': [u'\t<p>Head of Indian Operations / Country President (India)<br />\nAge group: 45 &#8211; 55 years <br />\nMinimum Educational qualifications: Engineering Degree in IT related subject. <br />\nDesirable: Masters degree in IT related Engineering or Business Management.<br />\nTotal Experience: Total 20+ years experience of which last 5 years should be in a very senior position like VP (R&D) / VP Operations / Unit head or Country Head preferably in a Indian Subsidiary of a Multinational / US based IT / <span class="caps">ITES</span> Company.<br />\nRoles and responsibilities include (but not limited to) the following: <br />\nAs Head of the India set up, is overall responsible for hiring, motivating and retaining resources to support the Business needs of the parent company which is engaged in developing Telecom Software. <br />\nResponsible for day to day running the India set up efficiently, operating within the allocated budget. Responsible for Resolution of internal conflicts,those that are escalated, in an efficient and timely manner.<br />\nResponsible for putting Recruitments and Administration processes and policies in place and monitoring / overseeing the implementation / fine tuning the same based on needs of the organization, for smooth and efficient functioning of the company.<br />\nAt a higher level, interact with the Management team of the parent company on a regular basis, to understand the Business needs/ strategies of the Company and translate them into action plans to support the same efficiently, out of Indian entity.<br />\nAs a resident director in the board of the Indian subsidiary, is responsible for ensuring statutory and legal compliances with Indian Tax laws in general and those applicable to 100% <span class="caps">EOU</span> units in particular. Exposure to operations of a medium sized <span class="caps">STPI</span> unit or <span class="caps">SEZ</span> unit engaged in software export is desirable.<br />\nAs Indian company Resident Director&authorized signatory, responsible for statutory compliances related to Company matters with <span class="caps">ROC</span> , <span class="caps">STPI</span> , <span class="caps">RBI</span> , customs, Shops and establishment act etc. <br />\nAs Indian company Head and authorized signatory, responsible for <span class="caps">TDS</span>, PF, <span class="caps">ESI</span> other Labor law related compliances. <br />\nShould be capable of stepping in / taking over &amp; resolving exceptional / Crisis situations like sudden ramp up of resources and infrastructure and maintain delivery schedules out of India. </p>\n\n\t<p>Salary: Open </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Senior Management</p>\n\n\t<p>Role:Head/VP/GM-Technology(IT)/CTO</p>\n\n\t<p>Keyskills <br />\nVP R&D VP operations statutory compliances <span class="caps">ROC</span> <span class="caps">STPI</span> <span class="caps">RBI</span> <span class="caps">TDS</span> PF <span class="caps">ESI</span> labour laws Resident Director customs Customs Handling Labor law Indian Tax laws Legal Compliance <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers, Electronics/Telecommunication</p>\n\n\t<p>PG:MBA/PGDM &#8211; Any Specialization, HR/Industrial Relations, Information Technology, International Business, M.Tech &#8211; Computers, Electronics/Telecommunication</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'20 - 25 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 701248),
'salary': u'Open',
'skills': [u'VP operations',
u'statutory compliances',
u'STPI',
u'RBI',
u'TDS',
u'PF',
u'ESI',
u'labour laws',
u'Legal Compliance'],
'title': u'Head of Indian Operations for one of Clients in Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Head-of-Indian-Operations-for-one-of-Clients-in-Bangalore-CES-Ltd--Bengaluru-Bangalore-20-to-25-years-150715000090'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:11 [scrapy] ERROR: Error processing {'company': u'CES Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 701316),
'description': [u'\t<p>Head of Indian Operations / Country President (India)<br />\nAge group: 45 &#8211; 55 years <br />\nMinimum Educational qualifications: Engineering Degree in IT related subject. <br />\nDesirable: Masters degree in IT related Engineering or Business Management.<br />\nTotal Experience: Total 20+ years experience of which last 5 years should be in a very senior position like VP (R&D) / VP Operations / Unit head or Country Head preferably in a Indian Subsidiary of a Multinational / US based IT / <span class="caps">ITES</span> Company.<br />\nRoles and responsibilities include (but not limited to) the following: <br />\nAs Head of the India set up, is overall responsible for hiring, motivating and retaining resources to support the Business needs of the parent company which is engaged in developing Telecom Software. <br />\nResponsible for day to day running the India set up efficiently, operating within the allocated budget. Responsible for Resolution of internal conflicts,those that are escalated, in an efficient and timely manner.<br />\nResponsible for putting Recruitments and Administration processes and policies in place and monitoring / overseeing the implementation / fine tuning the same based on needs of the organization, for smooth and efficient functioning of the company.<br />\nAt a higher level, interact with the Management team of the parent company on a regular basis, to understand the Business needs/ strategies of the Company and translate them into action plans to support the same efficiently, out of Indian entity.<br />\nAs a resident director in the board of the Indian subsidiary, is responsible for ensuring statutory and legal compliances with Indian Tax laws in general and those applicable to 100% <span class="caps">EOU</span> units in particular. Exposure to operations of a medium sized <span class="caps">STPI</span> unit or <span class="caps">SEZ</span> unit engaged in software export is desirable.<br />\nAs Indian company Resident Director&authorized signatory, responsible for statutory compliances related to Company matters with <span class="caps">ROC</span> , <span class="caps">STPI</span> , <span class="caps">RBI</span> , customs, Shops and establishment act etc. <br />\nAs Indian company Head and authorized signatory, responsible for <span class="caps">TDS</span>, PF, <span class="caps">ESI</span> other Labor law related compliances. <br />\nShould be capable of stepping in / taking over &amp; resolving exceptional / Crisis situations like sudden ramp up of resources and infrastructure and maintain delivery schedules out of India. </p>\n\n\t<p>Salary: Open </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Senior Management</p>\n\n\t<p>Role:Head/VP/GM-Technology(IT)/CTO</p>\n\n\t<p>Keyskills <br />\nVP R&D VP operations statutory compliances <span class="caps">ROC</span> <span class="caps">STPI</span> <span class="caps">RBI</span> <span class="caps">TDS</span> PF <span class="caps">ESI</span> labour laws Resident Director customs Customs Handling Labor law Indian Tax laws Legal Compliance <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers, Electronics/Telecommunication</p>\n\n\t<p>PG:MBA/PGDM &#8211; Any Specialization, HR/Industrial Relations, Information Technology, International Business, M.Tech &#8211; Computers, Electronics/Telecommunication</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'20 - 25 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 701248),
'salary': u'Open',
'skills': [u'VP operations',
u'statutory compliances',
u'STPI',
u'RBI',
u'TDS',
u'PF',
u'ESI',
u'labour laws',
u'Legal Compliance'],
'title': u'Head of Indian Operations for one of Clients in Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Head-of-Indian-Operations-for-one-of-Clients-in-Bangalore-CES-Ltd--Bengaluru-Bangalore-20-to-25-years-150715000090'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Allegis Services India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 731961),
'description': [u'<html><body><div><tr> <td valign="top"> <div class="content"> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <noscript> <img src="http://b.scorecardresearch.com/p?c1=2&amp;c2=6035313&amp;cv=2.0&amp;cj=1"/> </noscript> </td></tr></table></div></td></tr></div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Allegis Group is Hiring Recruitment Manager',
'url': 'http://jobsearch.naukri.com/job-listings-Allegis-Group-is-Hiring-Recruitment-Manager-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-5-to-8-years-160715007780'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:11 [scrapy] ERROR: Error processing {'company': u'Allegis Services India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 11, 731961),
'description': [u'<html><body><div><tr> <td valign="top"> <div class="content"> <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td valign="top"> <noscript> <img src="http://b.scorecardresearch.com/p?c1=2&amp;c2=6035313&amp;cv=2.0&amp;cj=1"/> </noscript> </td></tr></table></div></td></tr></div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Allegis Group is Hiring Recruitment Manager',
'url': 'http://jobsearch.naukri.com/job-listings-Allegis-Group-is-Hiring-Recruitment-Manager-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-5-to-8-years-160715007780'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'SAP India Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 12, 890641),
'description': [u'\t<p>As market leader in enterprise application software, <span class="caps">SAP</span> helps companies of all sizes and industries innovate through simplification. From the back office to the boardroom, warehouse to storefront, on premise to cloud, desktop to mobile device <span class="caps">SAP</span> empowers people and organizations to work together more efficiently and use business insight more effectively to stay ahead of the competition. <span class="caps">SAP</span> applications and services enable customers to operate profitably, adapt continuously, and grow sustainably.</p>\n\n\t<p><span class="caps">TBD</span></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nDeveloper <span class="caps">ERP</span> <span class="caps">SAP</span> Cloud Programmer Technology <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:M.Tech &#8211; Computers</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 12, 890580),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Developer', u'ERP', u'SAP', u'Technology'],
'title': u'Senior Developer Job',
'url': 'http://jobsearch.naukri.com/job-listings-Senior-Developer-Job-SAP-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-150715901244'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:12 [scrapy] ERROR: Error processing {'company': u'SAP India Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 12, 890641),
'description': [u'\t<p>As market leader in enterprise application software, <span class="caps">SAP</span> helps companies of all sizes and industries innovate through simplification. From the back office to the boardroom, warehouse to storefront, on premise to cloud, desktop to mobile device <span class="caps">SAP</span> empowers people and organizations to work together more efficiently and use business insight more effectively to stay ahead of the competition. <span class="caps">SAP</span> applications and services enable customers to operate profitably, adapt continuously, and grow sustainably.</p>\n\n\t<p><span class="caps">TBD</span></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nDeveloper <span class="caps">ERP</span> <span class="caps">SAP</span> Cloud Programmer Technology <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:M.Tech &#8211; Computers</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 12, 890580),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Developer', u'ERP', u'SAP', u'Technology'],
'title': u'Senior Developer Job',
'url': 'http://jobsearch.naukri.com/job-listings-Senior-Developer-Job-SAP-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-6-years-150715901244'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Citibank N.A',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 13, 708621),
'description': [u'\t<p>Delivering on Card Acquisition/PL targets through Direct Sales and Xsell of other banking products such as Mortgage, Banking accounts and third party products such as Insurance <br />\nAbility to recognize Business potential for acquiring new customers in the corporate space and formulate acquisition initiatives <br />\nCarry out sales activities with the view to enhance market share of Personal loans/Cards in existing Corporates as well as entrench in new corporate relationships <br />\nProvide complete and comprehensive information on products, services, charges etc. proactively to the customer and ensure best service standards <br />\nResponsible for liaisoning with CA/Brokers, Developer engagement, etc for sourcing/referring Mortgage loans <br />\nAbility to Influence the customer for entering into a banking relationship with the bank by identifying the right product <br />\nUnderstanding of basic Financials/Ability to analyze data <br />\nGood Communication skills <br />\nEnsure that <span class="caps">KYC</span>/AML and other compliance norms are strictly adhered to <br />\nAggressive and Business Oriented <br />\nExecution drive with fulfillment ownership </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales/Business Development Manager</p>\n\n\t<p>Keyskills <br />\ndirect sales mba service sourcing fulfillment kyc standards good communication skills third party products market share <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p><span class="caps">MBA</span>/Graduate with 0 &#8211; 2 sales experience</p>'],
'exp': u'0 - 2 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 13, 708547),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'direct sales', u'mba', u'sourcing'],
'title': u'Corporate Sales Associate',
'url': 'http://jobsearch.naukri.com/job-listings-Corporate-Sales-Associate-Citibank-N-A-Bengaluru-Bangalore-0-to-2-years-160715900447'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:13 [scrapy] ERROR: Error processing {'company': u'Citibank N.A',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 13, 708621),
'description': [u'\t<p>Delivering on Card Acquisition/PL targets through Direct Sales and Xsell of other banking products such as Mortgage, Banking accounts and third party products such as Insurance <br />\nAbility to recognize Business potential for acquiring new customers in the corporate space and formulate acquisition initiatives <br />\nCarry out sales activities with the view to enhance market share of Personal loans/Cards in existing Corporates as well as entrench in new corporate relationships <br />\nProvide complete and comprehensive information on products, services, charges etc. proactively to the customer and ensure best service standards <br />\nResponsible for liaisoning with CA/Brokers, Developer engagement, etc for sourcing/referring Mortgage loans <br />\nAbility to Influence the customer for entering into a banking relationship with the bank by identifying the right product <br />\nUnderstanding of basic Financials/Ability to analyze data <br />\nGood Communication skills <br />\nEnsure that <span class="caps">KYC</span>/AML and other compliance norms are strictly adhered to <br />\nAggressive and Business Oriented <br />\nExecution drive with fulfillment ownership </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales/Business Development Manager</p>\n\n\t<p>Keyskills <br />\ndirect sales mba service sourcing fulfillment kyc standards good communication skills third party products market share <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p><span class="caps">MBA</span>/Graduate with 0 &#8211; 2 sales experience</p>'],
'exp': u'0 - 2 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 13, 708547),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'direct sales', u'mba', u'sourcing'],
'title': u'Corporate Sales Associate',
'url': 'http://jobsearch.naukri.com/job-listings-Corporate-Sales-Associate-Citibank-N-A-Bengaluru-Bangalore-0-to-2-years-160715900447'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'JPMorgan Chase',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 14, 480766),
'description': [u'\t<p><span class="caps">PURPOSE</span> </p>\n\n\t<p>The purpose of the job is to process &amp; validate client onboarding, account opening &amp; various types of maintenance requests on client accounts on a daily basis as well as capturing the number of requests processed for the <span class="caps">MIS</span>/Reporting purposes. Gain end to end knowledge of the process &amp; as an <span class="caps">SME</span>, assist the team in resolving their queries on various request types &amp; involve in effective transfer of knowledge. </p>\n\n\t<p><span class="caps">KEY</span> <span class="caps">PERFORMANCE</span> <span class="caps">AREAS</span> <span class="caps">AND</span> % <span class="caps">TIME</span> </p>\n\n\t<p>Processing &amp; validating client onboarding, account opening &amp; various types of maintenance requests on client accounts for the private banking clients. <br />\nGain end to end knowledge of the process &amp; as an <span class="caps">SME</span>, assist the team in resolving their queries on various request types. <br />\nHandling all miscellaneous requests related to the process &amp; assist the team with research &amp; investigation as required. <br />\nAbility to review the <span class="caps">SOP</span>s of the process &amp; incorporate the necessary changes/updates as required. Updation of other process related information (eg. Procedural changes, Errors, <span class="caps">MIS</span> reports). Sharing the updates/changes made effectively with the team. <br />\nEffective transfer of knowledge &amp; new learnings encountered in the process with the team. <br />\nGood on <span class="caps">MIS</span> &amp; Reporting requirements. <br />\n100 % adherence to procedures to ensure that there is not bad client experience. <br />\nEnsure adherence to operational procedures to complete task in an accurate and timely manner. <br />\nTo provide processing support for effective and efficient process delivery. <br />\nMaintain optimal Productivity &amp; Accuracy levels as defined for the process. <br />\nEnsure timely follow-ups on the pending/ageing requests, if any. <br />\nEnsure that all requests are completed before cutoff and there is no <span class="caps">SLA</span> miss. <br />\nCapture the details of the requests processed on a daily basis for the <span class="caps">MIS</span>/Reporting purposes. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Back Office/Web/Transaction Processing</p>\n\n\t<p>Role:Associate/Senior Associate -(NonTechnical)</p>\n\n\t<p>Keyskills <br />\naccounts sme process improvement financial services problem solving analytical operational handling reference data ms outlook <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Com &#8211; Commerce</p>\n\n\t<p>PG:MBA/PGDM &#8211; Finance</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Minimum qualifications Graduate (Bachelors Degree in Commerce/other related background) with Good Product &amp; Process Knowledge, Ability to perform Research &amp; Investigation, Good Problem Solving &amp; Analytical Skills, <span class="caps">MIS</span> &amp; Reporting Skills, Ability to Transfer Knowledge, Identify opportunities for process improvement/improve efficiency. </p>\n\n\t<p>Minimum experience Min 3 years experience in Financial Services environment </p>\n\n\t<p>Key competencies must indicate competencies essential to do the job: </p>\n\n\t<p>o Good end to end knowledge of the process &amp; ability to transfer the knowledge effectively. </p>\n\n\t<p>o Good problem solving, analytical &amp; reporting skills. </p>\n\n\t<p>o This role requires meticulous attention to detail. </p>\n\n\t<p>o Ensure adherence of operational procedures to complete task in an accurate and timely manner. </p>\n\n\t<p>o An acute awareness of the high risk, time critical and complex nature of the Private Banking environment, an ability to work under pressure and to meet tight deadlines is essential. </p>\n\n\t<p>Flexible to work shifts (primarily NA), overtime and on holidays. <br />\nKnowledge of MS Word, MS Excel, MS PowerPoint &amp; MS Outlook. </p>\n\n\t<p>o Ability to work in a deadline driven environment. </p>\n\n\t<p>o A proactive approach to problem solving, taking ownership of issues and having the determination to follow things through. </p>\n\n\t<p>o Client focused. </p>\n\n\t<p>o Good time management skills </p>\n\n\t<p>o Uses initiative &amp; readily questions. </p>\n\n\t<p>o Must be very detailed oriented. </p>\n\n\t<p>o Excellent written &amp; spoken English communication skills. </p>\n\n\t<p>o An appreciation of control and quality issues. </p>\n\n\t<p>o Strong team player and has the capacity to build good working relationships with cross functional/geographical teams </p>\n\n\t<p>Result oriented, accepting responsibilities and challenges that take them outside their comfort zone <br />\nRisk aware &amp; Control orientated. <br />\nEscalate timely as &amp; when required. </p>\n\n\t<p>o Support the team in their mission to provide top quality operations. </p>\n\n\t<p>o Document procedures and identify requirements for additional controls. </p>\n\n\t<p>o Completion of daily checklist and reporting. </p>\n\n\t<p>o Establish excellent relationships with various internal departments and external parties with whom interaction is required. </p>\n\n\t<p>o Actively work with the team to resolve exceptions. Prepare case notes and discuss learning&#8217;s with team. </p>\n\n\t<p>o Look for opportunities to improve process efficiency.</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 14, 480702),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'accounts',
u'sme',
u'process improvement',
u'financial services',
u'problem solving',
u'analytical',
u'reference data',
u'ms outlook'],
'title': u'Operations Analyst - AM- CI Reference Data',
'url': 'http://jobsearch.naukri.com/job-listings-Operations-Analyst-AM-CI-Reference-Data-JPMorgan-Chase-Bengaluru-Bangalore-3-to-6-years-150715900590'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:14 [scrapy] ERROR: Error processing {'company': u'JPMorgan Chase',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 14, 480766),
'description': [u'\t<p><span class="caps">PURPOSE</span> </p>\n\n\t<p>The purpose of the job is to process &amp; validate client onboarding, account opening &amp; various types of maintenance requests on client accounts on a daily basis as well as capturing the number of requests processed for the <span class="caps">MIS</span>/Reporting purposes. Gain end to end knowledge of the process &amp; as an <span class="caps">SME</span>, assist the team in resolving their queries on various request types &amp; involve in effective transfer of knowledge. </p>\n\n\t<p><span class="caps">KEY</span> <span class="caps">PERFORMANCE</span> <span class="caps">AREAS</span> <span class="caps">AND</span> % <span class="caps">TIME</span> </p>\n\n\t<p>Processing &amp; validating client onboarding, account opening &amp; various types of maintenance requests on client accounts for the private banking clients. <br />\nGain end to end knowledge of the process &amp; as an <span class="caps">SME</span>, assist the team in resolving their queries on various request types. <br />\nHandling all miscellaneous requests related to the process &amp; assist the team with research &amp; investigation as required. <br />\nAbility to review the <span class="caps">SOP</span>s of the process &amp; incorporate the necessary changes/updates as required. Updation of other process related information (eg. Procedural changes, Errors, <span class="caps">MIS</span> reports). Sharing the updates/changes made effectively with the team. <br />\nEffective transfer of knowledge &amp; new learnings encountered in the process with the team. <br />\nGood on <span class="caps">MIS</span> &amp; Reporting requirements. <br />\n100 % adherence to procedures to ensure that there is not bad client experience. <br />\nEnsure adherence to operational procedures to complete task in an accurate and timely manner. <br />\nTo provide processing support for effective and efficient process delivery. <br />\nMaintain optimal Productivity &amp; Accuracy levels as defined for the process. <br />\nEnsure timely follow-ups on the pending/ageing requests, if any. <br />\nEnsure that all requests are completed before cutoff and there is no <span class="caps">SLA</span> miss. <br />\nCapture the details of the requests processed on a daily basis for the <span class="caps">MIS</span>/Reporting purposes. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Back Office/Web/Transaction Processing</p>\n\n\t<p>Role:Associate/Senior Associate -(NonTechnical)</p>\n\n\t<p>Keyskills <br />\naccounts sme process improvement financial services problem solving analytical operational handling reference data ms outlook <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Com &#8211; Commerce</p>\n\n\t<p>PG:MBA/PGDM &#8211; Finance</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Minimum qualifications Graduate (Bachelors Degree in Commerce/other related background) with Good Product &amp; Process Knowledge, Ability to perform Research &amp; Investigation, Good Problem Solving &amp; Analytical Skills, <span class="caps">MIS</span> &amp; Reporting Skills, Ability to Transfer Knowledge, Identify opportunities for process improvement/improve efficiency. </p>\n\n\t<p>Minimum experience Min 3 years experience in Financial Services environment </p>\n\n\t<p>Key competencies must indicate competencies essential to do the job: </p>\n\n\t<p>o Good end to end knowledge of the process &amp; ability to transfer the knowledge effectively. </p>\n\n\t<p>o Good problem solving, analytical &amp; reporting skills. </p>\n\n\t<p>o This role requires meticulous attention to detail. </p>\n\n\t<p>o Ensure adherence of operational procedures to complete task in an accurate and timely manner. </p>\n\n\t<p>o An acute awareness of the high risk, time critical and complex nature of the Private Banking environment, an ability to work under pressure and to meet tight deadlines is essential. </p>\n\n\t<p>Flexible to work shifts (primarily NA), overtime and on holidays. <br />\nKnowledge of MS Word, MS Excel, MS PowerPoint &amp; MS Outlook. </p>\n\n\t<p>o Ability to work in a deadline driven environment. </p>\n\n\t<p>o A proactive approach to problem solving, taking ownership of issues and having the determination to follow things through. </p>\n\n\t<p>o Client focused. </p>\n\n\t<p>o Good time management skills </p>\n\n\t<p>o Uses initiative &amp; readily questions. </p>\n\n\t<p>o Must be very detailed oriented. </p>\n\n\t<p>o Excellent written &amp; spoken English communication skills. </p>\n\n\t<p>o An appreciation of control and quality issues. </p>\n\n\t<p>o Strong team player and has the capacity to build good working relationships with cross functional/geographical teams </p>\n\n\t<p>Result oriented, accepting responsibilities and challenges that take them outside their comfort zone <br />\nRisk aware &amp; Control orientated. <br />\nEscalate timely as &amp; when required. </p>\n\n\t<p>o Support the team in their mission to provide top quality operations. </p>\n\n\t<p>o Document procedures and identify requirements for additional controls. </p>\n\n\t<p>o Completion of daily checklist and reporting. </p>\n\n\t<p>o Establish excellent relationships with various internal departments and external parties with whom interaction is required. </p>\n\n\t<p>o Actively work with the team to resolve exceptions. Prepare case notes and discuss learning&#8217;s with team. </p>\n\n\t<p>o Look for opportunities to improve process efficiency.</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 14, 480702),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'accounts',
u'sme',
u'process improvement',
u'financial services',
u'problem solving',
u'analytical',
u'reference data',
u'ms outlook'],
'title': u'Operations Analyst - AM- CI Reference Data',
'url': 'http://jobsearch.naukri.com/job-listings-Operations-Analyst-AM-CI-Reference-Data-JPMorgan-Chase-Bengaluru-Bangalore-3-to-6-years-150715900590'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'HCL Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 15, 233987),
'description': [u'\t<p>To develop and deliver codes for the work assigned in accordance with time| quality and cost standards. (1.) Documentation work (2.) To develop the codes for the project as per work assignation. (3.) To maintain the existing project and resolving the issues occurring in the existing project. (4.) To work upon the new requests raised by the client and develop those features. Desired Profile Please refer to the Job description above Experience 2 &#8211; 5 Years Industry Type IT-Software / Software Services Role Software Developer Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG &#8211; Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords Technical Skills &#8211; Programming Scripting Languages &#8211; C Programming Contact HR</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Developer-HCL-Technologies-Bengaluru-Bangalore-2-to-5-years-150715901142'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:15 [scrapy] ERROR: Error processing {'company': u'HCL Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 15, 233987),
'description': [u'\t<p>To develop and deliver codes for the work assigned in accordance with time| quality and cost standards. (1.) Documentation work (2.) To develop the codes for the project as per work assignation. (3.) To maintain the existing project and resolving the issues occurring in the existing project. (4.) To work upon the new requests raised by the client and develop those features. Desired Profile Please refer to the Job description above Experience 2 &#8211; 5 Years Industry Type IT-Software / Software Services Role Software Developer Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG &#8211; Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords Technical Skills &#8211; Programming Scripting Languages &#8211; C Programming Contact HR</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Developer-HCL-Technologies-Bengaluru-Bangalore-2-to-5-years-150715901142'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'JPMorgan Chase',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 13678),
'description': [u'\t<p>Ensure sound understanding of the Standard Operating Procedure<br />\nAnalyze cases and apply resolutions methods as per <span class="caps">SOP</span> guidelines<br />\nManage case inventory &amp; ageing as per pending guidelines<br />\nRefer and transfer complex issues/inquiries to Subject matter expert &amp; Team Leader.<br />\nEnhance customer experience by meeting customer impact accuracy levels and reducing case resolution turn around time<br />\nEnsure processing discipline by meeting non customer impact accuracy levels and respond to escalations with a sense of urgency.<br />\nTake active participation in <span class="caps">PMR</span>, Q-board, team huddle and also identify areas for process improvement<br />\nComplete the assigned trainings in time </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Back Office/Web/Transaction Processing</p>\n\n\t<p>Role:Associate/Senior Associate -(NonTechnical)</p>\n\n\t<p>Keyskills <br />\nprocess improvement sop methods subject matter expert attention to detail team member team leader written communication m f adaptability <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Com &#8211; Commerce</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Graduate in Commerce (Prefered) or Graduate in any stream 0-2 Years</p>\n\n\t<p>Basic : ? Oral &amp; written communication skills ? Adaptability to change <br />\n? Aptitude for research &amp; analysis<br />\nAttention to detail<br />\nAbility to work as a team</p>\n\n\t<p><span class="caps">JPM</span>organ Chase is an Equal Opportunity and Affirmative Action Employer, M/F/D/V</p>'],
'exp': u'0 - 2 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 13620),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'process improvement', u'subject matter expert', u'team leader'],
'title': u'Team Member',
'url': 'http://jobsearch.naukri.com/job-listings-Team-Member-JPMorgan-Chase-Bengaluru-Bangalore-0-to-2-years-150715901036'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:16 [scrapy] ERROR: Error processing {'company': u'JPMorgan Chase',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 13678),
'description': [u'\t<p>Ensure sound understanding of the Standard Operating Procedure<br />\nAnalyze cases and apply resolutions methods as per <span class="caps">SOP</span> guidelines<br />\nManage case inventory &amp; ageing as per pending guidelines<br />\nRefer and transfer complex issues/inquiries to Subject matter expert &amp; Team Leader.<br />\nEnhance customer experience by meeting customer impact accuracy levels and reducing case resolution turn around time<br />\nEnsure processing discipline by meeting non customer impact accuracy levels and respond to escalations with a sense of urgency.<br />\nTake active participation in <span class="caps">PMR</span>, Q-board, team huddle and also identify areas for process improvement<br />\nComplete the assigned trainings in time </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Back Office/Web/Transaction Processing</p>\n\n\t<p>Role:Associate/Senior Associate -(NonTechnical)</p>\n\n\t<p>Keyskills <br />\nprocess improvement sop methods subject matter expert attention to detail team member team leader written communication m f adaptability <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Com &#8211; Commerce</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Graduate in Commerce (Prefered) or Graduate in any stream 0-2 Years</p>\n\n\t<p>Basic : ? Oral &amp; written communication skills ? Adaptability to change <br />\n? Aptitude for research &amp; analysis<br />\nAttention to detail<br />\nAbility to work as a team</p>\n\n\t<p><span class="caps">JPM</span>organ Chase is an Equal Opportunity and Affirmative Action Employer, M/F/D/V</p>'],
'exp': u'0 - 2 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 13620),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'process improvement', u'subject matter expert', u'team leader'],
'title': u'Team Member',
'url': 'http://jobsearch.naukri.com/job-listings-Team-Member-JPMorgan-Chase-Bengaluru-Bangalore-0-to-2-years-150715901036'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'JPMorgan Chase',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 960970),
'description': [u'\t<p>Functional Responsibility </p>\n\n\t<p>Key player in the effort to design/re-engineer Prime Securities Processing platform components in close collaboration with architects and functional delivery leads <br />\nBe able to work effectively as part of a delivery team that is comprised of team members who are spread out globally <br />\nAdopt and improve high development standards and best practices in the re-engineering space <br />\nAdopt test driven approach for delivering technology solution </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\ndevelopment server analytical application development db2 cobol sybase standards vsam experience <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:M.Tech &#8211; Computers</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Qualifications </p>\n\n\t<p>7 years of hands-on application development / architecture experience in an enterprise level environment <br />\n5 years of Java development experience <br />\nExtensive experience developing <span class="caps">JAVA</span>/J2EE applications in N-tier architecture <br />\nExtensive experience working with large data, relational databases (Oracle/Sybase) &amp; data warehouse <br />\nExtensive experience with linux / unix operating systems <br />\nExperience with Java Message Service (<span class="caps">JMS</span>), <span class="caps">JEE</span> Connector Architecture, and transaction management <br />\nExperience with different presentation and server side frameworks (e.g. Spring, MyBatis etc.) <br />\nExperience with creating common framework services &amp; reusable components <br />\nKnowledge of <span class="caps">COBOL</span>/JCL/DB2/CICS/VSAM a plus from a re-engineering perspective <br />\nGood domain knowledge pertaining to Securities Processing / Financial Industry </p>\n\n\t<p>Competencies </p>\n\n\t<p>Very analytical and detailed oriented <br />\nStrong communication skills <br />\nSelf-motivated with willingness to learn <br />\nKeeps abreast of changes in technology <br />\nExcellent planning and organizational skills</p>'],
'exp': u'7 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 960909),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'server',
u'analytical',
u'application development',
u'db2',
u'cobol',
u'sybase',
u'vsam'],
'title': u'Emerald Treasury Trade Services Trade Ops Manager C11',
'url': 'http://jobsearch.naukri.com/job-listings-Emerald-Treasury-Trade-Services-Trade-Ops-Manager-C11-JPMorgan-Chase-Bengaluru-Bangalore-7-to-10-years-150715901006'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:16 [scrapy] ERROR: Error processing {'company': u'JPMorgan Chase',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 960970),
'description': [u'\t<p>Functional Responsibility </p>\n\n\t<p>Key player in the effort to design/re-engineer Prime Securities Processing platform components in close collaboration with architects and functional delivery leads <br />\nBe able to work effectively as part of a delivery team that is comprised of team members who are spread out globally <br />\nAdopt and improve high development standards and best practices in the re-engineering space <br />\nAdopt test driven approach for delivering technology solution </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\ndevelopment server analytical application development db2 cobol sybase standards vsam experience <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:M.Tech &#8211; Computers</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Qualifications </p>\n\n\t<p>7 years of hands-on application development / architecture experience in an enterprise level environment <br />\n5 years of Java development experience <br />\nExtensive experience developing <span class="caps">JAVA</span>/J2EE applications in N-tier architecture <br />\nExtensive experience working with large data, relational databases (Oracle/Sybase) &amp; data warehouse <br />\nExtensive experience with linux / unix operating systems <br />\nExperience with Java Message Service (<span class="caps">JMS</span>), <span class="caps">JEE</span> Connector Architecture, and transaction management <br />\nExperience with different presentation and server side frameworks (e.g. Spring, MyBatis etc.) <br />\nExperience with creating common framework services &amp; reusable components <br />\nKnowledge of <span class="caps">COBOL</span>/JCL/DB2/CICS/VSAM a plus from a re-engineering perspective <br />\nGood domain knowledge pertaining to Securities Processing / Financial Industry </p>\n\n\t<p>Competencies </p>\n\n\t<p>Very analytical and detailed oriented <br />\nStrong communication skills <br />\nSelf-motivated with willingness to learn <br />\nKeeps abreast of changes in technology <br />\nExcellent planning and organizational skills</p>'],
'exp': u'7 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 960909),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'server',
u'analytical',
u'application development',
u'db2',
u'cobol',
u'sybase',
u'vsam'],
'title': u'Emerald Treasury Trade Services Trade Ops Manager C11',
'url': 'http://jobsearch.naukri.com/job-listings-Emerald-Treasury-Trade-Services-Trade-Ops-Manager-C11-JPMorgan-Chase-Bengaluru-Bangalore-7-to-10-years-150715901006'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Broadcom India Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 999548),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>Broadcom Corporation (NASDAQ: BRCM), a FORTUNE 500? company, is a global leader and innovator in semiconductor solutions for wired and wireless communications. Broadcom? products seamlessly deliver voice, video, data and multimedia connectivity in the home, office and mobile environments. With the industry\\\'s broadest portfolio of state-of-the-art system-on-a-chip and embedded software solutions, Broadcom is changing the world by Connecting everything?.</p><p> Job Req ID: </p><span> 548741</span> <p> Job Posting Title: Engineer, Sr Staff- IC Design</p><p> City: Bangalore</p><p> State: Karnataka</p><p> Country: India</p><p> Alternate Location: India - Bangalore</p><p> Percent of Travel Required: 0%</p><p> Job Function: Engineering</p><p> Discipline: ENG-Hardware-IC Design</p><p> </p> <p> <span> Join a team of highly competent ASIC designers involved in design, verification, and implementation of advanced High Speed Interconnect Products for Communications Networks at speeds of 10Gbps . </span> <br/> <br/> <br/> <br/> <span> Play active role and be a part of the team that defines the verification strategy and the development. In this role you will be working with cutting verification of cutting edge technologies that include features related to FEC, Tx training, CDR, PLL tuning etc. </span> <br/> <br/> <br/> <br/> <span> Develop and execute coverage-driven verification test plans.</span> <br/> <br/> <span> Develop test suites for full chip and block level verification. </span> <br/> <br/> <span> Develop System Verilog, UMM test bench environment. </span> <br/> <br/> <span> Leverage your knowledge of constrained assertion based verification. </span> <br/> <br/> <span> Manage the regressions and analyze functional and code coverage metrics to fill the coverage holes.</span> <br/> <br/> <span> Reviewing and critiquing of peers verification plan &amp; env.</span> <br/> <br/> <span> Add automation and scripting wherever applicable in the chip design flow.</span> <br/> <br/> <span> Proactively identifying new methodologies or tools to address an upcoming verification challenges.</span> </p> <p> <br/> <br/> </p> <p> <span> MSEE/BSEE with 7 years in chip design verification. </span> <br/> <br/> <span> Experience in planning the verification process and creating realistic schedule estimates. </span> <br/> <br/> <span> Experience in High Level Verification languages: System Verilog is a must.</span> <br/> <br/> <span> Strong experience in high level Object Oriented test bench environments such as UVM or any equivalent. </span> <br/> <br/> <span> Experience in verifying complex verification blocks like PLL calibrations, multi clock, reset domain designs and mixed signal interfaces is a big plus.</span> <br/> <br/> <span> Knowledge of Ethernet and OTN standards and IEEE 802.3 Physical layer clauses like Cl.72, 93, 91 etc. is preferred</span> <br/> <br/> <span> Deeper understanding of PLLs/CDR concepts/AMS interfaces and networking IP designs are preferred.</span> <br/> <br/> <span> Experience in developing coverage-driven verification test plans and co-simulation verification (with SystemC/C, C ) </span> <br/> <br/> <span> Experience writing test specifications (plans) and creating directed and random test cases. </span> <br/> <br/> <span> Experience in developing constrained random verification environment </span> <br/> <br/> <span> Experience managing regression analysis </span> <br/> <br/> <span> Experience in reviewing and critiquing of test bench and test plans </span> <br/> <br/> <span> Strong debugging skills of Verilog RTL &amp; test environment is desired </span> <br/> <br/> <span> Able to adopt the use of new techniques and methodologies and promote their use within the project. </span> <br/> <br/> <span> A high level of pro-activity, self-organized and problem solving. </span> <br/> <br/> <span> Experience with assertion based verification is preferred </span> <br/> <br/> <span> Verification experience in SERDES, Ethernet Networking in Verilog is a big plus. </span> <br/> <br/> <span> Experience with scripting languages such as PERL, TCL Unix Scripting is highly desirable</span> </p> <p> <br/> </p> <p> <br/> <strong> Job Segment: </strong> <br/> <span> Semiconductor, Network, Engineer, Electrical Engineering, Embedded, Science, Technology, Engineering</span> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: IT-Software / Software Services</p><p>&#13;\n\t\t\tFunctional Area: IT Software - Embedded, EDA, VLSI, ASIC, Chip Design</p><p>&#13;\n\t\t\tRole Category: Software Developer</p><p>&#13;\n\t\t\tRole: Software Developer</p><p>&#13;\n\t\t\tKeyskills: Semiconductor, Network, Engineer, Electrical Engineering, Embedded, Science, Technology, Engineering</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Engineer, Sr Staff- IC Design',
'url': 'http://jobsearch.naukri.com/job-listings-Engineer-Sr-Staff-IC-Design-Broadcom-India-Pvt-Ltd-Bengaluru-Bangalore-7-to-10-years-250615901013'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:17 [scrapy] ERROR: Error processing {'company': u'Broadcom India Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 16, 999548),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>Broadcom Corporation (NASDAQ: BRCM), a FORTUNE 500? company, is a global leader and innovator in semiconductor solutions for wired and wireless communications. Broadcom? products seamlessly deliver voice, video, data and multimedia connectivity in the home, office and mobile environments. With the industry\\\'s broadest portfolio of state-of-the-art system-on-a-chip and embedded software solutions, Broadcom is changing the world by Connecting everything?.</p><p> Job Req ID: </p><span> 548741</span> <p> Job Posting Title: Engineer, Sr Staff- IC Design</p><p> City: Bangalore</p><p> State: Karnataka</p><p> Country: India</p><p> Alternate Location: India - Bangalore</p><p> Percent of Travel Required: 0%</p><p> Job Function: Engineering</p><p> Discipline: ENG-Hardware-IC Design</p><p> </p> <p> <span> Join a team of highly competent ASIC designers involved in design, verification, and implementation of advanced High Speed Interconnect Products for Communications Networks at speeds of 10Gbps . </span> <br/> <br/> <br/> <br/> <span> Play active role and be a part of the team that defines the verification strategy and the development. In this role you will be working with cutting verification of cutting edge technologies that include features related to FEC, Tx training, CDR, PLL tuning etc. </span> <br/> <br/> <br/> <br/> <span> Develop and execute coverage-driven verification test plans.</span> <br/> <br/> <span> Develop test suites for full chip and block level verification. </span> <br/> <br/> <span> Develop System Verilog, UMM test bench environment. </span> <br/> <br/> <span> Leverage your knowledge of constrained assertion based verification. </span> <br/> <br/> <span> Manage the regressions and analyze functional and code coverage metrics to fill the coverage holes.</span> <br/> <br/> <span> Reviewing and critiquing of peers verification plan &amp; env.</span> <br/> <br/> <span> Add automation and scripting wherever applicable in the chip design flow.</span> <br/> <br/> <span> Proactively identifying new methodologies or tools to address an upcoming verification challenges.</span> </p> <p> <br/> <br/> </p> <p> <span> MSEE/BSEE with 7 years in chip design verification. </span> <br/> <br/> <span> Experience in planning the verification process and creating realistic schedule estimates. </span> <br/> <br/> <span> Experience in High Level Verification languages: System Verilog is a must.</span> <br/> <br/> <span> Strong experience in high level Object Oriented test bench environments such as UVM or any equivalent. </span> <br/> <br/> <span> Experience in verifying complex verification blocks like PLL calibrations, multi clock, reset domain designs and mixed signal interfaces is a big plus.</span> <br/> <br/> <span> Knowledge of Ethernet and OTN standards and IEEE 802.3 Physical layer clauses like Cl.72, 93, 91 etc. is preferred</span> <br/> <br/> <span> Deeper understanding of PLLs/CDR concepts/AMS interfaces and networking IP designs are preferred.</span> <br/> <br/> <span> Experience in developing coverage-driven verification test plans and co-simulation verification (with SystemC/C, C ) </span> <br/> <br/> <span> Experience writing test specifications (plans) and creating directed and random test cases. </span> <br/> <br/> <span> Experience in developing constrained random verification environment </span> <br/> <br/> <span> Experience managing regression analysis </span> <br/> <br/> <span> Experience in reviewing and critiquing of test bench and test plans </span> <br/> <br/> <span> Strong debugging skills of Verilog RTL &amp; test environment is desired </span> <br/> <br/> <span> Able to adopt the use of new techniques and methodologies and promote their use within the project. </span> <br/> <br/> <span> A high level of pro-activity, self-organized and problem solving. </span> <br/> <br/> <span> Experience with assertion based verification is preferred </span> <br/> <br/> <span> Verification experience in SERDES, Ethernet Networking in Verilog is a big plus. </span> <br/> <br/> <span> Experience with scripting languages such as PERL, TCL Unix Scripting is highly desirable</span> </p> <p> <br/> </p> <p> <br/> <strong> Job Segment: </strong> <br/> <span> Semiconductor, Network, Engineer, Electrical Engineering, Embedded, Science, Technology, Engineering</span> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: IT-Software / Software Services</p><p>&#13;\n\t\t\tFunctional Area: IT Software - Embedded, EDA, VLSI, ASIC, Chip Design</p><p>&#13;\n\t\t\tRole Category: Software Developer</p><p>&#13;\n\t\t\tRole: Software Developer</p><p>&#13;\n\t\t\tKeyskills: Semiconductor, Network, Engineer, Electrical Engineering, Embedded, Science, Technology, Engineering</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Engineer, Sr Staff- IC Design',
'url': 'http://jobsearch.naukri.com/job-listings-Engineer-Sr-Staff-IC-Design-Broadcom-India-Pvt-Ltd-Bengaluru-Bangalore-7-to-10-years-250615901013'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Broadcom India Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 17, 30424),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>Broadcom Corporation (NASDAQ: BRCM), a FORTUNE 500 company, is a global leader and innovator in semiconductor solutions for wired and wireless communications. Broadcom products seamlessly deliver voice, video, data and multimedia connectivity in the home, office and mobile environments. With the industry\\\'s broadest portfolio of state-of-the-art system-on-a-chip and embedded software solutions, Broadcom is changing the world by Connecting everything.</p> <p> Job Function: Engineering </p><p> Discipline: ENG-Hardware-IC Design</p><p> </p> <p> Broadcom is a global leader and innovator in semiconductor solutions for wired and wireless communications. The High Speed Interconnect Product (HSIP) line of business produces the industrys lowest power and highest performance (10Gbps to 100Gbps) highly integrated physical layer transceivers (PHYs) to meet the increasing demand in higher bandwidth data center, enterprise network performance and server virtualization.</p> <p> <br/> <br/> This is your opportunity to master the physical design of deep submicron ASICs. You will gain valuable skills as you are trained in: establishing and implementing a hierarchical design flow and signoff process and the application and use of COT physical design tools available from Synopsys , Cadence, Mentor, Magma or Atoptech; and to understand, review physically close DRCs at the block and top level.<br/> <br/> You will be challenged with responsibilities including:<br/> <br/> Ownership of any part of the process from Netlist handoff to tapeout; floorplanning; place and route; timing; power closure and physical verification<br/> <br/> You will start with very challenging block level design and ramp up to future chip level design<br/> <br/> Responsibility/ownership of block level physical implementation for production quality 28nm/20nm/16nm designs<br/> <br/> Establish timing constraints<br/> <br/> Review timing reports<br/> <br/> Physically close timing at the block and top level<br/> <br/> Add-on knowledge of synthesis/STA and DFT will be a plus</p> <p> <br/> <br/> Job Requirements<br/> <br/> BE plus 9 years, or ME plus 6 years, PHD 3yrs in deep-sub-micron IC physical designs, or equivalent experience<br/> <br/> Experience in major P&amp;R tools is required, such as ICC, ATopTech AP, Synopsys ICC or Cadence SOC Encounter<br/> <br/> Experience with 40nm or below technology<br/> <br/> Mixed signal or communications chip design experience<br/> <br/> Physical verification closure (physical closure tools knowledge)<br/> <br/> Familiar with ASIC standard cell logic and physical libraries and experience in DRC/LVS (Caliber preferred) and tapeout procedures<br/> <br/> Experience using Primetime timing reports and timing closure procedures with backend place and route tools and design for power (Apache or other power design tools)<br/> <br/> Experience using Apache (or other equivalent tools) dynamic power analysis for chip signoff is a plus<br/> <br/> Experience with TCL and Perl, to achieve higher productivity, is desired</p> <p> Broadcom is an equal opportunity employer (Minorities/ Females/ Disabled/ Veterans)</p> <p> <br/> <br/> <strong> Job Segment: </strong> <br/> <span> Semiconductor, Network, Engineer, Embedded, Design Engineer, Science, Technology, Engineering</span> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: IT-Software / Software Services</p><p>&#13;\n\t\t\tFunctional Area: IT Software - Embedded, EDA, VLSI, ASIC, Chip Design</p><p>&#13;\n\t\t\tRole Category: Database Architect/Designer</p><p>&#13;\n\t\t\tRole: Database Architect/Designer</p><p>&#13;\n\t\t\tKeyskills: Semiconductor, Network, Engineer, Embedded, Design Engineer, Science, Technology, Engineering</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Engineer, Sr Staff- IC Design',
'url': 'http://jobsearch.naukri.com/job-listings-Engineer-Sr-Staff-IC-Design-Broadcom-India-Pvt-Ltd-Bengaluru-Bangalore-9-to-12-years-240615901306'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:17 [scrapy] ERROR: Error processing {'company': u'Broadcom India Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 17, 30424),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>Broadcom Corporation (NASDAQ: BRCM), a FORTUNE 500 company, is a global leader and innovator in semiconductor solutions for wired and wireless communications. Broadcom products seamlessly deliver voice, video, data and multimedia connectivity in the home, office and mobile environments. With the industry\\\'s broadest portfolio of state-of-the-art system-on-a-chip and embedded software solutions, Broadcom is changing the world by Connecting everything.</p> <p> Job Function: Engineering </p><p> Discipline: ENG-Hardware-IC Design</p><p> </p> <p> Broadcom is a global leader and innovator in semiconductor solutions for wired and wireless communications. The High Speed Interconnect Product (HSIP) line of business produces the industrys lowest power and highest performance (10Gbps to 100Gbps) highly integrated physical layer transceivers (PHYs) to meet the increasing demand in higher bandwidth data center, enterprise network performance and server virtualization.</p> <p> <br/> <br/> This is your opportunity to master the physical design of deep submicron ASICs. You will gain valuable skills as you are trained in: establishing and implementing a hierarchical design flow and signoff process and the application and use of COT physical design tools available from Synopsys , Cadence, Mentor, Magma or Atoptech; and to understand, review physically close DRCs at the block and top level.<br/> <br/> You will be challenged with responsibilities including:<br/> <br/> Ownership of any part of the process from Netlist handoff to tapeout; floorplanning; place and route; timing; power closure and physical verification<br/> <br/> You will start with very challenging block level design and ramp up to future chip level design<br/> <br/> Responsibility/ownership of block level physical implementation for production quality 28nm/20nm/16nm designs<br/> <br/> Establish timing constraints<br/> <br/> Review timing reports<br/> <br/> Physically close timing at the block and top level<br/> <br/> Add-on knowledge of synthesis/STA and DFT will be a plus</p> <p> <br/> <br/> Job Requirements<br/> <br/> BE plus 9 years, or ME plus 6 years, PHD 3yrs in deep-sub-micron IC physical designs, or equivalent experience<br/> <br/> Experience in major P&amp;R tools is required, such as ICC, ATopTech AP, Synopsys ICC or Cadence SOC Encounter<br/> <br/> Experience with 40nm or below technology<br/> <br/> Mixed signal or communications chip design experience<br/> <br/> Physical verification closure (physical closure tools knowledge)<br/> <br/> Familiar with ASIC standard cell logic and physical libraries and experience in DRC/LVS (Caliber preferred) and tapeout procedures<br/> <br/> Experience using Primetime timing reports and timing closure procedures with backend place and route tools and design for power (Apache or other power design tools)<br/> <br/> Experience using Apache (or other equivalent tools) dynamic power analysis for chip signoff is a plus<br/> <br/> Experience with TCL and Perl, to achieve higher productivity, is desired</p> <p> Broadcom is an equal opportunity employer (Minorities/ Females/ Disabled/ Veterans)</p> <p> <br/> <br/> <strong> Job Segment: </strong> <br/> <span> Semiconductor, Network, Engineer, Embedded, Design Engineer, Science, Technology, Engineering</span> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: IT-Software / Software Services</p><p>&#13;\n\t\t\tFunctional Area: IT Software - Embedded, EDA, VLSI, ASIC, Chip Design</p><p>&#13;\n\t\t\tRole Category: Database Architect/Designer</p><p>&#13;\n\t\t\tRole: Database Architect/Designer</p><p>&#13;\n\t\t\tKeyskills: Semiconductor, Network, Engineer, Embedded, Design Engineer, Science, Technology, Engineering</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Engineer, Sr Staff- IC Design',
'url': 'http://jobsearch.naukri.com/job-listings-Engineer-Sr-Staff-IC-Design-Broadcom-India-Pvt-Ltd-Bengaluru-Bangalore-9-to-12-years-240615901306'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'NetCracker Technology Solutions (India) Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 17, 895519),
'description': [u'\t<p>Job requirements: <br />\n5 &#8211; 10 years of total experience Hands on experience on C and Linux internals programming; Experience on Kernel level programming; Telecom domain is mandatory. Candidate should have worked in any of the below areas given in order of preference: o <span class="caps">LTE</span> <span class="caps">EPC</span> (<span class="caps">MME</span>, <span class="caps">SGW</span>/PGW, <span class="caps">HSS</span>, <span class="caps">PCRF</span>)<br />\no <span class="caps">TCP</span>/IP stack understanding<br />\no <span class="caps">SIP</span>, <span class="caps">RTP</span>, <span class="caps">GTP</span><br />\no <span class="caps">IMS</span> <br />\no <span class="caps">GSM</span>/3G<br />\nDevelopment experience in high availability and high load environment (multithreading and HA); <span class="caps">DPDK</span>/KVM is optional, good to have. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:System Analyst</p>\n\n\t<p>Keyskills <br />\nC C Programming C C++ Systems Programming Linux Kernel System Programming Linux internals Linux <span class="caps">LTE</span> <span class="caps">EPC</span> <span class="caps">MME</span> <span class="caps">SGW</span> <span class="caps">PGW</span> Tcp Ip Programming <span class="caps">SIP</span> <span class="caps">RTP</span> <span class="caps">GTP</span> <span class="caps">IMS</span> <span class="caps">GSM</span> 3G High availability High Load <span class="caps">DPDK</span> <span class="caps">KVM</span> <span class="caps">TCP</span> IP protocol stack <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 17, 895454),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'C',
u'C Programming',
u'Linux internals',
u'Linux',
u'EPC',
u'SGW',
u'PGW',
u'Tcp',
u'SIP',
u'RTP',
u'IMS',
u'GSM',
u'3G',
u'TCP',
u'protocol stack'],
'title': u'vEPC Developer/lead',
'url': 'http://jobsearch.naukri.com/job-listings-vEPC-Developer-lead-NetCracker-Technology-Solutions-India-Pvt-Ltd-Bengaluru-Bangalore-5-to-10-years-240615002641'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:17 [scrapy] ERROR: Error processing {'company': u'NetCracker Technology Solutions (India) Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 17, 895519),
'description': [u'\t<p>Job requirements: <br />\n5 &#8211; 10 years of total experience Hands on experience on C and Linux internals programming; Experience on Kernel level programming; Telecom domain is mandatory. Candidate should have worked in any of the below areas given in order of preference: o <span class="caps">LTE</span> <span class="caps">EPC</span> (<span class="caps">MME</span>, <span class="caps">SGW</span>/PGW, <span class="caps">HSS</span>, <span class="caps">PCRF</span>)<br />\no <span class="caps">TCP</span>/IP stack understanding<br />\no <span class="caps">SIP</span>, <span class="caps">RTP</span>, <span class="caps">GTP</span><br />\no <span class="caps">IMS</span> <br />\no <span class="caps">GSM</span>/3G<br />\nDevelopment experience in high availability and high load environment (multithreading and HA); <span class="caps">DPDK</span>/KVM is optional, good to have. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:System Analyst</p>\n\n\t<p>Keyskills <br />\nC C Programming C C++ Systems Programming Linux Kernel System Programming Linux internals Linux <span class="caps">LTE</span> <span class="caps">EPC</span> <span class="caps">MME</span> <span class="caps">SGW</span> <span class="caps">PGW</span> Tcp Ip Programming <span class="caps">SIP</span> <span class="caps">RTP</span> <span class="caps">GTP</span> <span class="caps">IMS</span> <span class="caps">GSM</span> 3G High availability High Load <span class="caps">DPDK</span> <span class="caps">KVM</span> <span class="caps">TCP</span> IP protocol stack <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 17, 895454),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'C',
u'C Programming',
u'Linux internals',
u'Linux',
u'EPC',
u'SGW',
u'PGW',
u'Tcp',
u'SIP',
u'RTP',
u'IMS',
u'GSM',
u'3G',
u'TCP',
u'protocol stack'],
'title': u'vEPC Developer/lead',
'url': 'http://jobsearch.naukri.com/job-listings-vEPC-Developer-lead-NetCracker-Technology-Solutions-India-Pvt-Ltd-Bengaluru-Bangalore-5-to-10-years-240615002641'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Huawei Technologies India Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 18, 916067),
'description': [u'\t<p>Over 10 years of experience in information technology with minimum of 5 years of experience in systems design and architecture. \n\t<ul>\n\t\t<li>Must have experience in developing high volume and large scale distributed systems</li>\n\t\t<li>Must have experience in scalable engineering platform. <br />\nExtensive experience in server side development using any server side technologies such as Java.<br />\nSimilar experience in Magento, <span class="caps">MVC</span> frameworks like Zend, Code Igniter and <span class="caps">PHP</span> would be an added advantage <br />\nStrong Java/J2EE development experience including Core Java (1.5 or above), Spring, Hibernate, <span class="caps">ESB</span>, Web Services, <span class="caps">JMS</span> and other J2EE technologies for large complex systems with emphasis on middleware server side development</li>\n\t\t<li>Experience in architecting and building mobile enabled platform is a strong plus.</li>\n\t\t<li>Desirable experience include <span class="caps">API</span> management, oAuth, developer portal</li>\n\t\t<li>Experience in <span class="caps">HTTP</span>, <span class="caps">REST</span>, <span class="caps">JSON</span>, <span class="caps">XML</span>, <span class="caps">AJAX</span>, <span class="caps">SPA</span> and design patterns</li>\n\t\t<li>Experience in Java, J2EE, and Spring. Maven, Git</li>\n\t</ul></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Internet / Ecommerce </p>\n\n\t<p>Functional Area: IT Software &#8211; eCommerce , Internet Technologies </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Technical Architect</p>\n\n\t<p>Keyskills <br />\nCore Java J2Ee Maven Hibernate <span class="caps">JMS</span> Spring Codeigniter Zend <span class="caps">PHP</span> Magento Ecommerce <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization</p>\n\n\t<p>PG:M.Tech &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'9 - 14 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 18, 915993),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Core Java',
u'J2Ee',
u'Maven',
u'Hibernate',
u'JMS',
u'Spring',
u'Zend',
u'PHP',
u'Magento',
u'Ecommerce'],
'title': u'Opportunity for System Architects with E Commerce Domain Expertise',
'url': 'http://jobsearch.naukri.com/job-listings-Opportunity-for-System-Architects-with-E-Commerce-Domain-Expertise--Huawei-Technologies-India-Pvt-Ltd-Bengaluru-Bangalore-9-to-14-years-290515000372'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:18 [scrapy] ERROR: Error processing {'company': u'Huawei Technologies India Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 18, 916067),
'description': [u'\t<p>Over 10 years of experience in information technology with minimum of 5 years of experience in systems design and architecture. \n\t<ul>\n\t\t<li>Must have experience in developing high volume and large scale distributed systems</li>\n\t\t<li>Must have experience in scalable engineering platform. <br />\nExtensive experience in server side development using any server side technologies such as Java.<br />\nSimilar experience in Magento, <span class="caps">MVC</span> frameworks like Zend, Code Igniter and <span class="caps">PHP</span> would be an added advantage <br />\nStrong Java/J2EE development experience including Core Java (1.5 or above), Spring, Hibernate, <span class="caps">ESB</span>, Web Services, <span class="caps">JMS</span> and other J2EE technologies for large complex systems with emphasis on middleware server side development</li>\n\t\t<li>Experience in architecting and building mobile enabled platform is a strong plus.</li>\n\t\t<li>Desirable experience include <span class="caps">API</span> management, oAuth, developer portal</li>\n\t\t<li>Experience in <span class="caps">HTTP</span>, <span class="caps">REST</span>, <span class="caps">JSON</span>, <span class="caps">XML</span>, <span class="caps">AJAX</span>, <span class="caps">SPA</span> and design patterns</li>\n\t\t<li>Experience in Java, J2EE, and Spring. Maven, Git</li>\n\t</ul></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Internet / Ecommerce </p>\n\n\t<p>Functional Area: IT Software &#8211; eCommerce , Internet Technologies </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Technical Architect</p>\n\n\t<p>Keyskills <br />\nCore Java J2Ee Maven Hibernate <span class="caps">JMS</span> Spring Codeigniter Zend <span class="caps">PHP</span> Magento Ecommerce <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization</p>\n\n\t<p>PG:M.Tech &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'9 - 14 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 18, 915993),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Core Java',
u'J2Ee',
u'Maven',
u'Hibernate',
u'JMS',
u'Spring',
u'Zend',
u'PHP',
u'Magento',
u'Ecommerce'],
'title': u'Opportunity for System Architects with E Commerce Domain Expertise',
'url': 'http://jobsearch.naukri.com/job-listings-Opportunity-for-System-Architects-with-E-Commerce-Domain-Expertise--Huawei-Technologies-India-Pvt-Ltd-Bengaluru-Bangalore-9-to-14-years-290515000372'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Siemens Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 20, 213431),
'description': [u'\t<p>Responsible for development and delivery of software component(s), for Healthcare product, in accordance to the customers requirements and organizational quality norms. Activities to be performed include:</p>\n\n\t<p>Work with product owners, architects, developers, testers and other stake holders in Product development organization to build and maintain high quality software solutions<br />\nPerform regular technical coordination / review with stake holders to ensure risk identification. Support the initiation of risk mitigation by Project Manager and all relevant project stakeholders<br />\nGuide project team members on architectural topics. Ensure design &amp; implementation consistency against the architecture<br />\nResponsible for development &amp; integration test automation architecture. Guide the team towards implementation of the same<br />\nIdentify the area of product domain, technical, tools, process competency required<br />\nInvolved in overall product test strategy<br />\nImplement software development procedures in accordance with the laid down Siemens Software Quality Processes in the delivery / integration of the software components into Siemens products<br />\nObject Oriented Analysis, Design, Implementation, Maintenance and Documentation of software components and applications<br />\nResponsible for the accurate translation of software architecture into design and code Identify potential for re-use of components and promote re-use Ability to model different user experience designs. Implementation of features and/or bug-fixing and delivering solutions adhering to coding and quality guidelines, for self-owned components </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nC# C++ .Net Unit Testing framework <span class="caps">TFS</span> Charm NT MS Test <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers, Electrical, Electronics/Telecommunication</p>\n\n\t<p>PG:M.Tech &#8211; Computers, Electrical, Electronics/Telecommunication, <span class="caps">MCA</span> &#8211; Computers, M.Sc &#8211; Chemistry, Electronics</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>What do I need to qualify for this job?</p>\n\n\t<p>B.E. / B.Tech / <span class="caps">MCA</span>/ M. Tech / Msc (Computer Science/Electronics &amp; Communication/Electrical). 5-8 years work experience in Software Engineering especially in professional software product development. Sound knowledge of Software Engineering process.<br />\nWhat else do I need to know?</p>\n\n\t<p>Knowledge and Experience</p>\n\n\t<p>Strong knowledge in Object Oriented Programming concepts and design patterns. Proven ability to design and develop high quality software for Engineering solutions involving complex interdependent projects Proficiency in C/C++, C# /.net and other windows technologies Strong analytical and debugging skills Exposure to <span class="caps">TFS</span>, Charm NT, MS Test/ N Unit Testing framework, MS Build tools Hands on experience in requirement engineering. Strong written and oral communication skills. Being an good team player and willing to accept challenges and responsibility Good leadership, interpersonal communication, proactive, self-motivated and motivating, result oriented, ability to work as an individual contributor Awareness of Medical Imaging domain and Clinical Workflow scenarios will be an advantage Experience in software estimations, scheduling and tracking</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 20, 213368),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'C#', u'C++', u'.Net', u'Unit Testing', u'framework', u'TFS'],
'title': u'Senior Software Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Senior-Software-Developer-Siemens-Limited-Bengaluru-Bangalore-5-to-8-years-290615900718'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:20 [scrapy] ERROR: Error processing {'company': u'Siemens Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 20, 213431),
'description': [u'\t<p>Responsible for development and delivery of software component(s), for Healthcare product, in accordance to the customers requirements and organizational quality norms. Activities to be performed include:</p>\n\n\t<p>Work with product owners, architects, developers, testers and other stake holders in Product development organization to build and maintain high quality software solutions<br />\nPerform regular technical coordination / review with stake holders to ensure risk identification. Support the initiation of risk mitigation by Project Manager and all relevant project stakeholders<br />\nGuide project team members on architectural topics. Ensure design &amp; implementation consistency against the architecture<br />\nResponsible for development &amp; integration test automation architecture. Guide the team towards implementation of the same<br />\nIdentify the area of product domain, technical, tools, process competency required<br />\nInvolved in overall product test strategy<br />\nImplement software development procedures in accordance with the laid down Siemens Software Quality Processes in the delivery / integration of the software components into Siemens products<br />\nObject Oriented Analysis, Design, Implementation, Maintenance and Documentation of software components and applications<br />\nResponsible for the accurate translation of software architecture into design and code Identify potential for re-use of components and promote re-use Ability to model different user experience designs. Implementation of features and/or bug-fixing and delivering solutions adhering to coding and quality guidelines, for self-owned components </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nC# C++ .Net Unit Testing framework <span class="caps">TFS</span> Charm NT MS Test <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers, Electrical, Electronics/Telecommunication</p>\n\n\t<p>PG:M.Tech &#8211; Computers, Electrical, Electronics/Telecommunication, <span class="caps">MCA</span> &#8211; Computers, M.Sc &#8211; Chemistry, Electronics</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>What do I need to qualify for this job?</p>\n\n\t<p>B.E. / B.Tech / <span class="caps">MCA</span>/ M. Tech / Msc (Computer Science/Electronics &amp; Communication/Electrical). 5-8 years work experience in Software Engineering especially in professional software product development. Sound knowledge of Software Engineering process.<br />\nWhat else do I need to know?</p>\n\n\t<p>Knowledge and Experience</p>\n\n\t<p>Strong knowledge in Object Oriented Programming concepts and design patterns. Proven ability to design and develop high quality software for Engineering solutions involving complex interdependent projects Proficiency in C/C++, C# /.net and other windows technologies Strong analytical and debugging skills Exposure to <span class="caps">TFS</span>, Charm NT, MS Test/ N Unit Testing framework, MS Build tools Hands on experience in requirement engineering. Strong written and oral communication skills. Being an good team player and willing to accept challenges and responsibility Good leadership, interpersonal communication, proactive, self-motivated and motivating, result oriented, ability to work as an individual contributor Awareness of Medical Imaging domain and Clinical Workflow scenarios will be an advantage Experience in software estimations, scheduling and tracking</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 20, 213368),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'C#', u'C++', u'.Net', u'Unit Testing', u'framework', u'TFS'],
'title': u'Senior Software Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Senior-Software-Developer-Siemens-Limited-Bengaluru-Bangalore-5-to-8-years-290615900718'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Siemens Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 21, 547824),
'description': [u'\t<p>Job Description: As a Scrum Master (C# .Net) the person is responsible for delivering high-quality software, on-time and within budget by motivating and guiding the scrum team with agile/lean principles and practices:</p>\n\n\t<p>What are my responsibilities? </p>\n\n\t<p>Co-ordinate with Analyst for Product backlog management, concept grooming and continuous delivery of features. Co-ordinate with Architects for Architecture backlog management, prototypes and technical grooming. Effectively guide and facilitate the sprint ceremonies to consistently achieve the sprint goals (Sprint planning, reviews, retrospective, demo, daily stand-ups, and stakeholder meetings). Protect scrum team from outside distractions, impediments or team conflicts, and maintain focus on product backlog and project timeline. Work/collaborate/communicate effectively with internal and external stakeholders (E.g. <span class="caps">SOS</span> to resolve dependencies, QA, RA, Integration, Test, xBU forums) Regularly monitor and control the metrics to meet project/product goals. (E.g. sprint/release burn down, velocity, defects, etc.) Guide the team with Agile/Lean principles and practices (E.g. thin slicing, Reduce waste, <span class="caps">VSM</span>) to deliver value frequently and regularly to the customers. Coaching, mentoring, and fostering the culture of transparency, continual improvement, and self organizing within the team. Build trust &amp; create positive environment by empowerment, facilitating discussions, decision making and conflict resolution with emphasis on problem solving. Identify and control project risks by means of prevention, mitigation and contingencies. Support PM for project management activities (E.g. Reporting, Metrics collection) Ensure that sprint deliverables are adhering to the Quality and regulatory guidelines </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nScrum Master C# Agile Project Management .Net C#.Net RA Conflict Resolution Team Building Problem Solving <span class="caps">OOAD</span> <span class="caps">UML</span> xml <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Biomedical, Computers</p>\n\n\t<p>PG:M.Tech &#8211; Biomedical, Computers, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>What do I need to qualify for this job?</p>\n\n\t<p>B.E/ B. Tech/ <span class="caps">MCA</span>/ M. Tech (Computer Science, Medical Imaging, Biomedical Engineering).<br />\nWhat else do I need to know?</p>\n\n\t<p>Knowledge and Experience</p>\n\n\t<p>Around 7-10 years of industry experience, with at least one year of experience in the Scrum Master role diligently applying agile/lean principles, practices and techniques to deliver value to the end customers. Experience in software design and development (<span class="caps">OOAD</span>, <span class="caps">UML</span>, C#.Net, xml etc.) Experience in requirements engineering. Experience in Project management tools and techniques. (E.g. Excel, <span class="caps">TFS</span> for backlog management, <span class="caps">WBS</span>, Estimation techniques, <span class="caps">RCA</span> tools&#8230;) Ability to effectively manage Risks, communications and stakeholders. End-customer orientated with ability to recommend alternative technical and business approaches, and lead the team to meet aggressive timelines with optimal solutions. Able to work across multiple project teams to resolve dependencies/ ambiguous situations. Strong knowledge of software engineering lifecycle and <span class="caps">PLM</span> processes. Expertise of medical imaging domain and clinical workflow knowledge. Excellent interpersonal and leadership skills. Excellent communication skills. Good analytical, problem solving and decision making skills. Should be Enthusiastic, Approachable, self-motivated and result oriented. Able to work across multiple sites in multiple time zones</p>'],
'exp': u'7 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 21, 547712),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Scrum Master',
u'C#',
u'Agile',
u'Project Management',
u'.Net',
u'C#.Net',
u'RA',
u'Team Building',
u'Problem Solving',
u'OOAD',
u'UML',
u'xml'],
'title': u'Scrum Master (c#.net)',
'url': 'http://jobsearch.naukri.com/job-listings-Scrum-Master-c-net--Siemens-Limited-Bengaluru-Bangalore-7-to-10-years-290615900700'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:21 [scrapy] ERROR: Error processing {'company': u'Siemens Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 21, 547824),
'description': [u'\t<p>Job Description: As a Scrum Master (C# .Net) the person is responsible for delivering high-quality software, on-time and within budget by motivating and guiding the scrum team with agile/lean principles and practices:</p>\n\n\t<p>What are my responsibilities? </p>\n\n\t<p>Co-ordinate with Analyst for Product backlog management, concept grooming and continuous delivery of features. Co-ordinate with Architects for Architecture backlog management, prototypes and technical grooming. Effectively guide and facilitate the sprint ceremonies to consistently achieve the sprint goals (Sprint planning, reviews, retrospective, demo, daily stand-ups, and stakeholder meetings). Protect scrum team from outside distractions, impediments or team conflicts, and maintain focus on product backlog and project timeline. Work/collaborate/communicate effectively with internal and external stakeholders (E.g. <span class="caps">SOS</span> to resolve dependencies, QA, RA, Integration, Test, xBU forums) Regularly monitor and control the metrics to meet project/product goals. (E.g. sprint/release burn down, velocity, defects, etc.) Guide the team with Agile/Lean principles and practices (E.g. thin slicing, Reduce waste, <span class="caps">VSM</span>) to deliver value frequently and regularly to the customers. Coaching, mentoring, and fostering the culture of transparency, continual improvement, and self organizing within the team. Build trust &amp; create positive environment by empowerment, facilitating discussions, decision making and conflict resolution with emphasis on problem solving. Identify and control project risks by means of prevention, mitigation and contingencies. Support PM for project management activities (E.g. Reporting, Metrics collection) Ensure that sprint deliverables are adhering to the Quality and regulatory guidelines </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nScrum Master C# Agile Project Management .Net C#.Net RA Conflict Resolution Team Building Problem Solving <span class="caps">OOAD</span> <span class="caps">UML</span> xml <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Biomedical, Computers</p>\n\n\t<p>PG:M.Tech &#8211; Biomedical, Computers, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>What do I need to qualify for this job?</p>\n\n\t<p>B.E/ B. Tech/ <span class="caps">MCA</span>/ M. Tech (Computer Science, Medical Imaging, Biomedical Engineering).<br />\nWhat else do I need to know?</p>\n\n\t<p>Knowledge and Experience</p>\n\n\t<p>Around 7-10 years of industry experience, with at least one year of experience in the Scrum Master role diligently applying agile/lean principles, practices and techniques to deliver value to the end customers. Experience in software design and development (<span class="caps">OOAD</span>, <span class="caps">UML</span>, C#.Net, xml etc.) Experience in requirements engineering. Experience in Project management tools and techniques. (E.g. Excel, <span class="caps">TFS</span> for backlog management, <span class="caps">WBS</span>, Estimation techniques, <span class="caps">RCA</span> tools&#8230;) Ability to effectively manage Risks, communications and stakeholders. End-customer orientated with ability to recommend alternative technical and business approaches, and lead the team to meet aggressive timelines with optimal solutions. Able to work across multiple project teams to resolve dependencies/ ambiguous situations. Strong knowledge of software engineering lifecycle and <span class="caps">PLM</span> processes. Expertise of medical imaging domain and clinical workflow knowledge. Excellent interpersonal and leadership skills. Excellent communication skills. Good analytical, problem solving and decision making skills. Should be Enthusiastic, Approachable, self-motivated and result oriented. Able to work across multiple sites in multiple time zones</p>'],
'exp': u'7 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 21, 547712),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Scrum Master',
u'C#',
u'Agile',
u'Project Management',
u'.Net',
u'C#.Net',
u'RA',
u'Team Building',
u'Problem Solving',
u'OOAD',
u'UML',
u'xml'],
'title': u'Scrum Master (c#.net)',
'url': 'http://jobsearch.naukri.com/job-listings-Scrum-Master-c-net--Siemens-Limited-Bengaluru-Bangalore-7-to-10-years-290615900700'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'CBSI India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 21, 580343),
'description': [u'<html><body><div><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">Dear Candidate, <br/> Currently we have an urgent openings for ServiceNOw Tool Development and we are looking for the professionals with the following skills sets. <br/> Skills: Job Description: <br/> Mandatory Skills: Business Rules, Service Catalog, Integrations, Client Script and Workflow, Incident Management. *\tMinimum of 4+ years of relevant experience working with the ServiceNow tool *\tMust have a good understanding of the above tool *\tMust have deployed, configured and worked with the API integration, exposure, *\tShould have executed multiple projects involving the above tool *\tA thorough understanding of the functional requirements, ability to integrate the tool with other tools for reporting purposes Hands on Exp into Servicenow Development. <br/> <br/> If you are interested for the above opportunity,please share your updated profile along with the following details.<br/> \xa0Total Exp: <br/> Relavant Exp: <br/> NP:<br/> \xa0Regards, <br/> Sindhuja S<br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter<br/>&#13;\n\t\t\tIndustry: IT-Software / Software Services<br/>&#13;\n\t\t\tFunctional Area: IT Software - Application Programming, Maintenance<br/>&#13;\n\t\t\tRole Category: Software Developer<br/>&#13;\n\t\t\tRole: Software Developer<br/>&#13;\n\t\t\tKeyskills: servicenow</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, Graduation Not Required <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Excellent Opening for Servicenow Tool Development with Leading MNC',
'url': 'http://jobsearch.naukri.com/job-listings-Excellent-Opening-for-Servicenow-Tool-Development-with-Leading-MNC-CBSI-India-Pvt-Ltd--Bengaluru-Bangalore-3-to-8-years-160715007869'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:21 [scrapy] ERROR: Error processing {'company': u'CBSI India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 21, 580343),
'description': [u'<html><body><div><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">Dear Candidate, <br/> Currently we have an urgent openings for ServiceNOw Tool Development and we are looking for the professionals with the following skills sets. <br/> Skills: Job Description: <br/> Mandatory Skills: Business Rules, Service Catalog, Integrations, Client Script and Workflow, Incident Management. *\tMinimum of 4+ years of relevant experience working with the ServiceNow tool *\tMust have a good understanding of the above tool *\tMust have deployed, configured and worked with the API integration, exposure, *\tShould have executed multiple projects involving the above tool *\tA thorough understanding of the functional requirements, ability to integrate the tool with other tools for reporting purposes Hands on Exp into Servicenow Development. <br/> <br/> If you are interested for the above opportunity,please share your updated profile along with the following details.<br/> \xa0Total Exp: <br/> Relavant Exp: <br/> NP:<br/> \xa0Regards, <br/> Sindhuja S<br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter<br/>&#13;\n\t\t\tIndustry: IT-Software / Software Services<br/>&#13;\n\t\t\tFunctional Area: IT Software - Application Programming, Maintenance<br/>&#13;\n\t\t\tRole Category: Software Developer<br/>&#13;\n\t\t\tRole: Software Developer<br/>&#13;\n\t\t\tKeyskills: servicenow</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, Graduation Not Required <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Excellent Opening for Servicenow Tool Development with Leading MNC',
'url': 'http://jobsearch.naukri.com/job-listings-Excellent-Opening-for-Servicenow-Tool-Development-with-Leading-MNC-CBSI-India-Pvt-Ltd--Bengaluru-Bangalore-3-to-8-years-160715007869'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Insides-Sales-Executive-Google-Business-View-Sweans-Technologies-Pvt-ltd-Bengaluru-Bangalore-0-to-3-years-160715007874> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:21 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Insides-Sales-Executive-Google-Business-View-Sweans-Technologies-Pvt-ltd-Bengaluru-Bangalore-0-to-3-years-160715007874> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-SFDC-QA-4-6-Years-Bangalore-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-7-years-090715002038> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:21 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-SFDC-QA-4-6-Years-Bangalore-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-7-years-090715002038> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Cluster-Head-Regional-Manager-Lordi-Systems-Staffing-Solutions-Pvt-Ltd-Bengaluru-Bangalore-Mumbai-Ahmedabad-5-to-8-years-160715007876> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:21 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Cluster-Head-Regional-Manager-Lordi-Systems-Staffing-Solutions-Pvt-Ltd-Bengaluru-Bangalore-Mumbai-Ahmedabad-5-to-8-years-160715007876> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Voice-Recognition-speech-Testing-infotainment-Domain-is-Mandatory-Harman-International-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007898> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:21 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Voice-Recognition-speech-Testing-infotainment-Domain-is-Mandatory-Harman-International-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007898> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Web-Content-Writer-Process-Specialist-CLARITY-CONSULTING-Bengaluru-Bangalore-2-to-7-years-160715007899> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:21 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Web-Content-Writer-Process-Specialist-CLARITY-CONSULTING-Bengaluru-Bangalore-2-to-7-years-160715007899> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Obiee-Developer-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-9-years-160715007918> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:21 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Obiee-Developer-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-9-years-160715007918> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Urgent-Opening-UX-Designer-Pune-Bangalore-XPT-Software-XPT-Consultancy-Software-Services-Pvt-Ltd-Bengaluru-Bangalore-Pune-3-to-7-years-160715007923> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:21 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Urgent-Opening-UX-Designer-Pune-Bangalore-XPT-Software-XPT-Consultancy-Software-Services-Pvt-Ltd-Bengaluru-Bangalore-Pune-3-to-7-years-160715007923> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Pivotal-Admin-PRI-India-Bengaluru-Bangalore-5-to-7-years-160715007936> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:21 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Pivotal-Admin-PRI-India-Bengaluru-Bangalore-5-to-7-years-160715007936> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
INFO:scrapy.extensions.logstats:Crawled 83 pages (at 83 pages/min), scraped 0 items (at 0 items/min)
2015-07-16 20:06:21 [scrapy] INFO: Crawled 83 pages (at 83 pages/min), scraped 0 items (at 0 items/min)
ERROR:scrapy.core.scraper:Error processing {'company': u'Sweans Technologies Pvt ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 23, 77646),
'description': [u'\t<p>Sweans is Google Trusted Agency for Business View Shoots in Bangalore / Bengaluru / Kerala / Mangalore/ Coimbatore.</p>\n\n\t<p>Roles and Responsibilities: </p>\n\n\t<p>- Responsible for the initial pitch in of Google Business View in domestic Market (Bangalore/Mangalore/ Coimbatore). &#8211; Drive outbound call activity to penetrate the targeted market segment. &#8211; Ability to make first level cold calls and reach out the decision makers &amp; fix the appointments for Google Business View demo presentations. &#8211; Bridge the initial gap between the in-house sales team and the decision makers at the clients end. &#8211; Develop a database or a pool of prospective clients in advance of need through extensive web search. &#8211; Work closely with Google Business View Account Managers to identifying &amp; closing the qualified opportunities &#8211; Exp in domestic Telecalling/Telemarketing is a plus( not must).</p>\n\n\t<p>Desirable Skills: </p>\n\n\t<p>- Exceptional written and oral communication in English is mandatory &#8211; Should have good command over domestic languages Kannada ,Tamil (at least one is must) &#8211; Should be a Self-Starter (ability to work with very minimal or no guidance). &#8211; Good team player &amp; Committed and result oriented. </p>\n\n\t<p>Package: 1.8 lacs pa + Attractive incentives\xe2\u20ac\u0192</p>\n\n\t<p>Interested Candidates revert with updated CV <span class="caps">ASAP</span> to careers@sweans.com</p>\n\n\t<p>Feel Free to revert for any information on the same.</p>\n\n\t<p>Salary: 1,50,000 &#8211; 2,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales Executive/Officer</p>\n\n\t<p>Keyskills <br />\ntelesales telecaller tele marketing executive outbound sales telecaller female Cold Calling lead generation inside sales business development bd marketing sales bde <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'0 - 3 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 23, 77567),
'salary': u'1,50,000 - 2,00,000 P.A',
'skills': [u'telesales',
u'telecaller',
u'tele marketing executive',
u'outbound sales',
u'Cold Calling',
u'lead generation',
u'business development',
u'bd',
u'marketing',
u'sales',
u'bde'],
'title': u'Insides Sales Executive - Google Business View',
'url': 'http://jobsearch.naukri.com/job-listings-Insides-Sales-Executive-Google-Business-View-Sweans-Technologies-Pvt-ltd-Bengaluru-Bangalore-0-to-3-years-160715007874'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:23 [scrapy] ERROR: Error processing {'company': u'Sweans Technologies Pvt ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 23, 77646),
'description': [u'\t<p>Sweans is Google Trusted Agency for Business View Shoots in Bangalore / Bengaluru / Kerala / Mangalore/ Coimbatore.</p>\n\n\t<p>Roles and Responsibilities: </p>\n\n\t<p>- Responsible for the initial pitch in of Google Business View in domestic Market (Bangalore/Mangalore/ Coimbatore). &#8211; Drive outbound call activity to penetrate the targeted market segment. &#8211; Ability to make first level cold calls and reach out the decision makers &amp; fix the appointments for Google Business View demo presentations. &#8211; Bridge the initial gap between the in-house sales team and the decision makers at the clients end. &#8211; Develop a database or a pool of prospective clients in advance of need through extensive web search. &#8211; Work closely with Google Business View Account Managers to identifying &amp; closing the qualified opportunities &#8211; Exp in domestic Telecalling/Telemarketing is a plus( not must).</p>\n\n\t<p>Desirable Skills: </p>\n\n\t<p>- Exceptional written and oral communication in English is mandatory &#8211; Should have good command over domestic languages Kannada ,Tamil (at least one is must) &#8211; Should be a Self-Starter (ability to work with very minimal or no guidance). &#8211; Good team player &amp; Committed and result oriented. </p>\n\n\t<p>Package: 1.8 lacs pa + Attractive incentives\xe2\u20ac\u0192</p>\n\n\t<p>Interested Candidates revert with updated CV <span class="caps">ASAP</span> to careers@sweans.com</p>\n\n\t<p>Feel Free to revert for any information on the same.</p>\n\n\t<p>Salary: 1,50,000 &#8211; 2,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales Executive/Officer</p>\n\n\t<p>Keyskills <br />\ntelesales telecaller tele marketing executive outbound sales telecaller female Cold Calling lead generation inside sales business development bd marketing sales bde <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'0 - 3 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 23, 77567),
'salary': u'1,50,000 - 2,00,000 P.A',
'skills': [u'telesales',
u'telecaller',
u'tele marketing executive',
u'outbound sales',
u'Cold Calling',
u'lead generation',
u'business development',
u'bd',
u'marketing',
u'sales',
u'bde'],
'title': u'Insides Sales Executive - Google Business View',
'url': 'http://jobsearch.naukri.com/job-listings-Insides-Sales-Executive-Google-Business-View-Sweans-Technologies-Pvt-ltd-Bengaluru-Bangalore-0-to-3-years-160715007874'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Immediate-Opening-for-ED-SDS-Coding-Vee-Technologies-Vee-Technologies-Bengaluru-Bangalore-Chennai-1-to-6-years-100715003417> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:23 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Immediate-Opening-for-ED-SDS-Coding-Vee-Technologies-Vee-Technologies-Bengaluru-Bangalore-Chennai-1-to-6-years-100715003417> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Regional-Manager-Banglore-pinnacle-cosultant-Mumbai-Pune-Bengaluru-Bangalore-5-to-8-years-160715007954> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:23 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Regional-Manager-Banglore-pinnacle-cosultant-Mumbai-Pune-Bengaluru-Bangalore-5-to-8-years-160715007954> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Hiring-for-Assistant-Manager-cafe-Manager-in-Bangalore-Capability-Search-Bengaluru-Bangalore-1-to-6-years-160715007907> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:23 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Hiring-for-Assistant-Manager-cafe-Manager-in-Bangalore-Capability-Search-Bengaluru-Bangalore-1-to-6-years-160715007907> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Immediate-Opening-for-ED-Denials-Coding-Vee-Technologies-Vee-Technologies-Bengaluru-Bangalore-Chennai-1-to-6-years-220615004408> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:23 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Immediate-Opening-for-ED-Denials-Coding-Vee-Technologies-Vee-Technologies-Bengaluru-Bangalore-Chennai-1-to-6-years-220615004408> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Webmethods-5-20-Years-Opening-with-Product-Based-Company-Career-Soft-Solutions-Pvt-Ltd--Chennai-Bengaluru-Bangalore-5-to-10-years-290615002157> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:23 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Webmethods-5-20-Years-Opening-with-Product-Based-Company-Career-Soft-Solutions-Pvt-Ltd--Chennai-Bengaluru-Bangalore-5-to-10-years-290615002157> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opening-For-Sr-java-Developer-Kulaja-Services-LLP-Bengaluru-Bangalore-4-to-7-years-160715007969> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:23 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opening-For-Sr-java-Developer-Kulaja-Services-LLP-Bengaluru-Bangalore-4-to-7-years-160715007969> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Technician-E-P-B-X-Audio-Video-SRI-RAJARAJESHWARI-AND-CO--Bengaluru-Bangalore-0-to-5-years-200315001290> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:23 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Technician-E-P-B-X-Audio-Video-SRI-RAJARAJESHWARI-AND-CO--Bengaluru-Bangalore-0-to-5-years-200315001290> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
ERROR:scrapy.core.scraper:Error processing {'company': u'Allegis Services India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 23, 970623),
'description': [u'\t<p>Total years of experience must be from 4-6 years.<br />\nExperience in manual testing.<br />\nExperience in automation (writing automation scripts).<br />\nExperience in core java.<br />\nKnowledge in <span class="caps">CRM</span>.<br />\nExperience in salesforces would be added advantage.<br />\nExperience in TestNG is a must.</p>\n\n\t<p>Candidates who can join in 1 month would be preferred.<br />\nDesired Profile Please refer to the Job description above Experience 4 &#8211; 7 Years Industry Type IT-Software / Software Services Role Testing Engineer Functional Area IT Software &#8211; QA &amp; Testing Education <br />\nUG &#8211; Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG &#8211; Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords IT Software &#8211; QA &amp; Testing testng test ng sfdc qa Automation Testing Manual Testing Quality Assurance Testing quality analyst Contact Preethi <br />\nTelephone 080-30706155 Email plobo@teksystems.com</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'SFDC QA (4-6 Years)- Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-SFDC-QA-4-6-Years-Bangalore-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-7-years-090715002038'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:23 [scrapy] ERROR: Error processing {'company': u'Allegis Services India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 23, 970623),
'description': [u'\t<p>Total years of experience must be from 4-6 years.<br />\nExperience in manual testing.<br />\nExperience in automation (writing automation scripts).<br />\nExperience in core java.<br />\nKnowledge in <span class="caps">CRM</span>.<br />\nExperience in salesforces would be added advantage.<br />\nExperience in TestNG is a must.</p>\n\n\t<p>Candidates who can join in 1 month would be preferred.<br />\nDesired Profile Please refer to the Job description above Experience 4 &#8211; 7 Years Industry Type IT-Software / Software Services Role Testing Engineer Functional Area IT Software &#8211; QA &amp; Testing Education <br />\nUG &#8211; Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG &#8211; Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords IT Software &#8211; QA &amp; Testing testng test ng sfdc qa Automation Testing Manual Testing Quality Assurance Testing quality analyst Contact Preethi <br />\nTelephone 080-30706155 Email plobo@teksystems.com</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'SFDC QA (4-6 Years)- Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-SFDC-QA-4-6-Years-Bangalore-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-7-years-090715002038'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Lordi Systems Staffing Solutions Pvt. Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 24, 753954),
'description': [u'\t<p>Hiring for one of the <span class="caps">NBFC</span> for the role of Cluster Manager / Regional Manager for <span class="caps">DST</span> Channel</p>\n\n\t<p>Job description:</p>\n\n\t<p>Recruiting &amp; managing a team of 100 through branch networking Bombay and sourcing employee with the<br />\nDM/DST background<br />\nSourcing new life insurance business from existing clients base and reference market<br />\nCross selling/up-selling of multi products for the existing client base<br />\nEnsuring all compliance&#8217;s and mandates are followed<br />\nEnsuring high level of persistence &amp; quality of business<br />\nDesigning &amp; implementing various marketing activities &amp; events to insure smooth flow of data.</p>\n\n\t<p>Requirements:</p>\n\n\t<p>Minimum 5 years of experience in Life insurance is must<br />\nMinimum graduate<br />\nAge should not be less than 30<br />\nTeam handling experience is compulsory</p>\n\n\t<p>Location : Ahmedabad/ Mumbai (Chandivali)/ Bangalore<br />\n<span class="caps">CTC</span>: Up to 10LPA</p>\n\n\t<p>Interested candidates please mail resume to hr4@lordisystems.com or call Anu @ 08045613312</p>\n\n\t<p>Warm Regards,<br />\nAnushree A<br />\nSenior HR Executive- Talent Acquisition Specialist<br />\nL &#8211; 08045613312<br />\nExtension no:212<br />\nE hr4@lordisystems.com </p>\n\n\t<p>#19/3, 2nd Floor, Above <span class="caps">MED</span> Plus<br />\nNandidurga Road, Jayamahal Extension<br />\nBenson Town Post, Bangalore &#8211; 560046</p>\n\n\t<p>www.lordisystems.com</p>\n\n\t<p>Salary: 4,00,000 &#8211; 8,00,000 P.A </p>\n\n\t<p>Industry: Insurance </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Regional Manager</p>\n\n\t<p>Keyskills <br />\nAgency direct sales life insurance agency head recruiter advisor cluster manager regional head regional manager tied channel <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Bengaluru/Bangalore', u'Mumbai', u'Ahmedabad'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 24, 753838),
'salary': u'4,00,000 - 8,00,000 P.A',
'skills': [u'Agency',
u'direct sales',
u'life insurance',
u'recruiter advisor',
u'cluster manager',
u'regional head',
u'regional manager'],
'title': u'Cluster Head / Regional Manager',
'url': 'http://jobsearch.naukri.com/job-listings-Cluster-Head-Regional-Manager-Lordi-Systems-Staffing-Solutions-Pvt-Ltd-Bengaluru-Bangalore-Mumbai-Ahmedabad-5-to-8-years-160715007876'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:24 [scrapy] ERROR: Error processing {'company': u'Lordi Systems Staffing Solutions Pvt. Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 24, 753954),
'description': [u'\t<p>Hiring for one of the <span class="caps">NBFC</span> for the role of Cluster Manager / Regional Manager for <span class="caps">DST</span> Channel</p>\n\n\t<p>Job description:</p>\n\n\t<p>Recruiting &amp; managing a team of 100 through branch networking Bombay and sourcing employee with the<br />\nDM/DST background<br />\nSourcing new life insurance business from existing clients base and reference market<br />\nCross selling/up-selling of multi products for the existing client base<br />\nEnsuring all compliance&#8217;s and mandates are followed<br />\nEnsuring high level of persistence &amp; quality of business<br />\nDesigning &amp; implementing various marketing activities &amp; events to insure smooth flow of data.</p>\n\n\t<p>Requirements:</p>\n\n\t<p>Minimum 5 years of experience in Life insurance is must<br />\nMinimum graduate<br />\nAge should not be less than 30<br />\nTeam handling experience is compulsory</p>\n\n\t<p>Location : Ahmedabad/ Mumbai (Chandivali)/ Bangalore<br />\n<span class="caps">CTC</span>: Up to 10LPA</p>\n\n\t<p>Interested candidates please mail resume to hr4@lordisystems.com or call Anu @ 08045613312</p>\n\n\t<p>Warm Regards,<br />\nAnushree A<br />\nSenior HR Executive- Talent Acquisition Specialist<br />\nL &#8211; 08045613312<br />\nExtension no:212<br />\nE hr4@lordisystems.com </p>\n\n\t<p>#19/3, 2nd Floor, Above <span class="caps">MED</span> Plus<br />\nNandidurga Road, Jayamahal Extension<br />\nBenson Town Post, Bangalore &#8211; 560046</p>\n\n\t<p>www.lordisystems.com</p>\n\n\t<p>Salary: 4,00,000 &#8211; 8,00,000 P.A </p>\n\n\t<p>Industry: Insurance </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Regional Manager</p>\n\n\t<p>Keyskills <br />\nAgency direct sales life insurance agency head recruiter advisor cluster manager regional head regional manager tied channel <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Bengaluru/Bangalore', u'Mumbai', u'Ahmedabad'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 24, 753838),
'salary': u'4,00,000 - 8,00,000 P.A',
'skills': [u'Agency',
u'direct sales',
u'life insurance',
u'recruiter advisor',
u'cluster manager',
u'regional head',
u'regional manager'],
'title': u'Cluster Head / Regional Manager',
'url': 'http://jobsearch.naukri.com/job-listings-Cluster-Head-Regional-Manager-Lordi-Systems-Staffing-Solutions-Pvt-Ltd-Bengaluru-Bangalore-Mumbai-Ahmedabad-5-to-8-years-160715007876'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Harman International India Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 25, 823511),
'description': [u'\t<p>Job Description<br />\nPosition Summary: Briefly describe the primary purpose and function of this position.<br />\nTo Test Infotainment system developed by <span class="caps">HARMAN</span>. Validate the system SW continuously with different Test Techniques to achieve the Quality Software and System Performance as per the requirement of Client/Customer. Support the development team to achieve defect free software by bring out the bugs early in the project. Follow release plan of the project and quickly adopt to the change in plan.</p>\n\n\t<p>Supervisory Responsibilities: Please indicate the number of direct reports and/or number of indirect reports.</p>\n\n\t<p>This position does not have any direct or indirect reports. </p>\n\n\t<p>Job Responsibilities:</p>\n\n\t<p>Domain Ownership of two or more of the following domains: Voice Recognition, Audio, Navigation and Systems. </p>\n\n\t<p>Understand the Architecture of Software and Hardware.</p>\n\n\t<p><span class="caps">HMI</span> and <span class="caps">API</span> level Testing in two or more domain.</p>\n\n\t<p>Quickly ramp up on the entire system testing perspective.</p>\n\n\t<p>Finding defects on system, service and engine level through Exploratory and Regression Testing.</p>\n\n\t<p>Test Suite generation, Maintenance of existing Test Suites and Adding Exploratory Test Cases to Test Suite after every release.</p>\n\n\t<p>Writing Automation Scripts using C#.</p>\n\n\t<p>Detailed analysis of reported problems, Bug analysis, Bug verification and tracking. Perform reviews and other activities to ensure high-quality results. </p>\n\n\t<p>Independently handle both Test automation and manual testing request.</p>\n\n\t<p>Involvement in vehicle drive testing.</p>\n\n\t<p>Should handle internal customer by timely communication with correct data.<br />\nIndependently perform a complete project testing.</p>\n\n\t<p>Required:<br />\n4+ years of experience in Testing </p>\n\n\t<p>Min 2 years in Infotainment SW / System testing.</p>\n\n\t<p>Must have knowledge of software and Hardware architecture.</p>\n\n\t<p>1 or 2 projects specifically on VR or Navigation</p>\n\n\t<p>Over all system Knowledge and Vehicle Testing </p>\n\n\t<p>Must have knowledge in Test Automation.</p>\n\n\t<p>Programming skills using Scripting Language (C# /Python)</p>\n\n\t<p>Knowledge on Testing Quality standards</p>\n\n\t<p>Good English Skills (writing, documenting, conversation)</p>\n\n\t<p>Has ability to quickly ramp up on the entire system testing perspective.</p>\n\n\t<p>Basic Qualifications:</p>\n\n\t<p>Bachelors Degree / Masterss Degree in Engineering, </p>\n\n\t<p>At least 2+ years of Relevant Testing experience</p>\n\n\t<p>Infotainment System Test Knowledge is must</p>\n\n\t<p>Have Proven Testing Skills </p>\n\n\t<p>Quick learner of System and Architecture</p>\n\n\t<p><span class="caps">ISTQB</span> certification (Basic or Advanced)</p>\n\n\t<p>Preferred Qualifications &amp; Desired Competencies: Please list the preferred qualifications and ideal behaviors needed for this position based on the following:</p>\n\n\t<p>Results-Driven: Having a proactive, goal oriented approach to decision making.</p>\n\n\t<p>Clear and strategic thinker; proven experience in translating strategies <br />\ninto actionable plans.</p>\n\n\t<p>Capable of handling multiples projects / initiatives simultaneously and executing to completion</p>\n\n\t<p>Willing to support late hours and on weekends on need basis.</p>\n\n\t<p>Team Player: Having respect for colleagues; leading teams with clarity and accountability.</p>\n\n\t<p>Proven team player with excellent communication and interpersonal skills who can effectively work with all levels of a global matrixed organization </p>\n\n\t<p>Change Orientation: Able to adapt to changing demands and conditions.<br />\nAct as a Change Management expert and enabler on various projects and programs across the business</p>\n\n\t<p>Customer Focus: Providing exceptional service and quality to external and internal customer.</p>\n\n\t<p>Understanding and working in past organizations that have centralized and de-centralized structures as business requirements change</p>\n\n\t<p>Self-Awareness: Accepting responsibility for personal development and actions.<br />\nHave clear objectives and strives to exceed them </p>\n\n\t<p>Takes ownership for personal career and skill development </p>\n\n\t<p>Other:<br />\nExposure to Test Automation.<br />\nKnowledge in Automotive Spice <br />\nHas to be fluent in the English language both verbal as in writing.</p>\n\n\t<p>Eligibility Requirements: List specific location of position and % of willingness to travel<br />\nWillingness to travel 10% of the time</p>\n\n\t<p>Willingness to work in an office in Bangalore / Pune, India</p>\n\n\t<p><span class="caps">HARMAN</span> will only employ those who are legally authorized to work in India for this opening. Any offer of employment is conditioned upon the successful completion of a background investigation and drug screen.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nVR testing vr test engineer Speech Test Engineer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 25, 823429),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'Voice Recognition (speech) Testing-infotainment Domain is Mandatory',
'url': 'http://jobsearch.naukri.com/job-listings-Voice-Recognition-speech-Testing-infotainment-Domain-is-Mandatory-Harman-International-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007898'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:25 [scrapy] ERROR: Error processing {'company': u'Harman International India Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 25, 823511),
'description': [u'\t<p>Job Description<br />\nPosition Summary: Briefly describe the primary purpose and function of this position.<br />\nTo Test Infotainment system developed by <span class="caps">HARMAN</span>. Validate the system SW continuously with different Test Techniques to achieve the Quality Software and System Performance as per the requirement of Client/Customer. Support the development team to achieve defect free software by bring out the bugs early in the project. Follow release plan of the project and quickly adopt to the change in plan.</p>\n\n\t<p>Supervisory Responsibilities: Please indicate the number of direct reports and/or number of indirect reports.</p>\n\n\t<p>This position does not have any direct or indirect reports. </p>\n\n\t<p>Job Responsibilities:</p>\n\n\t<p>Domain Ownership of two or more of the following domains: Voice Recognition, Audio, Navigation and Systems. </p>\n\n\t<p>Understand the Architecture of Software and Hardware.</p>\n\n\t<p><span class="caps">HMI</span> and <span class="caps">API</span> level Testing in two or more domain.</p>\n\n\t<p>Quickly ramp up on the entire system testing perspective.</p>\n\n\t<p>Finding defects on system, service and engine level through Exploratory and Regression Testing.</p>\n\n\t<p>Test Suite generation, Maintenance of existing Test Suites and Adding Exploratory Test Cases to Test Suite after every release.</p>\n\n\t<p>Writing Automation Scripts using C#.</p>\n\n\t<p>Detailed analysis of reported problems, Bug analysis, Bug verification and tracking. Perform reviews and other activities to ensure high-quality results. </p>\n\n\t<p>Independently handle both Test automation and manual testing request.</p>\n\n\t<p>Involvement in vehicle drive testing.</p>\n\n\t<p>Should handle internal customer by timely communication with correct data.<br />\nIndependently perform a complete project testing.</p>\n\n\t<p>Required:<br />\n4+ years of experience in Testing </p>\n\n\t<p>Min 2 years in Infotainment SW / System testing.</p>\n\n\t<p>Must have knowledge of software and Hardware architecture.</p>\n\n\t<p>1 or 2 projects specifically on VR or Navigation</p>\n\n\t<p>Over all system Knowledge and Vehicle Testing </p>\n\n\t<p>Must have knowledge in Test Automation.</p>\n\n\t<p>Programming skills using Scripting Language (C# /Python)</p>\n\n\t<p>Knowledge on Testing Quality standards</p>\n\n\t<p>Good English Skills (writing, documenting, conversation)</p>\n\n\t<p>Has ability to quickly ramp up on the entire system testing perspective.</p>\n\n\t<p>Basic Qualifications:</p>\n\n\t<p>Bachelors Degree / Masterss Degree in Engineering, </p>\n\n\t<p>At least 2+ years of Relevant Testing experience</p>\n\n\t<p>Infotainment System Test Knowledge is must</p>\n\n\t<p>Have Proven Testing Skills </p>\n\n\t<p>Quick learner of System and Architecture</p>\n\n\t<p><span class="caps">ISTQB</span> certification (Basic or Advanced)</p>\n\n\t<p>Preferred Qualifications &amp; Desired Competencies: Please list the preferred qualifications and ideal behaviors needed for this position based on the following:</p>\n\n\t<p>Results-Driven: Having a proactive, goal oriented approach to decision making.</p>\n\n\t<p>Clear and strategic thinker; proven experience in translating strategies <br />\ninto actionable plans.</p>\n\n\t<p>Capable of handling multiples projects / initiatives simultaneously and executing to completion</p>\n\n\t<p>Willing to support late hours and on weekends on need basis.</p>\n\n\t<p>Team Player: Having respect for colleagues; leading teams with clarity and accountability.</p>\n\n\t<p>Proven team player with excellent communication and interpersonal skills who can effectively work with all levels of a global matrixed organization </p>\n\n\t<p>Change Orientation: Able to adapt to changing demands and conditions.<br />\nAct as a Change Management expert and enabler on various projects and programs across the business</p>\n\n\t<p>Customer Focus: Providing exceptional service and quality to external and internal customer.</p>\n\n\t<p>Understanding and working in past organizations that have centralized and de-centralized structures as business requirements change</p>\n\n\t<p>Self-Awareness: Accepting responsibility for personal development and actions.<br />\nHave clear objectives and strives to exceed them </p>\n\n\t<p>Takes ownership for personal career and skill development </p>\n\n\t<p>Other:<br />\nExposure to Test Automation.<br />\nKnowledge in Automotive Spice <br />\nHas to be fluent in the English language both verbal as in writing.</p>\n\n\t<p>Eligibility Requirements: List specific location of position and % of willingness to travel<br />\nWillingness to travel 10% of the time</p>\n\n\t<p>Willingness to work in an office in Bangalore / Pune, India</p>\n\n\t<p><span class="caps">HARMAN</span> will only employ those who are legally authorized to work in India for this opening. Any offer of employment is conditioned upon the successful completion of a background investigation and drug screen.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nVR testing vr test engineer Speech Test Engineer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 25, 823429),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'Voice Recognition (speech) Testing-infotainment Domain is Mandatory',
'url': 'http://jobsearch.naukri.com/job-listings-Voice-Recognition-speech-Testing-infotainment-Domain-is-Mandatory-Harman-International-India-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007898'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'CLARITY CONSULTING',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 26, 701281),
'description': [u'\t<p>Content Writers/Proofer: </p>\n\n\t<p>Responsibilities: </p>\n\n\t<p>Quality assurance of digital search campaigns. <br />\nProof reading all text within the site including graphics, checking for proper sentence structure, grammar, typographical errors as well as confirming critical business information. (i.e. Firm Name, Address, Telephone #, e-mail, etc.) Both digital and manual spell checks should be performed.<br />\nSkills:<br />\nAbility for critical thinking and analysis.<br />\nSolid work ethic, teaming, adaptation to fast-paced environment, and works well under pressure.<br />\nExcellent professional, communication (both verbal and written) skills.<br />\nAbility to self-motivate, prioritize and multi-task.<br />\nAbility to research and solve problems.<br />\nAnalytic skills required.<br />\nProficiency in Microsoft Office Suite (Word, Excel and PowerPoint) is a must<br />\nFamiliarity with Search Engine Marketing, preferred<br />\nGoogle AdWords and Bing Ads certification must be obtained within 30-days of hire</p>\n\n\t<p>Salary: As per industry norms </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: Design , Creative , User Experience </p>\n\n\t<p>Role Category:Creative</p>\n\n\t<p>Role:Copywriter</p>\n\n\t<p>Keyskills <br />\nWeb Content Writing Proof Reading Search Engine Marketing Google AdWords Quality Assurance Writing Skills Professional Communication Web Technologies Excel Powerpoint MS Office <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>At least 2 years of experience in Web content writing.<br />\nRegular graduate.</p>\n\n\t<p>Ready to work in rotational shift.</p>\n\n\t<p>Ready to go for face to face on saturday (18th July.15)</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 26, 701174),
'salary': u'As per industry norms',
'skills': [u'Proof Reading',
u'Search Engine Marketing',
u'Quality Assurance',
u'Web Technologies',
u'MS Office'],
'title': u'Web Content Writer - Process Specialist',
'url': 'http://jobsearch.naukri.com/job-listings-Web-Content-Writer-Process-Specialist-CLARITY-CONSULTING-Bengaluru-Bangalore-2-to-7-years-160715007899'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:26 [scrapy] ERROR: Error processing {'company': u'CLARITY CONSULTING',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 26, 701281),
'description': [u'\t<p>Content Writers/Proofer: </p>\n\n\t<p>Responsibilities: </p>\n\n\t<p>Quality assurance of digital search campaigns. <br />\nProof reading all text within the site including graphics, checking for proper sentence structure, grammar, typographical errors as well as confirming critical business information. (i.e. Firm Name, Address, Telephone #, e-mail, etc.) Both digital and manual spell checks should be performed.<br />\nSkills:<br />\nAbility for critical thinking and analysis.<br />\nSolid work ethic, teaming, adaptation to fast-paced environment, and works well under pressure.<br />\nExcellent professional, communication (both verbal and written) skills.<br />\nAbility to self-motivate, prioritize and multi-task.<br />\nAbility to research and solve problems.<br />\nAnalytic skills required.<br />\nProficiency in Microsoft Office Suite (Word, Excel and PowerPoint) is a must<br />\nFamiliarity with Search Engine Marketing, preferred<br />\nGoogle AdWords and Bing Ads certification must be obtained within 30-days of hire</p>\n\n\t<p>Salary: As per industry norms </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: Design , Creative , User Experience </p>\n\n\t<p>Role Category:Creative</p>\n\n\t<p>Role:Copywriter</p>\n\n\t<p>Keyskills <br />\nWeb Content Writing Proof Reading Search Engine Marketing Google AdWords Quality Assurance Writing Skills Professional Communication Web Technologies Excel Powerpoint MS Office <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>At least 2 years of experience in Web content writing.<br />\nRegular graduate.</p>\n\n\t<p>Ready to work in rotational shift.</p>\n\n\t<p>Ready to go for face to face on saturday (18th July.15)</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 26, 701174),
'salary': u'As per industry norms',
'skills': [u'Proof Reading',
u'Search Engine Marketing',
u'Quality Assurance',
u'Web Technologies',
u'MS Office'],
'title': u'Web Content Writer - Process Specialist',
'url': 'http://jobsearch.naukri.com/job-listings-Web-Content-Writer-Process-Specialist-CLARITY-CONSULTING-Bengaluru-Bangalore-2-to-7-years-160715007899'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Allegis Services India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 27, 348058),
'description': [u'\t<p>I am Priyanka and I represent <span class="caps">TEK</span>systems India.</p>\n\n\t<p><span class="caps">TEK</span>systems, an Allegis Group company, is the worlds largest and leading Technology Staffing Company.<br />\nAllegis Group is one of the world&#8217;s largest privately held companies with over US $10 Billion in revenues and over 100,000 employees worldwide. We have our operations in United States, Europe, India and other Asian countries.</p>\n\n\t<p>At <span class="caps">TEK</span>systems we are looking for <span class="caps">OBIEE</span> Developers for our client <span class="caps">ORACLE</span> <span class="caps">INDIA</span>. This position would be on the payrolls of <span class="caps">TEK</span>systems.</p>\n\n\t<p>Job Description:</p>\n\n\t<p>&#8220;Strong Knowledge in <span class="caps">OBIEE</span>11g<br />\nKnowledge on Informatica will be an added advantage.&#8221;<br />\nSR Resolution / Support the reporting solution which includes Informatica, <span class="caps">OBIEE</span>.</p>\n\n\t<p>This position is based out of Bangalore/Hyderabad.</p>\n\n\t<p>If interested, write back to me (pprabhak@teksystems.com) along with your updated profile and the following details :<br />\nTotal Experience:<br />\nRelevant Yrs of experience:<br />\nCurrent company:<br />\nCurrent <span class="caps">CTC</span>:<br />\n<span class="caps">EXP</span> <span class="caps">CTC</span>:<br />\nNotice Period:<br />\nKindly note that we are looking for candidates who can join immediately or within 30 days</p>\n\n\t<p>Desired Profile Please refer to the Job description above Experience 4 &#8211; 9 Years Industry Type IT-Software / Software Services Role Outside Consultant Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG &#8211; Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords Informatica <span class="caps">OBIEE</span> Oracle odi Contact Priyanka Prabhakar <br />\nTelephone 08030705344</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Obiee Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Obiee-Developer-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-9-years-160715007918'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:27 [scrapy] ERROR: Error processing {'company': u'Allegis Services India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 27, 348058),
'description': [u'\t<p>I am Priyanka and I represent <span class="caps">TEK</span>systems India.</p>\n\n\t<p><span class="caps">TEK</span>systems, an Allegis Group company, is the worlds largest and leading Technology Staffing Company.<br />\nAllegis Group is one of the world&#8217;s largest privately held companies with over US $10 Billion in revenues and over 100,000 employees worldwide. We have our operations in United States, Europe, India and other Asian countries.</p>\n\n\t<p>At <span class="caps">TEK</span>systems we are looking for <span class="caps">OBIEE</span> Developers for our client <span class="caps">ORACLE</span> <span class="caps">INDIA</span>. This position would be on the payrolls of <span class="caps">TEK</span>systems.</p>\n\n\t<p>Job Description:</p>\n\n\t<p>&#8220;Strong Knowledge in <span class="caps">OBIEE</span>11g<br />\nKnowledge on Informatica will be an added advantage.&#8221;<br />\nSR Resolution / Support the reporting solution which includes Informatica, <span class="caps">OBIEE</span>.</p>\n\n\t<p>This position is based out of Bangalore/Hyderabad.</p>\n\n\t<p>If interested, write back to me (pprabhak@teksystems.com) along with your updated profile and the following details :<br />\nTotal Experience:<br />\nRelevant Yrs of experience:<br />\nCurrent company:<br />\nCurrent <span class="caps">CTC</span>:<br />\n<span class="caps">EXP</span> <span class="caps">CTC</span>:<br />\nNotice Period:<br />\nKindly note that we are looking for candidates who can join immediately or within 30 days</p>\n\n\t<p>Desired Profile Please refer to the Job description above Experience 4 &#8211; 9 Years Industry Type IT-Software / Software Services Role Outside Consultant Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG &#8211; Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords Informatica <span class="caps">OBIEE</span> Oracle odi Contact Priyanka Prabhakar <br />\nTelephone 08030705344</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Obiee Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Obiee-Developer-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-9-years-160715007918'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'XPT Consultancy Software Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 28, 276717),
'description': [u'\t<p>Dear Candidate,</p>\n\n\t<p>! Hope you are doing well !</p>\n\n\t<p>happy to say you all we have urgent opening with ux/ui designer for internal team of <span class="caps">XPT</span> Software.</p>\n\n\t<p>Detailed job description &#8211; Skill Set:- User Interface and Visual designers who should be able to understand the intended functionality of the product and user research for the target user base. Then, this person(s) should be able to design the user interface for the product and come up with an innovative and unique visual design. The person(s) must have extensive experience working on mobile apps and on iOS platform. They should be proficient in using iOS design principles, Cocoa framework and iOS iconography, who can work with HFi <span class="caps">STD</span> certified Design . </p>\n\n\t<p>Salary: salary open as per experience range </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Design , Creative , User Experience </p>\n\n\t<p>Role Category:Creative</p>\n\n\t<p>Role:Web Designer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">IOS</span> Cocoa Framework Visual Design User Research ui desiner Ux designer ux developer <span class="caps">HFI</span> UI Designer user interface designer web designer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 7 yrs',
'location': [u'Bengaluru/Bangalore', u'Pune'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 28, 276647),
'salary': u'salary open as per experience range',
'skills': [u'Cocoa Framework',
u'Visual Design',
u'Ux designer',
u'UI Designer',
u'user interface designer',
u'web designer'],
'title': u'Job ! Urgent Opening ! UX Designer ! Pune ! Bangalore ! XPT Software',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Urgent-Opening-UX-Designer-Pune-Bangalore-XPT-Software-XPT-Consultancy-Software-Services-Pvt-Ltd-Bengaluru-Bangalore-Pune-3-to-7-years-160715007923'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:28 [scrapy] ERROR: Error processing {'company': u'XPT Consultancy Software Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 28, 276717),
'description': [u'\t<p>Dear Candidate,</p>\n\n\t<p>! Hope you are doing well !</p>\n\n\t<p>happy to say you all we have urgent opening with ux/ui designer for internal team of <span class="caps">XPT</span> Software.</p>\n\n\t<p>Detailed job description &#8211; Skill Set:- User Interface and Visual designers who should be able to understand the intended functionality of the product and user research for the target user base. Then, this person(s) should be able to design the user interface for the product and come up with an innovative and unique visual design. The person(s) must have extensive experience working on mobile apps and on iOS platform. They should be proficient in using iOS design principles, Cocoa framework and iOS iconography, who can work with HFi <span class="caps">STD</span> certified Design . </p>\n\n\t<p>Salary: salary open as per experience range </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Design , Creative , User Experience </p>\n\n\t<p>Role Category:Creative</p>\n\n\t<p>Role:Web Designer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">IOS</span> Cocoa Framework Visual Design User Research ui desiner Ux designer ux developer <span class="caps">HFI</span> UI Designer user interface designer web designer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 7 yrs',
'location': [u'Bengaluru/Bangalore', u'Pune'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 28, 276647),
'salary': u'salary open as per experience range',
'skills': [u'Cocoa Framework',
u'Visual Design',
u'Ux designer',
u'UI Designer',
u'user interface designer',
u'web designer'],
'title': u'Job ! Urgent Opening ! UX Designer ! Pune ! Bangalore ! XPT Software',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Urgent-Opening-UX-Designer-Pune-Bangalore-XPT-Software-XPT-Consultancy-Software-Services-Pvt-Ltd-Bengaluru-Bangalore-Pune-3-to-7-years-160715007923'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'PRI India',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 28, 983920),
'description': [u'\t<p>Job Description: <br />\nJob responsibilities: <br />\nThe Ideal candiate should have worked in Pivotal Admin role with below skills. Good PaaS knowledge Pivotal Architecture and Components Application Staging Process Ops Manager Setup and Manage User Accounts Controlling Console User Activity Zero Downtime Deployments High Availability Pivotal Ops Metrics Services <br />\nEssentials: <br />\nInstallation, Monitoring, Ops Mgr, Services &amp; Security</p>\n\n\t<p>Desirable: <br />\nCapacity planning</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Database Architect/Designer</p>\n\n\t<p>Keyskills <br />\nPivotal Pivotal Architecture <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 28, 983849),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'Pivotal Admin',
'url': 'http://jobsearch.naukri.com/job-listings-Pivotal-Admin-PRI-India-Bengaluru-Bangalore-5-to-7-years-160715007936'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:28 [scrapy] ERROR: Error processing {'company': u'PRI India',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 28, 983920),
'description': [u'\t<p>Job Description: <br />\nJob responsibilities: <br />\nThe Ideal candiate should have worked in Pivotal Admin role with below skills. Good PaaS knowledge Pivotal Architecture and Components Application Staging Process Ops Manager Setup and Manage User Accounts Controlling Console User Activity Zero Downtime Deployments High Availability Pivotal Ops Metrics Services <br />\nEssentials: <br />\nInstallation, Monitoring, Ops Mgr, Services &amp; Security</p>\n\n\t<p>Desirable: <br />\nCapacity planning</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Database Architect/Designer</p>\n\n\t<p>Keyskills <br />\nPivotal Pivotal Architecture <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 28, 983849),
'salary': u'Not Disclosed by Recruiter',
'skills': [],
'title': u'Pivotal Admin',
'url': 'http://jobsearch.naukri.com/job-listings-Pivotal-Admin-PRI-India-Bengaluru-Bangalore-5-to-7-years-160715007936'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Huge-Opening-for-International-Voice-Cse-sr-CSE-MphasiS-Limited-Bengaluru-Bangalore-1-to-4-years-110615001553> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:28 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Huge-Opening-for-International-Voice-Cse-sr-CSE-MphasiS-Limited-Bengaluru-Bangalore-1-to-4-years-110615001553> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Chase-3-0-Lead-System-Administrator-BLR-JPMorgan-Chase-Bengaluru-Bangalore-7-to-10-years-150715900646> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:28 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Chase-3-0-Lead-System-Administrator-BLR-JPMorgan-Chase-Bengaluru-Bangalore-7-to-10-years-150715900646> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Technical-Lead-HCL-Technologies-Bengaluru-Bangalore-7-to-9-years-160715900737> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:29 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Technical-Lead-HCL-Technologies-Bengaluru-Bangalore-7-to-9-years-160715900737> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-LEAD-Consultant-HCL-Technologies-Bengaluru-Bangalore-7-to-9-years-160715900736> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:29 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-LEAD-Consultant-HCL-Technologies-Bengaluru-Bangalore-7-to-9-years-160715900736> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Imm-Requirement-for-Recruiter-in-B-lore-for-Corporate-Healthcare-co--Lordi-Systems-Staffing-Solutions-Pvt-Ltd-Bengaluru-Bangalore-5-to-10-years-160715007511> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:29 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Imm-Requirement-for-Recruiter-in-B-lore-for-Corporate-Healthcare-co--Lordi-Systems-Staffing-Solutions-Pvt-Ltd-Bengaluru-Bangalore-5-to-10-years-160715007511> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opening-with-MNC-BPO-for-Process-Trainer-BFSI-in-Bangalore-Hyderabad-SmartServe-IT-Enabled-Services-Pvt-Ltd--Bengaluru-Bangalore-Hyderabad-Secunderabad-3-to-6-years-160715007532> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:29 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opening-with-MNC-BPO-for-Process-Trainer-BFSI-in-Bangalore-Hyderabad-SmartServe-IT-Enabled-Services-Pvt-Ltd--Bengaluru-Bangalore-Hyderabad-Secunderabad-3-to-6-years-160715007532> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Data-Warehousing-Consultant-only-Immediate-Joiner--Growel-Softech-Ltd-Bengaluru-Bangalore-6-to-11-years-160715007533> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:29 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Data-Warehousing-Consultant-only-Immediate-Joiner--Growel-Softech-Ltd-Bengaluru-Bangalore-6-to-11-years-160715007533> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Hiring-for-International-Voice-in-Mphasis-MphasiS-Limited-Bengaluru-Bangalore-0-to-5-years-150715008346> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:06:29 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Hiring-for-International-Voice-in-Mphasis-MphasiS-Limited-Bengaluru-Bangalore-0-to-5-years-150715008346> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
ERROR:scrapy.core.scraper:Error processing {'company': u'Vee Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 29, 818186),
'description': [u'\t<p>Job Description:</p>\n\n\t<p>3+ Year of experience Hospital ED coding.<br />\n6 month+ of experience in <span class="caps">SDS</span>/Ambulatory coding.</p>\n\n\t<p>Receive assigned medical charts to code.<br />\nReview medical charts electronically using a computer.<br />\nAbstract and code diagnosis and documentation information based on guidelines provided.</p>\n\n\t<p>Specialty : Hospital ED coding &amp; <span class="caps">SDS</span> coding.<br />\nExperience : 3- 7 Year.<br />\nDesignation: Medical coder/ Sr.medical coder/QA<br />\nJob Location : Bangalore / Chennai / Salem </p>\n\n\t<p>Regards</p>\n\n\t<p>Sowmya<br />\n9488781064 </p>\n\n\t<p>Salary: 1,00,000 &#8211; 5,00,000 P.A. Best in the Industry </p>\n\n\t<p>Industry: Medical / Healthcare / Hospitals </p>\n\n\t<p>Functional Area: Medical , Healthcare , R&D , Pharmaceuticals , Biotechnology </p>\n\n\t<p>Role Category:Medical Professional</p>\n\n\t<p>Role:Medical Officer</p>\n\n\t<p>Keyskills <br />\nCpc Medical Coding medical coder <span class="caps">CCS</span> Coder ED Coding Emergency Room Er Coding ED Coder pathology coding E M <span class="caps">CODING</span> Multi specialities coding denials <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 6 yrs',
'location': [u'Bengaluru/Bangalore', u'Chennai'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 29, 818086),
'salary': u'1,00,000 - 5,00,000 P.A. Best in the Industry',
'skills': [u'Cpc', u'Medical Coding'],
'title': u'Immediate Opening for ED & SDS Coding @ Vee Technologies',
'url': 'http://jobsearch.naukri.com/job-listings-Immediate-Opening-for-ED-SDS-Coding-Vee-Technologies-Vee-Technologies-Bengaluru-Bangalore-Chennai-1-to-6-years-100715003417'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:29 [scrapy] ERROR: Error processing {'company': u'Vee Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 29, 818186),
'description': [u'\t<p>Job Description:</p>\n\n\t<p>3+ Year of experience Hospital ED coding.<br />\n6 month+ of experience in <span class="caps">SDS</span>/Ambulatory coding.</p>\n\n\t<p>Receive assigned medical charts to code.<br />\nReview medical charts electronically using a computer.<br />\nAbstract and code diagnosis and documentation information based on guidelines provided.</p>\n\n\t<p>Specialty : Hospital ED coding &amp; <span class="caps">SDS</span> coding.<br />\nExperience : 3- 7 Year.<br />\nDesignation: Medical coder/ Sr.medical coder/QA<br />\nJob Location : Bangalore / Chennai / Salem </p>\n\n\t<p>Regards</p>\n\n\t<p>Sowmya<br />\n9488781064 </p>\n\n\t<p>Salary: 1,00,000 &#8211; 5,00,000 P.A. Best in the Industry </p>\n\n\t<p>Industry: Medical / Healthcare / Hospitals </p>\n\n\t<p>Functional Area: Medical , Healthcare , R&D , Pharmaceuticals , Biotechnology </p>\n\n\t<p>Role Category:Medical Professional</p>\n\n\t<p>Role:Medical Officer</p>\n\n\t<p>Keyskills <br />\nCpc Medical Coding medical coder <span class="caps">CCS</span> Coder ED Coding Emergency Room Er Coding ED Coder pathology coding E M <span class="caps">CODING</span> Multi specialities coding denials <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 6 yrs',
'location': [u'Bengaluru/Bangalore', u'Chennai'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 29, 818086),
'salary': u'1,00,000 - 5,00,000 P.A. Best in the Industry',
'skills': [u'Cpc', u'Medical Coding'],
'title': u'Immediate Opening for ED & SDS Coding @ Vee Technologies',
'url': 'http://jobsearch.naukri.com/job-listings-Immediate-Opening-for-ED-SDS-Coding-Vee-Technologies-Vee-Technologies-Bengaluru-Bangalore-Chennai-1-to-6-years-100715003417'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'pinnacle cosultant',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 30, 870033),
'description': [u'\t<p>Need to have a min. experience of 5 &#8211; 8 years.<br />\nNeed to visit architects consultants &amp; clients &amp; can give them techno commercial presentation on the relevant products.<br />\nCandidate should have site knowledge and have to travel as per to site requirement. </p>\n\n\t<p>Salary: 4,00,000 &#8211; 8,00,000 P.A </p>\n\n\t<p>Industry: Construction / Engineering / Cement / Metals </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Regional Manager</p>\n\n\t<p>Keyskills <br />\nSales &amp; Marketing marketing manager Industrial Marketing sales manager industrial business development area sales manager <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Civil, Electrical, Electronics/Telecommunication, Mechanical, Diploma &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Candidates from <span class="caps">ETA</span>, Suvidha Engineers, sterling &amp; wilson, Voltas, L&T, Shapoorji &amp; palonji, <span class="caps">ABB</span> will be recommended strongly. Good communication &amp; Presentation skills.<br />\nRegional Manager (Will be in charge for South Region): Bangalore (Office)</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Mumbai', u'Pune', u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 30, 869965),
'salary': u'4,00,000 - 8,00,000 P.A',
'skills': [u'Sales & Marketing',
u'marketing manager',
u'sales manager',
u'area sales manager'],
'title': u'Regional Manager - Banglore',
'url': 'http://jobsearch.naukri.com/job-listings-Regional-Manager-Banglore-pinnacle-cosultant-Mumbai-Pune-Bengaluru-Bangalore-5-to-8-years-160715007954'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:30 [scrapy] ERROR: Error processing {'company': u'pinnacle cosultant',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 30, 870033),
'description': [u'\t<p>Need to have a min. experience of 5 &#8211; 8 years.<br />\nNeed to visit architects consultants &amp; clients &amp; can give them techno commercial presentation on the relevant products.<br />\nCandidate should have site knowledge and have to travel as per to site requirement. </p>\n\n\t<p>Salary: 4,00,000 &#8211; 8,00,000 P.A </p>\n\n\t<p>Industry: Construction / Engineering / Cement / Metals </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Regional Manager</p>\n\n\t<p>Keyskills <br />\nSales &amp; Marketing marketing manager Industrial Marketing sales manager industrial business development area sales manager <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Civil, Electrical, Electronics/Telecommunication, Mechanical, Diploma &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Candidates from <span class="caps">ETA</span>, Suvidha Engineers, sterling &amp; wilson, Voltas, L&T, Shapoorji &amp; palonji, <span class="caps">ABB</span> will be recommended strongly. Good communication &amp; Presentation skills.<br />\nRegional Manager (Will be in charge for South Region): Bangalore (Office)</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Mumbai', u'Pune', u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 30, 869965),
'salary': u'4,00,000 - 8,00,000 P.A',
'skills': [u'Sales & Marketing',
u'marketing manager',
u'sales manager',
u'area sales manager'],
'title': u'Regional Manager - Banglore',
'url': 'http://jobsearch.naukri.com/job-listings-Regional-Manager-Banglore-pinnacle-cosultant-Mumbai-Pune-Bengaluru-Bangalore-5-to-8-years-160715007954'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Capability Search',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 31, 854064),
'description': [u'\t<p>Candidates with exp of Quick Service Restaurant, Hotel or Food Industry,Retail Background with knowledge of Stock Management, Inventory, Food Cost and Waste Management. Team Handling exp with Good Communication is must. <span class="caps">BHM</span> Freshers can also apply. </p>\n\n\t<p>Salary: Best in the Industry </p>\n\n\t<p>Industry: Travel / Hotels / Restaurants / Airlines / Railways </p>\n\n\t<p>Functional Area: Hotels , Restaurants </p>\n\n\t<p>Role Category:Food &amp; Beverage</p>\n\n\t<p>Role:Restaurant Manager</p>\n\n\t<p>Keyskills <br />\nHotel Waste Management Stock Management Team Handling Quick Service Restaurants <span class="caps">FIFO</span> <span class="caps">EBITDA</span> Retail Operations Operations Team Handling <span class="caps">BHM</span> F&B Quality Audits Cost Controlling Customer Orientation <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required, <span class="caps">BHM</span> &#8211; Hotel Management</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Good Communication, Result Oriented, High Customer Orientation, Team-Handling, Profit Driven, Stock Forcasting, Food Cost Management, Motivational Skills, Quality Maintenance, Can supervise smooth cafe operations and individual outlet operations.</p>'],
'exp': u'1 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 31, 853959),
'salary': u'Best in the Industry',
'skills': [u'Waste Management',
u'Stock Management',
u'Operations Team Handling',
u'BHM'],
'title': u'Urgent Hiring for Assistant Manager /cafe Manager in Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Hiring-for-Assistant-Manager-cafe-Manager-in-Bangalore-Capability-Search-Bengaluru-Bangalore-1-to-6-years-160715007907'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:31 [scrapy] ERROR: Error processing {'company': u'Capability Search',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 31, 854064),
'description': [u'\t<p>Candidates with exp of Quick Service Restaurant, Hotel or Food Industry,Retail Background with knowledge of Stock Management, Inventory, Food Cost and Waste Management. Team Handling exp with Good Communication is must. <span class="caps">BHM</span> Freshers can also apply. </p>\n\n\t<p>Salary: Best in the Industry </p>\n\n\t<p>Industry: Travel / Hotels / Restaurants / Airlines / Railways </p>\n\n\t<p>Functional Area: Hotels , Restaurants </p>\n\n\t<p>Role Category:Food &amp; Beverage</p>\n\n\t<p>Role:Restaurant Manager</p>\n\n\t<p>Keyskills <br />\nHotel Waste Management Stock Management Team Handling Quick Service Restaurants <span class="caps">FIFO</span> <span class="caps">EBITDA</span> Retail Operations Operations Team Handling <span class="caps">BHM</span> F&B Quality Audits Cost Controlling Customer Orientation <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required, <span class="caps">BHM</span> &#8211; Hotel Management</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Good Communication, Result Oriented, High Customer Orientation, Team-Handling, Profit Driven, Stock Forcasting, Food Cost Management, Motivational Skills, Quality Maintenance, Can supervise smooth cafe operations and individual outlet operations.</p>'],
'exp': u'1 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 31, 853959),
'salary': u'Best in the Industry',
'skills': [u'Waste Management',
u'Stock Management',
u'Operations Team Handling',
u'BHM'],
'title': u'Urgent Hiring for Assistant Manager /cafe Manager in Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Hiring-for-Assistant-Manager-cafe-Manager-in-Bangalore-Capability-Search-Bengaluru-Bangalore-1-to-6-years-160715007907'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Vee Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 32, 635705),
'description': [u'\t<p>Job Description:</p>\n\n\t<p>1+ Year of experience Hospital ED &amp; Denials coding(Experience in E&M,Pathalogy,ED,pathology, multi specialities) </p>\n\n\t<p>Receive assigned medical charts to code.<br />\nReview medical charts electronically using a computer.<br />\nAbstract and code diagnosis and documentation information based on guidelines provided.</p>\n\n\t<p>Specialty : Hospital ED coding &amp; Denials coding(Experience in E/M,Pathology, ED,Pathology, multi specialities)</p>\n\n\t<p>Experience : 1- 6 Year.<br />\nDesignation: Medical coder/ Sr.medical coder/QA<br />\nJob Location : Bangalore / Chennai </p>\n\n\t<p>Regards</p>\n\n\t<p>Sowmya<br />\n9488781064 </p>\n\n\t<p>Salary: 1,00,000 &#8211; 5,00,000 P.A. Best in the Industry </p>\n\n\t<p>Industry: Medical / Healthcare / Hospitals </p>\n\n\t<p>Functional Area: Medical , Healthcare , R&D , Pharmaceuticals , Biotechnology </p>\n\n\t<p>Role Category:Medical Professional</p>\n\n\t<p>Role:Medical Officer</p>\n\n\t<p>Keyskills <br />\nCpc Medical Coding medical coder <span class="caps">CCS</span> Coder ED Coding Emergency Room Er Coding ED Coder pathology coding E M <span class="caps">CODING</span> Multi specialities coding denials <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 6 yrs',
'location': [u'Bengaluru/Bangalore', u'Chennai'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 32, 635613),
'salary': u'1,00,000 - 5,00,000 P.A. Best in the Industry',
'skills': [u'Cpc', u'Medical Coding'],
'title': u'Immediate Opening for ED & Denials Coding @ Vee Technologies',
'url': 'http://jobsearch.naukri.com/job-listings-Immediate-Opening-for-ED-Denials-Coding-Vee-Technologies-Vee-Technologies-Bengaluru-Bangalore-Chennai-1-to-6-years-220615004408'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:32 [scrapy] ERROR: Error processing {'company': u'Vee Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 32, 635705),
'description': [u'\t<p>Job Description:</p>\n\n\t<p>1+ Year of experience Hospital ED &amp; Denials coding(Experience in E&M,Pathalogy,ED,pathology, multi specialities) </p>\n\n\t<p>Receive assigned medical charts to code.<br />\nReview medical charts electronically using a computer.<br />\nAbstract and code diagnosis and documentation information based on guidelines provided.</p>\n\n\t<p>Specialty : Hospital ED coding &amp; Denials coding(Experience in E/M,Pathology, ED,Pathology, multi specialities)</p>\n\n\t<p>Experience : 1- 6 Year.<br />\nDesignation: Medical coder/ Sr.medical coder/QA<br />\nJob Location : Bangalore / Chennai </p>\n\n\t<p>Regards</p>\n\n\t<p>Sowmya<br />\n9488781064 </p>\n\n\t<p>Salary: 1,00,000 &#8211; 5,00,000 P.A. Best in the Industry </p>\n\n\t<p>Industry: Medical / Healthcare / Hospitals </p>\n\n\t<p>Functional Area: Medical , Healthcare , R&D , Pharmaceuticals , Biotechnology </p>\n\n\t<p>Role Category:Medical Professional</p>\n\n\t<p>Role:Medical Officer</p>\n\n\t<p>Keyskills <br />\nCpc Medical Coding medical coder <span class="caps">CCS</span> Coder ED Coding Emergency Room Er Coding ED Coder pathology coding E M <span class="caps">CODING</span> Multi specialities coding denials <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 6 yrs',
'location': [u'Bengaluru/Bangalore', u'Chennai'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 32, 635613),
'salary': u'1,00,000 - 5,00,000 P.A. Best in the Industry',
'skills': [u'Cpc', u'Medical Coding'],
'title': u'Immediate Opening for ED & Denials Coding @ Vee Technologies',
'url': 'http://jobsearch.naukri.com/job-listings-Immediate-Opening-for-ED-Denials-Coding-Vee-Technologies-Vee-Technologies-Bengaluru-Bangalore-Chennai-1-to-6-years-220615004408'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Career Soft Solutions Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 33, 400466),
'description': [u'\t<p>Job Description: </p>\n\n\t<p>Candidate should have minimum 5 &#8211; 20 Years of total experience <br />\nAt least 3 Years of experience in Web methods<br />\nIn depth knowledge on Integration (<span class="caps">EAI</span>) projects<br />\nShould have worked on Web Methods 6.x , 7.x and 8.x Ver<br />\nShould be strong in Web Methods components, like Developer, Broker, Integration Server, Trading Network , Designer etc.<br />\nWell versed with Enterprise Integration Architecture and designing<br />\nEnd to end development in Integration project and Designing and estimation<br />\nVery good knowledge on Integration platform / Middleware.<br />\nMust have experience on <span class="caps">EAI</span> / <span class="caps">ESB</span><br />\nKnowledge of <span class="caps">CAF</span> / <span class="caps">BPM</span> will be an advantage<br />\nExperience in file based integrations will be an advantage<br />\nHas a complete knowledge of Integration Development life cycle<br />\nKnowledge of any one or more of following technologies/domains is desirable: Java, Oracle<br />\nExcellent interpersonal and communication skills<br />\nAbility to prioritize and work on several tasks at any one time<br />\nDeployer / Administration experience is nice to have<br />\nWorked on various components of web Methods such as Integration Server, Trading Networks, Designer, Broker, <span class="caps">MWS</span><br />\nAbility to interact with different functional areas with Excellent Interpersonal, Written and Presentation skills. </p>\n\n\t<p>Salary: 6,00,000 &#8211; 16,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Middleware </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nWebmethods Web &#8211; methods web methods Web methods web &#8211; methods web <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Chennai', u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 33, 400388),
'salary': u'6,00,000 - 16,00,000 P.A',
'skills': [u'Webmethods',
u'Web - methods',
u'web methods',
u'Web',
u'web - methods',
u'web'],
'title': u'Webmethods (5 - 20 Years) Opening with Product Based Company',
'url': 'http://jobsearch.naukri.com/job-listings-Webmethods-5-20-Years-Opening-with-Product-Based-Company-Career-Soft-Solutions-Pvt-Ltd--Chennai-Bengaluru-Bangalore-5-to-10-years-290615002157'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:33 [scrapy] ERROR: Error processing {'company': u'Career Soft Solutions Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 33, 400466),
'description': [u'\t<p>Job Description: </p>\n\n\t<p>Candidate should have minimum 5 &#8211; 20 Years of total experience <br />\nAt least 3 Years of experience in Web methods<br />\nIn depth knowledge on Integration (<span class="caps">EAI</span>) projects<br />\nShould have worked on Web Methods 6.x , 7.x and 8.x Ver<br />\nShould be strong in Web Methods components, like Developer, Broker, Integration Server, Trading Network , Designer etc.<br />\nWell versed with Enterprise Integration Architecture and designing<br />\nEnd to end development in Integration project and Designing and estimation<br />\nVery good knowledge on Integration platform / Middleware.<br />\nMust have experience on <span class="caps">EAI</span> / <span class="caps">ESB</span><br />\nKnowledge of <span class="caps">CAF</span> / <span class="caps">BPM</span> will be an advantage<br />\nExperience in file based integrations will be an advantage<br />\nHas a complete knowledge of Integration Development life cycle<br />\nKnowledge of any one or more of following technologies/domains is desirable: Java, Oracle<br />\nExcellent interpersonal and communication skills<br />\nAbility to prioritize and work on several tasks at any one time<br />\nDeployer / Administration experience is nice to have<br />\nWorked on various components of web Methods such as Integration Server, Trading Networks, Designer, Broker, <span class="caps">MWS</span><br />\nAbility to interact with different functional areas with Excellent Interpersonal, Written and Presentation skills. </p>\n\n\t<p>Salary: 6,00,000 &#8211; 16,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Middleware </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nWebmethods Web &#8211; methods web methods Web methods web &#8211; methods web <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Chennai', u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 33, 400388),
'salary': u'6,00,000 - 16,00,000 P.A',
'skills': [u'Webmethods',
u'Web - methods',
u'web methods',
u'Web',
u'web - methods',
u'web'],
'title': u'Webmethods (5 - 20 Years) Opening with Product Based Company',
'url': 'http://jobsearch.naukri.com/job-listings-Webmethods-5-20-Years-Opening-with-Product-Based-Company-Career-Soft-Solutions-Pvt-Ltd--Chennai-Bengaluru-Bangalore-5-to-10-years-290615002157'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Kulaja Services LLP',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 34, 99617),
'description': [u'\t<p>Desired Skills &amp; Experience<br />\nExcellent Problem solving skills and Programming skills<br />\nHands on and well versed on\n\t<ul>\n\t\t<li>Core Java</li>\n\t\t<li>Data structures and patterns</li>\n\t\t<li>Open source stack and tools</li>\n\t\t<li>Open Source <span class="caps">SDLC</span> tools</li>\n\t\t<li>Coding, OO Principles and Algorithms</li>\n\t</ul></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nData Structures Open Source Problem Solving Java Developer <span class="caps">SDLC</span> oo principle design patterns Algorithm Development core java Spring Hibernet software engineer sr.software engineer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 34, 99498),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Data Structures',
u'Open Source',
u'Problem Solving',
u'SDLC',
u'design patterns',
u'core java',
u'Spring',
u'software engineer',
u'sr.software engineer'],
'title': u'Opening For Sr.java Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Opening-For-Sr-java-Developer-Kulaja-Services-LLP-Bengaluru-Bangalore-4-to-7-years-160715007969'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:34 [scrapy] ERROR: Error processing {'company': u'Kulaja Services LLP',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 34, 99617),
'description': [u'\t<p>Desired Skills &amp; Experience<br />\nExcellent Problem solving skills and Programming skills<br />\nHands on and well versed on\n\t<ul>\n\t\t<li>Core Java</li>\n\t\t<li>Data structures and patterns</li>\n\t\t<li>Open source stack and tools</li>\n\t\t<li>Open Source <span class="caps">SDLC</span> tools</li>\n\t\t<li>Coding, OO Principles and Algorithms</li>\n\t</ul></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nData Structures Open Source Problem Solving Java Developer <span class="caps">SDLC</span> oo principle design patterns Algorithm Development core java Spring Hibernet software engineer sr.software engineer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 34, 99498),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Data Structures',
u'Open Source',
u'Problem Solving',
u'SDLC',
u'design patterns',
u'core java',
u'Spring',
u'software engineer',
u'sr.software engineer'],
'title': u'Opening For Sr.java Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Opening-For-Sr-java-Developer-Kulaja-Services-LLP-Bengaluru-Bangalore-4-to-7-years-160715007969'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'SRI RAJARAJESHWARI AND CO.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 35, 183648),
'description': [u'\t<p><span class="caps">WALK</span> IN <span class="caps">INTERVIEW</span> : <br />\nWE <span class="caps">NEED</span> <span class="caps">GOOD</span> <span class="caps">TECHNICIAN</span> TO <span class="caps">WORK</span> IN <span class="caps">EVENT</span> <span class="caps">MANAGEMENT</span> OF <span class="caps">COMPANY</span> IN <span class="caps">DIFFERENT</span> <span class="caps">PART</span> OF <span class="caps">BANGALORE</span>. <span class="caps">KNOWLEDGE</span> OF <span class="caps">ELECTRICAL</span> <span class="caps">AND</span> <span class="caps">ELECTRONS</span> IS <span class="caps">MUST</span>. <span class="caps">ONLY</span> <span class="caps">MALE</span> <span class="caps">CANDIDATES</span> <span class="caps">ARE</span> <span class="caps">APPLY</span> <span class="caps">FOR</span> <span class="caps">THIS</span> <span class="caps">JOB</span>. </p>\n\n\t<p>Salary: Very Good Salary ++++++lot OF Other Incentives </p>\n\n\t<p>Industry: Advertising / PR / MR / Event Management </p>\n\n\t<p>Functional Area: Production , Manufacturing , Maintenance </p>\n\n\t<p>Role Category:Production/Manufacturing/Maintenance</p>\n\n\t<p>Role:Industrial Engineer</p>\n\n\t<p>Keyskills <br />\nAudio Technician Activities electrician activities service engineer activities <span class="caps">THOSE</span> <span class="caps">WHO</span> <span class="caps">ARE</span> <span class="caps">VERY</span> <span class="caps">SERIOUS</span> <span class="caps">ABOUT</span> <span class="caps">JOB</span> <span class="caps">MAY</span> <span class="caps">WALK</span> IN <span class="caps">OFFICE</span> <span class="caps">FOR</span> <span class="caps">INTERVIEW</span> customer support engineer activities <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Graduation Not Required, Diploma &#8211; Any Specialization</p>\n\n\t<p>PG:Post Graduation Not Required, Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p><span class="caps">PREFENCE</span> <span class="caps">WILL</span> BE <span class="caps">GIVEN</span> TO <span class="caps">ITI</span> <span class="caps">CANDIDATES</span> <span class="caps">ACCOMMODATION</span> &amp; <span class="caps">FOOD</span> <span class="caps">WILL</span> BE <span class="caps">PROVIDED</span> <span class="caps">GOOD</span> <span class="caps">HARD</span> <span class="caps">WORKING</span> <span class="caps">CANDIDATES</span> <span class="caps">WHO</span> <span class="caps">ARE</span> <span class="caps">WILLING</span> <span class="caps">JOIN</span> <span class="caps">IMMEDIATELY</span> <span class="caps">MAY</span> <span class="caps">WALK</span> IN <span class="caps">OFFICE</span> <span class="caps">WITH</span> <span class="caps">ALL</span> <span class="caps">DOCUMENTS</span></p>'],
'exp': u'0 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 35, 183578),
'salary': u'Very Good Salary ++++++lot OF Other Incentives',
'skills': [u'Audio'],
'title': u'Technician - E P B X Audio & Video',
'url': 'http://jobsearch.naukri.com/job-listings-Technician-E-P-B-X-Audio-Video-SRI-RAJARAJESHWARI-AND-CO--Bengaluru-Bangalore-0-to-5-years-200315001290'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:35 [scrapy] ERROR: Error processing {'company': u'SRI RAJARAJESHWARI AND CO.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 35, 183648),
'description': [u'\t<p><span class="caps">WALK</span> IN <span class="caps">INTERVIEW</span> : <br />\nWE <span class="caps">NEED</span> <span class="caps">GOOD</span> <span class="caps">TECHNICIAN</span> TO <span class="caps">WORK</span> IN <span class="caps">EVENT</span> <span class="caps">MANAGEMENT</span> OF <span class="caps">COMPANY</span> IN <span class="caps">DIFFERENT</span> <span class="caps">PART</span> OF <span class="caps">BANGALORE</span>. <span class="caps">KNOWLEDGE</span> OF <span class="caps">ELECTRICAL</span> <span class="caps">AND</span> <span class="caps">ELECTRONS</span> IS <span class="caps">MUST</span>. <span class="caps">ONLY</span> <span class="caps">MALE</span> <span class="caps">CANDIDATES</span> <span class="caps">ARE</span> <span class="caps">APPLY</span> <span class="caps">FOR</span> <span class="caps">THIS</span> <span class="caps">JOB</span>. </p>\n\n\t<p>Salary: Very Good Salary ++++++lot OF Other Incentives </p>\n\n\t<p>Industry: Advertising / PR / MR / Event Management </p>\n\n\t<p>Functional Area: Production , Manufacturing , Maintenance </p>\n\n\t<p>Role Category:Production/Manufacturing/Maintenance</p>\n\n\t<p>Role:Industrial Engineer</p>\n\n\t<p>Keyskills <br />\nAudio Technician Activities electrician activities service engineer activities <span class="caps">THOSE</span> <span class="caps">WHO</span> <span class="caps">ARE</span> <span class="caps">VERY</span> <span class="caps">SERIOUS</span> <span class="caps">ABOUT</span> <span class="caps">JOB</span> <span class="caps">MAY</span> <span class="caps">WALK</span> IN <span class="caps">OFFICE</span> <span class="caps">FOR</span> <span class="caps">INTERVIEW</span> customer support engineer activities <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Graduation Not Required, Diploma &#8211; Any Specialization</p>\n\n\t<p>PG:Post Graduation Not Required, Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p><span class="caps">PREFENCE</span> <span class="caps">WILL</span> BE <span class="caps">GIVEN</span> TO <span class="caps">ITI</span> <span class="caps">CANDIDATES</span> <span class="caps">ACCOMMODATION</span> &amp; <span class="caps">FOOD</span> <span class="caps">WILL</span> BE <span class="caps">PROVIDED</span> <span class="caps">GOOD</span> <span class="caps">HARD</span> <span class="caps">WORKING</span> <span class="caps">CANDIDATES</span> <span class="caps">WHO</span> <span class="caps">ARE</span> <span class="caps">WILLING</span> <span class="caps">JOIN</span> <span class="caps">IMMEDIATELY</span> <span class="caps">MAY</span> <span class="caps">WALK</span> IN <span class="caps">OFFICE</span> <span class="caps">WITH</span> <span class="caps">ALL</span> <span class="caps">DOCUMENTS</span></p>'],
'exp': u'0 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 35, 183578),
'salary': u'Very Good Salary ++++++lot OF Other Incentives',
'skills': [u'Audio'],
'title': u'Technician - E P B X Audio & Video',
'url': 'http://jobsearch.naukri.com/job-listings-Technician-E-P-B-X-Audio-Video-SRI-RAJARAJESHWARI-AND-CO--Bengaluru-Bangalore-0-to-5-years-200315001290'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Microstrategy-Admin-Bangalore-Hyderabad-Live-connections-Hyderabad-Secunderabad-Bengaluru-Bangalore-3-to-8-years-160715007537> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:35 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Microstrategy-Admin-Bangalore-Hyderabad-Live-connections-Hyderabad-Secunderabad-Bengaluru-Bangalore-3-to-8-years-160715007537> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Admin-cum-Front-Desk-Executive-Job-Location-Bangalore-Quinnox-Consultancy-Services-Bengaluru-Bangalore-2-to-6-years-160715007551> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:35 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Admin-cum-Front-Desk-Executive-Job-Location-Bangalore-Quinnox-Consultancy-Services-Bengaluru-Bangalore-2-to-6-years-160715007551> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Investment-Banking-Proces-KYC-AML-interview-at-Hyderabad-Yellow-Box-HR-Services-Pvt-Ltd--Bengaluru-Bangalore-2-to-7-years-160715007554> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:35 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Investment-Banking-Proces-KYC-AML-interview-at-Hyderabad-Yellow-Box-HR-Services-Pvt-Ltd--Bengaluru-Bangalore-2-to-7-years-160715007554> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IT-Sales-Sales-Executive-RSolutions-Bengaluru-Bangalore-1-to-3-years-160715007563> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:35 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IT-Sales-Sales-Executive-RSolutions-Bengaluru-Bangalore-1-to-3-years-160715007563> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Genesys-CME-for-Bangalore-Location--Burgeon-It-Services-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007566> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:35 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Genesys-CME-for-Bangalore-Location--Burgeon-It-Services-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007566> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Manager-Digital-Marketing-5-8-yrs-Bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-8-years-160715007149> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:35 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Manager-Digital-Marketing-5-8-yrs-Bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-8-years-160715007149> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Excellent-Opening-for-Service-Now-Tool-with-Leading-MNC-Company-CBSI-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-8-years-160715007559> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:35 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Excellent-Opening-for-Service-Now-Tool-with-Leading-MNC-Company-CBSI-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-8-years-160715007559> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Job-Opening-for-Inside-Sales-Orcapod-Consulting-Services-Bengaluru-Bangalore-2-to-4-years-100715003512> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:35 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Job-Opening-for-Inside-Sales-Orcapod-Consulting-Services-Bengaluru-Bangalore-2-to-4-years-100715003512> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
ERROR:scrapy.core.scraper:Error processing {'company': u'MphasiS Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 35, 446786),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>\xa0Huge Opening for International Voice Process</p><p> Company:- \xa0Mphasis,\xa0 Bangalore</p> <p> Location:-\xa0 Bangalore</p> <p> Experience\xa0 0.6 to 5 years</p> <p> Salary:-Upto 3.08 PA</p> <p> Qualification:- Undergraduate/Graduate/Post Graduate</p> <p> Contact Person:- Sukhmeet Singh Krishan</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 +91 80 6750 5660\t</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 sukhmeet.k@mphasis.com</p> <p> Job Description:-</p> <p> \tExcellent Communication Skills</p> <p> \tMinimum 6 months experience in International Voice Experience</p> <p> \tFlexible working in Rotational Shifts</p> <p> \tInbound Calls</p> <p> \tCandidates should have Experience Certificates from Previous Organization</p> <p> \tImmediate\xa0 Joinees</p> <p> \tInterested Candidates can walkin for interview from Monday to Friday, time:-10 am to 4pm</p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: INR 1,75,000 - 2,75,000 P.A</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tKeyskills: CSE, customer support, customer care, Inbound Calls Handling, Outbound Calling, international calling, telesales calling, inbound calling, outbound sales</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Huge Opening for International Voice Cse,sr CSE',
'url': 'http://jobsearch.naukri.com/job-listings-Huge-Opening-for-International-Voice-Cse-sr-CSE-MphasiS-Limited-Bengaluru-Bangalore-1-to-4-years-110615001553'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:35 [scrapy] ERROR: Error processing {'company': u'MphasiS Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 35, 446786),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>\xa0Huge Opening for International Voice Process</p><p> Company:- \xa0Mphasis,\xa0 Bangalore</p> <p> Location:-\xa0 Bangalore</p> <p> Experience\xa0 0.6 to 5 years</p> <p> Salary:-Upto 3.08 PA</p> <p> Qualification:- Undergraduate/Graduate/Post Graduate</p> <p> Contact Person:- Sukhmeet Singh Krishan</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 +91 80 6750 5660\t</p> <p> \xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0\xa0 sukhmeet.k@mphasis.com</p> <p> Job Description:-</p> <p> \tExcellent Communication Skills</p> <p> \tMinimum 6 months experience in International Voice Experience</p> <p> \tFlexible working in Rotational Shifts</p> <p> \tInbound Calls</p> <p> \tCandidates should have Experience Certificates from Previous Organization</p> <p> \tImmediate\xa0 Joinees</p> <p> \tInterested Candidates can walkin for interview from Monday to Friday, time:-10 am to 4pm</p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: INR 1,75,000 - 2,75,000 P.A</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tKeyskills: CSE, customer support, customer care, Inbound Calls Handling, Outbound Calling, international calling, telesales calling, inbound calling, outbound sales</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Huge Opening for International Voice Cse,sr CSE',
'url': 'http://jobsearch.naukri.com/job-listings-Huge-Opening-for-International-Voice-Cse-sr-CSE-MphasiS-Limited-Bengaluru-Bangalore-1-to-4-years-110615001553'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'JPMorgan Chase',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 36, 538962),
'description': [u'\t<p>Qualifications </p>\n\n\t<p>The ideal candidate will have 5 or more years of Distributed (Windows , <span class="caps">UNIX</span> , Linux , <span class="caps">AIX</span> , Storage <span class="caps">NAS</span> /SAN , and VMware) systems administration experience. The candidate should also have 2 or more years of Network Operations experience with an excellent understanding of the <span class="caps">OSI</span> model specifically Layers 1-3. You should also possess 3-5 years of solid technical expertise and experience as well as a proven track record in an operations environment in a complex systems environment including Mainframe &amp; Large Midrange Technologies. </p>\n\n\t<p>Other required skills:</p>\n\n\t<p>Possess expertise and solid understanding of systems monitoring tools and capabilities in an operations environment.</p>\n\n\t<p>Bachelor&#8217;s degree in an Engineering or Computer /Information Systems discipline , or 2-year technical degree with 4 years of Operation /engineering related management experience , or 7 years Operations /Engineering /Administration experience.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Network Administration , Security </p>\n\n\t<p>Role Category:Admin/Maintenance/Security/Datawarehousing</p>\n\n\t<p>Role:System Administrator</p>\n\n\t<p>Keyskills <br />\nmainframe windows aix vmware san operations nas network operations systems osi model <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Qualifications </p>\n\n\t<p>The ideal candidate will have 5 or more years of Distributed (Windows , <span class="caps">UNIX</span> , Linux , <span class="caps">AIX</span> , Storage <span class="caps">NAS</span> /SAN , and VMware) systems administration experience. The candidate should also have 2 or more years of Network Operations experience with an excellent understanding of the <span class="caps">OSI</span> model specifically Layers 1-3. You should also possess 3-5 years of solid technical expertise and experience as well as a proven track record in an operations environment in a complex systems environment including Mainframe &amp; Large Midrange Technologies. </p>\n\n\t<p>Other required skills:</p>\n\n\t<p>Possess expertise and solid understanding of systems monitoring tools and capabilities in an operations environment.</p>\n\n\t<p>Bachelor&#8217;s degree in an Engineering or Computer /Information Systems discipline , or 2-year technical degree with 4 years of Operation /engineering related management experience , or 7 years Operations /Engineering /Administration experience.</p>'],
'exp': u'7 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 36, 538850),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'mainframe',
u'windows',
u'aix',
u'vmware',
u'san',
u'operations',
u'nas',
u'network operations',
u'systems'],
'title': u'Chase 3.0 - Lead System Administrator - BLR',
'url': 'http://jobsearch.naukri.com/job-listings-Chase-3-0-Lead-System-Administrator-BLR-JPMorgan-Chase-Bengaluru-Bangalore-7-to-10-years-150715900646'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:36 [scrapy] ERROR: Error processing {'company': u'JPMorgan Chase',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 36, 538962),
'description': [u'\t<p>Qualifications </p>\n\n\t<p>The ideal candidate will have 5 or more years of Distributed (Windows , <span class="caps">UNIX</span> , Linux , <span class="caps">AIX</span> , Storage <span class="caps">NAS</span> /SAN , and VMware) systems administration experience. The candidate should also have 2 or more years of Network Operations experience with an excellent understanding of the <span class="caps">OSI</span> model specifically Layers 1-3. You should also possess 3-5 years of solid technical expertise and experience as well as a proven track record in an operations environment in a complex systems environment including Mainframe &amp; Large Midrange Technologies. </p>\n\n\t<p>Other required skills:</p>\n\n\t<p>Possess expertise and solid understanding of systems monitoring tools and capabilities in an operations environment.</p>\n\n\t<p>Bachelor&#8217;s degree in an Engineering or Computer /Information Systems discipline , or 2-year technical degree with 4 years of Operation /engineering related management experience , or 7 years Operations /Engineering /Administration experience.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Network Administration , Security </p>\n\n\t<p>Role Category:Admin/Maintenance/Security/Datawarehousing</p>\n\n\t<p>Role:System Administrator</p>\n\n\t<p>Keyskills <br />\nmainframe windows aix vmware san operations nas network operations systems osi model <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Qualifications </p>\n\n\t<p>The ideal candidate will have 5 or more years of Distributed (Windows , <span class="caps">UNIX</span> , Linux , <span class="caps">AIX</span> , Storage <span class="caps">NAS</span> /SAN , and VMware) systems administration experience. The candidate should also have 2 or more years of Network Operations experience with an excellent understanding of the <span class="caps">OSI</span> model specifically Layers 1-3. You should also possess 3-5 years of solid technical expertise and experience as well as a proven track record in an operations environment in a complex systems environment including Mainframe &amp; Large Midrange Technologies. </p>\n\n\t<p>Other required skills:</p>\n\n\t<p>Possess expertise and solid understanding of systems monitoring tools and capabilities in an operations environment.</p>\n\n\t<p>Bachelor&#8217;s degree in an Engineering or Computer /Information Systems discipline , or 2-year technical degree with 4 years of Operation /engineering related management experience , or 7 years Operations /Engineering /Administration experience.</p>'],
'exp': u'7 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 36, 538850),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'mainframe',
u'windows',
u'aix',
u'vmware',
u'san',
u'operations',
u'nas',
u'network operations',
u'systems'],
'title': u'Chase 3.0 - Lead System Administrator - BLR',
'url': 'http://jobsearch.naukri.com/job-listings-Chase-3-0-Lead-System-Administrator-BLR-JPMorgan-Chase-Bengaluru-Bangalore-7-to-10-years-150715900646'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'HCL Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 37, 241523),
'description': [u'\t<p>To be responsible for managing technology in projects and providing technical guidance / solutions for work completion (1.) To be responsible for providing technical guidance / solutions (2.) To develop and guide the team members in enhancing their technical capabilities and increasing productivity (3.) TO ensure process compliance in the assigned module| and participate in technical discussions/review. (4.) To prepare and submit status reports for minimizing exposure and risks on the project or closure of escalations. Desired Profile Please refer to the Job description above Experience 7 &#8211; 9 Years Industry Type IT-Software / Software Services Role Team Lead/Technical Lead Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG &#8211; Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords Technical Competencies &#8211; Enterprise Architect &amp; Process Consultin &#8211; <span class="caps">TOGAF</span> Contact HR</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Senior Technical Lead',
'url': 'http://jobsearch.naukri.com/job-listings-Senior-Technical-Lead-HCL-Technologies-Bengaluru-Bangalore-7-to-9-years-160715900737'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:37 [scrapy] ERROR: Error processing {'company': u'HCL Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 37, 241523),
'description': [u'\t<p>To be responsible for managing technology in projects and providing technical guidance / solutions for work completion (1.) To be responsible for providing technical guidance / solutions (2.) To develop and guide the team members in enhancing their technical capabilities and increasing productivity (3.) TO ensure process compliance in the assigned module| and participate in technical discussions/review. (4.) To prepare and submit status reports for minimizing exposure and risks on the project or closure of escalations. Desired Profile Please refer to the Job description above Experience 7 &#8211; 9 Years Industry Type IT-Software / Software Services Role Team Lead/Technical Lead Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG &#8211; Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords Technical Competencies &#8211; Enterprise Architect &amp; Process Consultin &#8211; <span class="caps">TOGAF</span> Contact HR</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Senior Technical Lead',
'url': 'http://jobsearch.naukri.com/job-listings-Senior-Technical-Lead-HCL-Technologies-Bengaluru-Bangalore-7-to-9-years-160715900737'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'HCL Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 38, 110959),
'description': [u'\t<p>To create| assign and track the project [module] work plans for delivery and also provide technical guidance for work completion. (1.) To develop and guide the team members in enhancing their technical capabilities and increasing productivity. (2.) To ensure process improvement and compliance in the assigned module| and participate in technical discussions/review. (3.) To prepare and submit status reports for minimizing exposure and risks on the project or closure of escalations. (4.) To create work plans| monitor and track the work schedule for on time delivery as per the defined quality standards. Desired Profile Please refer to the Job description above Experience 7 &#8211; 9 Years Industry Type IT-Software / Software Services Role Team Lead/Technical Lead Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG &#8211; Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords Technical Skills &#8211; <span class="caps">ERP</span> Oracle Functional &#8211; <span class="caps">SCM</span> Contact HR</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'LEAD Consultant',
'url': 'http://jobsearch.naukri.com/job-listings-LEAD-Consultant-HCL-Technologies-Bengaluru-Bangalore-7-to-9-years-160715900736'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:38 [scrapy] ERROR: Error processing {'company': u'HCL Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 38, 110959),
'description': [u'\t<p>To create| assign and track the project [module] work plans for delivery and also provide technical guidance for work completion. (1.) To develop and guide the team members in enhancing their technical capabilities and increasing productivity. (2.) To ensure process improvement and compliance in the assigned module| and participate in technical discussions/review. (3.) To prepare and submit status reports for minimizing exposure and risks on the project or closure of escalations. (4.) To create work plans| monitor and track the work schedule for on time delivery as per the defined quality standards. Desired Profile Please refer to the Job description above Experience 7 &#8211; 9 Years Industry Type IT-Software / Software Services Role Team Lead/Technical Lead Functional Area IT Software &#8211; Application Programming, Maintenance Education <br />\nUG &#8211; B.Tech/B.E. &#8211; Computers</p>\n\n\t<p>PG &#8211; Post Graduation Not Required</p>\n\n\t<p>Doctorate &#8211; Any Doctorate &#8211; Any Specialization, Doctorate Not Required<br />\nCompensation: Not disclosed Location Bengaluru/Bangalore Keywords Technical Skills &#8211; <span class="caps">ERP</span> Oracle Functional &#8211; <span class="caps">SCM</span> Contact HR</p>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'LEAD Consultant',
'url': 'http://jobsearch.naukri.com/job-listings-LEAD-Consultant-HCL-Technologies-Bengaluru-Bangalore-7-to-9-years-160715900736'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Lordi Systems Staffing Solutions Pvt. Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 39, 118760),
'description': [u'\t<p>Dear Prospective Candidate,</p>\n\n\t<p>We have an immediate opening for Recruiter Position with one of our leading and reputed Client who caters to diabetic patients. The role requires the incumbent to handle the end-to-end recruitment @ <span class="caps">PAN</span> India level for the company.</p>\n\n\t<p>Candidates from healthcare/hospital background would be given first preference.</p>\n\n\t<p>You application enclosed with updated CV to hr16@lordisystems.com will be much appreciated. Alternatively, you may would like to call on +91-80-4561 3332.</p>\n\n\t<p>Salary: Best in Industry </p>\n\n\t<p>Industry: Recruitment / Staffing </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Manager</p>\n\n\t<p>Keyskills <br />\nrecruiter recruitment talent acquisition staffing hiring resourcing <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Candidates from healthcare/hospital background would be given first preference.</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 39, 118659),
'salary': u'Best in Industry',
'skills': [u'recruiter',
u'recruitment',
u'talent acquisition',
u'staffing',
u'hiring',
u'resourcing'],
'title': u"Imm Requirement for Recruiter in B'lore for Corporate Healthcare co.",
'url': 'http://jobsearch.naukri.com/job-listings-Imm-Requirement-for-Recruiter-in-B-lore-for-Corporate-Healthcare-co--Lordi-Systems-Staffing-Solutions-Pvt-Ltd-Bengaluru-Bangalore-5-to-10-years-160715007511'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:39 [scrapy] ERROR: Error processing {'company': u'Lordi Systems Staffing Solutions Pvt. Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 39, 118760),
'description': [u'\t<p>Dear Prospective Candidate,</p>\n\n\t<p>We have an immediate opening for Recruiter Position with one of our leading and reputed Client who caters to diabetic patients. The role requires the incumbent to handle the end-to-end recruitment @ <span class="caps">PAN</span> India level for the company.</p>\n\n\t<p>Candidates from healthcare/hospital background would be given first preference.</p>\n\n\t<p>You application enclosed with updated CV to hr16@lordisystems.com will be much appreciated. Alternatively, you may would like to call on +91-80-4561 3332.</p>\n\n\t<p>Salary: Best in Industry </p>\n\n\t<p>Industry: Recruitment / Staffing </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Manager</p>\n\n\t<p>Keyskills <br />\nrecruiter recruitment talent acquisition staffing hiring resourcing <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Candidates from healthcare/hospital background would be given first preference.</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 39, 118659),
'salary': u'Best in Industry',
'skills': [u'recruiter',
u'recruitment',
u'talent acquisition',
u'staffing',
u'hiring',
u'resourcing'],
'title': u"Imm Requirement for Recruiter in B'lore for Corporate Healthcare co.",
'url': 'http://jobsearch.naukri.com/job-listings-Imm-Requirement-for-Recruiter-in-B-lore-for-Corporate-Healthcare-co--Lordi-Systems-Staffing-Solutions-Pvt-Ltd-Bengaluru-Bangalore-5-to-10-years-160715007511'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'SmartServe IT Enabled Services Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 40, 88276),
'description': [u'\t<ul>\n\t\t<li>Ability to demonstrate customer service skills</li>\n\t\t<li>Skill to conduct class room training and practical training</li>\n\t\t<li>*Monitor Calls/Emails and transactions as per the defined targets.</li>\n\t</ul>\n\n\t<p>customer support voice process exp non technical will be preferred. </p>\n\n\t<p>Salary: 2,00,000 &#8211; 3,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Training</p>\n\n\t<p>Role:Technical/Process Trainer</p>\n\n\t<p>Keyskills <br />\nprocess trainer Process Training voice process trainer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Require excellent communication skills <br />\nExperience in customer support Voice bfsi preferred</p>\n\n\t<p>Should be flexible to work in shifts/ rotational weekly off&#8217;s</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore', u'Hyderabad / Secunderabad'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 40, 88145),
'salary': u'2,00,000 - 3,00,000 P.A',
'skills': [u'Process Training'],
'title': u'Opening with MNC BPO for Process Trainer BFSI in Bangalore & Hyderabad',
'url': 'http://jobsearch.naukri.com/job-listings-Opening-with-MNC-BPO-for-Process-Trainer-BFSI-in-Bangalore-Hyderabad-SmartServe-IT-Enabled-Services-Pvt-Ltd--Bengaluru-Bangalore-Hyderabad-Secunderabad-3-to-6-years-160715007532'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:40 [scrapy] ERROR: Error processing {'company': u'SmartServe IT Enabled Services Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 40, 88276),
'description': [u'\t<ul>\n\t\t<li>Ability to demonstrate customer service skills</li>\n\t\t<li>Skill to conduct class room training and practical training</li>\n\t\t<li>*Monitor Calls/Emails and transactions as per the defined targets.</li>\n\t</ul>\n\n\t<p>customer support voice process exp non technical will be preferred. </p>\n\n\t<p>Salary: 2,00,000 &#8211; 3,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: <span class="caps">ITES</span> , <span class="caps">BPO</span> , <span class="caps">KPO</span> , <span class="caps">LPO</span> , Customer Service , Operations </p>\n\n\t<p>Role Category:Training</p>\n\n\t<p>Role:Technical/Process Trainer</p>\n\n\t<p>Keyskills <br />\nprocess trainer Process Training voice process trainer <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Require excellent communication skills <br />\nExperience in customer support Voice bfsi preferred</p>\n\n\t<p>Should be flexible to work in shifts/ rotational weekly off&#8217;s</p>'],
'exp': u'3 - 6 yrs',
'location': [u'Bengaluru/Bangalore', u'Hyderabad / Secunderabad'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 40, 88145),
'salary': u'2,00,000 - 3,00,000 P.A',
'skills': [u'Process Training'],
'title': u'Opening with MNC BPO for Process Trainer BFSI in Bangalore & Hyderabad',
'url': 'http://jobsearch.naukri.com/job-listings-Opening-with-MNC-BPO-for-Process-Trainer-BFSI-in-Bangalore-Hyderabad-SmartServe-IT-Enabled-Services-Pvt-Ltd--Bengaluru-Bangalore-Hyderabad-Secunderabad-3-to-6-years-160715007532'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Growel Softech Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 41, 108585),
'description': [u'\t<p><span class="caps">DWH</span> (Data Warehousing)</p>\n\n\t<p>Experience: </p>\n\n\t<p>1) Total Years of Exp : 6-10 Years</p>\n\n\t<p>2) Relevant Exp : 5-7 Years in <span class="caps">DWH</span></p>\n\n\t<p>Salary : 5 <span class="caps">LPA</span> to 15 <span class="caps">LPA</span></p>\n\n\t<p>Location : Banglore</p>\n\n\t<p>Notice Period: 10 Days</p>\n\n\t<p>***Note: Candidate should join within 10 Days</p>\n\n\t<p>Contact Details:</p>\n\n\t<p>Purva</p>\n\n\t<p>9503513294</p>\n\n\t<p>020-30213108</p>\n\n\t<p>Salary: 4,00,000 &#8211; 9,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nData Warehousing datawarehouse dwh data ware house <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'6 - 11 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 41, 108514),
'salary': u'4,00,000 - 9,00,000 P.A',
'skills': [u'Data Warehousing', u'datawarehouse', u'dwh'],
'title': u'Data Warehousing Consultant (only Immediate Joiner)',
'url': 'http://jobsearch.naukri.com/job-listings-Data-Warehousing-Consultant-only-Immediate-Joiner--Growel-Softech-Ltd-Bengaluru-Bangalore-6-to-11-years-160715007533'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:41 [scrapy] ERROR: Error processing {'company': u'Growel Softech Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 41, 108585),
'description': [u'\t<p><span class="caps">DWH</span> (Data Warehousing)</p>\n\n\t<p>Experience: </p>\n\n\t<p>1) Total Years of Exp : 6-10 Years</p>\n\n\t<p>2) Relevant Exp : 5-7 Years in <span class="caps">DWH</span></p>\n\n\t<p>Salary : 5 <span class="caps">LPA</span> to 15 <span class="caps">LPA</span></p>\n\n\t<p>Location : Banglore</p>\n\n\t<p>Notice Period: 10 Days</p>\n\n\t<p>***Note: Candidate should join within 10 Days</p>\n\n\t<p>Contact Details:</p>\n\n\t<p>Purva</p>\n\n\t<p>9503513294</p>\n\n\t<p>020-30213108</p>\n\n\t<p>Salary: 4,00,000 &#8211; 9,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nData Warehousing datawarehouse dwh data ware house <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'6 - 11 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 41, 108514),
'salary': u'4,00,000 - 9,00,000 P.A',
'skills': [u'Data Warehousing', u'datawarehouse', u'dwh'],
'title': u'Data Warehousing Consultant (only Immediate Joiner)',
'url': 'http://jobsearch.naukri.com/job-listings-Data-Warehousing-Consultant-only-Immediate-Joiner--Growel-Softech-Ltd-Bengaluru-Bangalore-6-to-11-years-160715007533'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'MphasiS Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 41, 163575),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>\xa0Hiring For International Voice Process in Mphasis</p><p> Job Description</p> <p> </p> <p> ******SKILLS REQUIRED******</p> <p> Should have excellent command over English.</p> <p> Confident while communicating</p> <p> Comfortable with Rotational Shifts</p> <p> </p> <p> ******BENEFITS******</p> <p> - Incentives</p> <p> - Free cab </p> <p> - Food Court</p> <p> - Excellent Growth Path</p> <p> - Medical facility</p> <p> </p> <p> ******ELIGIBILITY CRITERIA******</p> <p> 1) Should be above 18 years and below 50 years of age.</p> <p> 2) Should be comfortable working in Rotational Shifts.</p> <p> 3) Should have excellent communication skills.</p> <p> ******QUALIFICATION REQUIRED******</p> <p> 1) Any graduate</p> <p> 2) BTECH graduate can also apply</p> <p> Candidate can walkin to Mphasis </p> <p> Contact Person:-Sukhmeet</p> <p> Phone No.:-+9167505660</p> <p> Email ID:-sukhmeet.k@mphasis.com</p> <p> \tFunctional Area: Customer Service (International), Fresher (No Experience)</p> <p> \tIndustry: BPO / Call Center</p> <p> </p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tKeyskills: Fresher, International Voice Process, BPO and LPO and Customer Service / Operations, bpo and legal process outsourcing and customer service / operations, Inbound Calls Handling</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Hiring for International Voice in Mphasis',
'url': 'http://jobsearch.naukri.com/job-listings-Hiring-for-International-Voice-in-Mphasis-MphasiS-Limited-Bengaluru-Bangalore-0-to-5-years-150715008346'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:41 [scrapy] ERROR: Error processing {'company': u'MphasiS Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 41, 163575),
'description': [u'<html><body><div><div class="f14 lh18 alignJ disc-li"><p>\xa0Hiring For International Voice Process in Mphasis</p><p> Job Description</p> <p> </p> <p> ******SKILLS REQUIRED******</p> <p> Should have excellent command over English.</p> <p> Confident while communicating</p> <p> Comfortable with Rotational Shifts</p> <p> </p> <p> ******BENEFITS******</p> <p> - Incentives</p> <p> - Free cab </p> <p> - Food Court</p> <p> - Excellent Growth Path</p> <p> - Medical facility</p> <p> </p> <p> ******ELIGIBILITY CRITERIA******</p> <p> 1) Should be above 18 years and below 50 years of age.</p> <p> 2) Should be comfortable working in Rotational Shifts.</p> <p> 3) Should have excellent communication skills.</p> <p> ******QUALIFICATION REQUIRED******</p> <p> 1) Any graduate</p> <p> 2) BTECH graduate can also apply</p> <p> Candidate can walkin to Mphasis </p> <p> Contact Person:-Sukhmeet</p> <p> Phone No.:-+9167505660</p> <p> Email ID:-sukhmeet.k@mphasis.com</p> <p> \tFunctional Area: Customer Service (International), Fresher (No Experience)</p> <p> \tIndustry: BPO / Call Center</p> <p> </p> <p> </p> &#13;\n\t\t\t<p>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter</p><p>&#13;\n\t\t\tIndustry: BPO / Call Centre / ITES</p><p>&#13;\n\t\t\tFunctional Area: ITES, BPO, KPO, LPO, Customer Service, Operations</p><p>&#13;\n\t\t\tRole Category: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tRole: Associate/Senior Associate -(NonTechnical)</p><p>&#13;\n\t\t\tKeyskills: Fresher, International Voice Process, BPO and LPO and Customer Service / Operations, bpo and legal process outsourcing and customer service / operations, Inbound Calls Handling</p></div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Hiring for International Voice in Mphasis',
'url': 'http://jobsearch.naukri.com/job-listings-Hiring-for-International-Voice-in-Mphasis-MphasiS-Limited-Bengaluru-Bangalore-0-to-5-years-150715008346'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Very-Urgent-Opening-for-Principal-Engineer-PHE-Spectrum-Talent-Management-Bengaluru-Bangalore-11-to-18-years-160715007594> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Very-Urgent-Opening-for-Principal-Engineer-PHE-Spectrum-Talent-Management-Bengaluru-Bangalore-11-to-18-years-160715007594> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Associate-Software-Developer-MS-International-inc-Bengaluru-Bangalore-1-to-3-years-160715007595> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Associate-Software-Developer-MS-International-inc-Bengaluru-Bangalore-1-to-3-years-160715007595> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-SAP-EP-Consultant-Required-Immediate-Joiner-20-days-Alike-Thoughts-Infosystems-Bengaluru-Bangalore-Delhi-NCR-National-Capital-Region--4-to-8-years-160715007589> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-SAP-EP-Consultant-Required-Immediate-Joiner-20-days-Alike-Thoughts-Infosystems-Bengaluru-Bangalore-Delhi-NCR-National-Capital-Region--4-to-8-years-160715007589> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Oracle-10g-Report-Development-Trainer-K21-Technologies-Bengaluru-Bangalore-Mumbai-Chennai-Pune-Hyderabad-Secunderabad-United-Kingdom-U-K--3-to-8-years-160715007586> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Oracle-10g-Report-Development-Trainer-K21-Technologies-Bengaluru-Bangalore-Mumbai-Chennai-Pune-Hyderabad-Secunderabad-United-Kingdom-U-K--3-to-8-years-160715007586> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Job-Opening-for-Embedded-Semiconductor-Sr-recruiters-tl-Orcapod-Consulting-Services-Bengaluru-Bangalore-1-to-6-years-070715001368> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Job-Opening-for-Embedded-Semiconductor-Sr-recruiters-tl-Orcapod-Consulting-Services-Bengaluru-Bangalore-1-to-6-years-070715001368> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-for-city-Manager-Channel-Sales-PAN-India--Human-Capital-and-Tech-Solutions-Bengaluru-Bangalore-Mumbai-Pune-Delhi-Faridabad-Ghaziabad-Gurgaon-Noida-5-to-10-years-160715007610> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-for-city-Manager-Channel-Sales-PAN-India--Human-Capital-and-Tech-Solutions-Bengaluru-Bangalore-Mumbai-Pune-Delhi-Faridabad-Ghaziabad-Gurgaon-Noida-5-to-10-years-160715007610> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IT-Recruiter-direct-Contract-Happiest-Minds-Technologies-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007630> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IT-Recruiter-direct-Contract-Happiest-Minds-Technologies-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007630> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opportunity-Data-Analyst-1-4-Years-iit-nit-Mumbai-bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-Mumbai-1-to-4-years-170615004493> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
2015-07-16 20:06:41 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Opportunity-Data-Analyst-1-4-Years-iit-nit-Mumbai-bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-Mumbai-1-to-4-years-170615004493> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-3)
ERROR:scrapy.core.scraper:Error processing {'company': u'Live connections',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 42, 200816),
'description': [u'\t<p>Immediate opening for MicroStrategy Admin &#8211; Hyderabad/Bangalore<br />\nExp &#8211; 3-8 yrs<br />\nIf interested please send your updated resume to haripriya@livecjobs.com</p>\n\n\t<p>Regards<br />\nHaripriya </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nMicroStrategy Micro Strategy <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Hyderabad / Secunderabad', u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 42, 200742),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'MicroStrategy', u'Micro Strategy'],
'title': u'Microstrategy Admin - Bangalore / Hyderabad',
'url': 'http://jobsearch.naukri.com/job-listings-Microstrategy-Admin-Bangalore-Hyderabad-Live-connections-Hyderabad-Secunderabad-Bengaluru-Bangalore-3-to-8-years-160715007537'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:42 [scrapy] ERROR: Error processing {'company': u'Live connections',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 42, 200816),
'description': [u'\t<p>Immediate opening for MicroStrategy Admin &#8211; Hyderabad/Bangalore<br />\nExp &#8211; 3-8 yrs<br />\nIf interested please send your updated resume to haripriya@livecjobs.com</p>\n\n\t<p>Regards<br />\nHaripriya </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Team Lead/Technical Lead</p>\n\n\t<p>Keyskills <br />\nMicroStrategy Micro Strategy <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Hyderabad / Secunderabad', u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 42, 200742),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'MicroStrategy', u'Micro Strategy'],
'title': u'Microstrategy Admin - Bangalore / Hyderabad',
'url': 'http://jobsearch.naukri.com/job-listings-Microstrategy-Admin-Bangalore-Hyderabad-Live-connections-Hyderabad-Secunderabad-Bengaluru-Bangalore-3-to-8-years-160715007537'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Quinnox Consultancy Services',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 42, 923595),
'description': [u'\t<p>Hi,</p>\n\n\t<p>This is to inform you that we are looking for &#8220;Admin cum Front Desk&#8221; Executive for our organization,Quinnox IT consultancy Services which is a Cmmi Level 3 certified IT organization.Pls find the details:</p>\n\n\t<p>Role &#8211; Admin cum Front Desk<br />\nNature of Job &#8211; Contract of 1 year<br />\nCompany &#8211; Quinnox Consultancy Services<br />\n<span class="caps">URL</span> &#8211; www.quinnox.com<br />\nWorking days &#8211; Monday to Friday<br />\nWork timings &#8211; 9:30 am to 6 pm<br />\nOffice location : Hosur Road,Bommanalli,Bangalore<br />\nJob Role &#8211; </p>\n\n\t<p>This person will be responsible for take care of admin activities for our Bangalore office.This is involve first couple of months of streamlining the front Desk.Later this person will be absorbed in Admin activities.</p>\n\n\t<p>If interested,pls share your updated resume with the following details:</p>\n\n\t<p>Current <span class="caps">CTC</span><br />\nExpected <span class="caps">CTC</span><br />\nTotal Exp<br />\nNotice period<br />\nCurrent location<br />\nFine with 1 year contract </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:Administration/Facility Management</p>\n\n\t<p>Role:Executive/ Sr Executive &#8211; Administration</p>\n\n\t<p>Keyskills <br />\nadmin <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 42, 923522),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'admin'],
'title': u'Admin cum Front Desk Executive - Job Location - Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Admin-cum-Front-Desk-Executive-Job-Location-Bangalore-Quinnox-Consultancy-Services-Bengaluru-Bangalore-2-to-6-years-160715007551'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:42 [scrapy] ERROR: Error processing {'company': u'Quinnox Consultancy Services',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 42, 923595),
'description': [u'\t<p>Hi,</p>\n\n\t<p>This is to inform you that we are looking for &#8220;Admin cum Front Desk&#8221; Executive for our organization,Quinnox IT consultancy Services which is a Cmmi Level 3 certified IT organization.Pls find the details:</p>\n\n\t<p>Role &#8211; Admin cum Front Desk<br />\nNature of Job &#8211; Contract of 1 year<br />\nCompany &#8211; Quinnox Consultancy Services<br />\n<span class="caps">URL</span> &#8211; www.quinnox.com<br />\nWorking days &#8211; Monday to Friday<br />\nWork timings &#8211; 9:30 am to 6 pm<br />\nOffice location : Hosur Road,Bommanalli,Bangalore<br />\nJob Role &#8211; </p>\n\n\t<p>This person will be responsible for take care of admin activities for our Bangalore office.This is involve first couple of months of streamlining the front Desk.Later this person will be absorbed in Admin activities.</p>\n\n\t<p>If interested,pls share your updated resume with the following details:</p>\n\n\t<p>Current <span class="caps">CTC</span><br />\nExpected <span class="caps">CTC</span><br />\nTotal Exp<br />\nNotice period<br />\nCurrent location<br />\nFine with 1 year contract </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:Administration/Facility Management</p>\n\n\t<p>Role:Executive/ Sr Executive &#8211; Administration</p>\n\n\t<p>Keyskills <br />\nadmin <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 42, 923522),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'admin'],
'title': u'Admin cum Front Desk Executive - Job Location - Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Admin-cum-Front-Desk-Executive-Job-Location-Bangalore-Quinnox-Consultancy-Services-Bengaluru-Bangalore-2-to-6-years-160715007551'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Yellow Box HR Services Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 43, 864203),
'description': [u'\t<p><span class="caps">OPENING</span> <span class="caps">WITH</span> <span class="caps">LEADING</span> <span class="caps">MNC</span> for <span class="caps">KYC</span> <span class="caps">AML</span> (<span class="caps">INVESTMENT</span> <span class="caps">BANKING</span> <span class="caps">PROCESS</span>)<br />\nProcess- investment banking process (<span class="caps">KYC</span>/AML)<br />\n(Successful candidate needs to have strong investigative and research skills; the ability to work independently, the willingness to work cases across the various lines of business and is adaptable to change. In addition the candidate needs to demonstrate a banking and compliance knowledge in working <span class="caps">AML</span>/KYC/Onboarding related issues</p>\n\n\t<p>application tools like World Check, Accuity, Alacra, <span class="caps">RDC</span>, Lexis Nexis and external Web sites Google, Yahoo, Secretary of States, Company Registries etc.<br />\nExposure in handling <span class="caps">KYC</span> processes for Corporate &amp; Investment Banking clients and apply relevant country specific standards..)</p>\n\n\t<p><span class="caps">QUALIFICATION</span>- <span class="caps">BBA</span>, <span class="caps">BCOM</span>, <span class="caps">MBA</span><br />\nI <span class="caps">NTERVIEW</span> <span class="caps">LOCATION</span>: <span class="caps">HYDERABAD</span> (18 <span class="caps">JULY</span> &amp; 19 <span class="caps">JULY</span>) </p>\n\n\t<p>Saturday sunday.</p>\n\n\t<p>Candidates have to attend interview at hyderabad location.</p>\n\n\t<p>job location is banglore.</p>\n\n\t<p>candidates who can relocate to banglore can apply.<br />\nWork Location- Banglore </p>\n\n\t<p>Level- Sr. executive, Assistant manager, deputy manager</p>\n\n\t<p>Max <span class="caps">CTC</span>- Industry Hike </p>\n\n\t<p>Should be comfortable working in Rotational Shifts</p>\n\n\t<p>Investment Banking <span class="caps">KYC</span>, <span class="caps">AML</span> Exp is a Mandate </p>\n\n\t<p>Interview Location hyderabad on 18 &19 July -2015</p>\n\n\t<p>Notice Period : 30 Days only apply </p>\n\n\t<p>more details call saron</p>\n\n\t<p>09007028859</p>\n\n\t<p>Salary: 3,75,000 &#8211; 8,75,000 P.A. transport, allowances </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: Financial Services , Banking , Investments , Insurance </p>\n\n\t<p>Role Category:Financial Services/Stock Broking</p>\n\n\t<p>Role:Analyst</p>\n\n\t<p>Keyskills <br />\nInvestment Banking kyc <span class="caps">AML</span> Accuity Alacra <span class="caps">RDC</span> World check Lexis Nexis google <span class="caps">ACFCS</span> <span class="caps">ACFE</span> hyderabad <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, B.Com &#8211; Commerce, B.B.A &#8211; Management</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 43, 864141),
'salary': u'3,75,000 - 8,75,000 P.A. transport, allowances',
'skills': [u'AML'],
'title': u'Investment Banking Proces KYC/ AML -interview at Hyderabad',
'url': 'http://jobsearch.naukri.com/job-listings-Investment-Banking-Proces-KYC-AML-interview-at-Hyderabad-Yellow-Box-HR-Services-Pvt-Ltd--Bengaluru-Bangalore-2-to-7-years-160715007554'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:43 [scrapy] ERROR: Error processing {'company': u'Yellow Box HR Services Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 43, 864203),
'description': [u'\t<p><span class="caps">OPENING</span> <span class="caps">WITH</span> <span class="caps">LEADING</span> <span class="caps">MNC</span> for <span class="caps">KYC</span> <span class="caps">AML</span> (<span class="caps">INVESTMENT</span> <span class="caps">BANKING</span> <span class="caps">PROCESS</span>)<br />\nProcess- investment banking process (<span class="caps">KYC</span>/AML)<br />\n(Successful candidate needs to have strong investigative and research skills; the ability to work independently, the willingness to work cases across the various lines of business and is adaptable to change. In addition the candidate needs to demonstrate a banking and compliance knowledge in working <span class="caps">AML</span>/KYC/Onboarding related issues</p>\n\n\t<p>application tools like World Check, Accuity, Alacra, <span class="caps">RDC</span>, Lexis Nexis and external Web sites Google, Yahoo, Secretary of States, Company Registries etc.<br />\nExposure in handling <span class="caps">KYC</span> processes for Corporate &amp; Investment Banking clients and apply relevant country specific standards..)</p>\n\n\t<p><span class="caps">QUALIFICATION</span>- <span class="caps">BBA</span>, <span class="caps">BCOM</span>, <span class="caps">MBA</span><br />\nI <span class="caps">NTERVIEW</span> <span class="caps">LOCATION</span>: <span class="caps">HYDERABAD</span> (18 <span class="caps">JULY</span> &amp; 19 <span class="caps">JULY</span>) </p>\n\n\t<p>Saturday sunday.</p>\n\n\t<p>Candidates have to attend interview at hyderabad location.</p>\n\n\t<p>job location is banglore.</p>\n\n\t<p>candidates who can relocate to banglore can apply.<br />\nWork Location- Banglore </p>\n\n\t<p>Level- Sr. executive, Assistant manager, deputy manager</p>\n\n\t<p>Max <span class="caps">CTC</span>- Industry Hike </p>\n\n\t<p>Should be comfortable working in Rotational Shifts</p>\n\n\t<p>Investment Banking <span class="caps">KYC</span>, <span class="caps">AML</span> Exp is a Mandate </p>\n\n\t<p>Interview Location hyderabad on 18 &19 July -2015</p>\n\n\t<p>Notice Period : 30 Days only apply </p>\n\n\t<p>more details call saron</p>\n\n\t<p>09007028859</p>\n\n\t<p>Salary: 3,75,000 &#8211; 8,75,000 P.A. transport, allowances </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: Financial Services , Banking , Investments , Insurance </p>\n\n\t<p>Role Category:Financial Services/Stock Broking</p>\n\n\t<p>Role:Analyst</p>\n\n\t<p>Keyskills <br />\nInvestment Banking kyc <span class="caps">AML</span> Accuity Alacra <span class="caps">RDC</span> World check Lexis Nexis google <span class="caps">ACFCS</span> <span class="caps">ACFE</span> hyderabad <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, B.Com &#8211; Commerce, B.B.A &#8211; Management</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 43, 864141),
'salary': u'3,75,000 - 8,75,000 P.A. transport, allowances',
'skills': [u'AML'],
'title': u'Investment Banking Proces KYC/ AML -interview at Hyderabad',
'url': 'http://jobsearch.naukri.com/job-listings-Investment-Banking-Proces-KYC-AML-interview-at-Hyderabad-Yellow-Box-HR-Services-Pvt-Ltd--Bengaluru-Bangalore-2-to-7-years-160715007554'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'RSolutions',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 44, 752791),
'description': [u'\t<p>To acquire new corporate clients in the specified region / market<br />\nDevelop new business opportunities and close new account business<br />\nTo achieve the sales / revenue targets<br />\nCreating enthusiastic customer base by selling our leading products and services.<br />\nResearch the customer environment to be able to suggest right solutions<br />\nTo create/maintain excellent relationships with clients and be able to tailor products and pitch according to their specifications<br />\nEnsure timely collection of revenue from clients<br />\nTo map potential sectors<br />\nTo achieve target plan<br />\nDeveloping new ideas to achieve sales growth<br />\nInteract regularly with the clients to ensure a committed and partnership based relationship.<br />\nComply with Sales process and mechanism of the company to ensure Business Professionalism &amp; Integrity<br />\nAggressive to convert enquiry to order &amp; achieve targets<br />\nMust work at odd hours, suitable to clients time zones whenever required.<br />\nAbility to work in fast-paced sales environment with minimum supervision</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales Executive/Officer</p>\n\n\t<p>Keyskills <br />\nSales IT Sales Business Development Software Sales Direct Marketing Sales &amp; Marketing sales executive sales representative marketing executive marketing representative business development executive <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Incumbent<br />\nMust be Passionate towards sales<br />\nAggressive with good Negotiation<br />\nConvincing Communication and Presentation skills<br />\nAbility to accept challenges and achieve targets<br />\nGood in follow ups<br />\nMust be willing to travel<br />\nExperience with MS Office (Outlook, Excel, Word &amp; PowerPoint)<br />\nMust be familiar with companies in South and other parts of India</p>'],
'exp': u'1 - 3 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 44, 752650),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Sales',
u'Business Development',
u'Software Sales',
u'Direct Marketing',
u'Sales & Marketing',
u'sales executive',
u'sales representative',
u'marketing executive',
u'marketing representative',
u'business development executive'],
'title': u'IT Sales/ Sales Executive',
'url': 'http://jobsearch.naukri.com/job-listings-IT-Sales-Sales-Executive-RSolutions-Bengaluru-Bangalore-1-to-3-years-160715007563'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:44 [scrapy] ERROR: Error processing {'company': u'RSolutions',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 44, 752791),
'description': [u'\t<p>To acquire new corporate clients in the specified region / market<br />\nDevelop new business opportunities and close new account business<br />\nTo achieve the sales / revenue targets<br />\nCreating enthusiastic customer base by selling our leading products and services.<br />\nResearch the customer environment to be able to suggest right solutions<br />\nTo create/maintain excellent relationships with clients and be able to tailor products and pitch according to their specifications<br />\nEnsure timely collection of revenue from clients<br />\nTo map potential sectors<br />\nTo achieve target plan<br />\nDeveloping new ideas to achieve sales growth<br />\nInteract regularly with the clients to ensure a committed and partnership based relationship.<br />\nComply with Sales process and mechanism of the company to ensure Business Professionalism &amp; Integrity<br />\nAggressive to convert enquiry to order &amp; achieve targets<br />\nMust work at odd hours, suitable to clients time zones whenever required.<br />\nAbility to work in fast-paced sales environment with minimum supervision</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Sales Executive/Officer</p>\n\n\t<p>Keyskills <br />\nSales IT Sales Business Development Software Sales Direct Marketing Sales &amp; Marketing sales executive sales representative marketing executive marketing representative business development executive <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Incumbent<br />\nMust be Passionate towards sales<br />\nAggressive with good Negotiation<br />\nConvincing Communication and Presentation skills<br />\nAbility to accept challenges and achieve targets<br />\nGood in follow ups<br />\nMust be willing to travel<br />\nExperience with MS Office (Outlook, Excel, Word &amp; PowerPoint)<br />\nMust be familiar with companies in South and other parts of India</p>'],
'exp': u'1 - 3 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 44, 752650),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Sales',
u'Business Development',
u'Software Sales',
u'Direct Marketing',
u'Sales & Marketing',
u'sales executive',
u'sales representative',
u'marketing executive',
u'marketing representative',
u'business development executive'],
'title': u'IT Sales/ Sales Executive',
'url': 'http://jobsearch.naukri.com/job-listings-IT-Sales-Sales-Executive-RSolutions-Bengaluru-Bangalore-1-to-3-years-160715007563'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Burgeon It Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 46, 73451),
'description': [u'\t<p>Top 5MNC Company Hiring for Genesys <span class="caps">CME</span> (C2H) with 3-5 years experience.<br />\nStrong in <span class="caps">GVP</span>, Genesys <span class="caps">CME</span> Voice setup, Genesys outbound, Java, webservices<br />\n(Email-ID:aparna@burgeonits.com) </p>\n\n\t<p>Salary: 2,00,000 &#8211; 5,50,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; System Programming </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:System Analyst</p>\n\n\t<p>Keyskills <br />\nSubject Matter Expertise <span class="caps">SME</span> <span class="caps">GVP</span> Genesys <span class="caps">CME</span> Voice setup Genesys outbound Java webservices <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 46, 73379),
'salary': u'2,00,000 - 5,50,000 P.A',
'skills': [u'SME', u'Java', u'webservices'],
'title': u'Genesys CME for Bangalore Location.',
'url': 'http://jobsearch.naukri.com/job-listings-Genesys-CME-for-Bangalore-Location--Burgeon-It-Services-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007566'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:46 [scrapy] ERROR: Error processing {'company': u'Burgeon It Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 46, 73451),
'description': [u'\t<p>Top 5MNC Company Hiring for Genesys <span class="caps">CME</span> (C2H) with 3-5 years experience.<br />\nStrong in <span class="caps">GVP</span>, Genesys <span class="caps">CME</span> Voice setup, Genesys outbound, Java, webservices<br />\n(Email-ID:aparna@burgeonits.com) </p>\n\n\t<p>Salary: 2,00,000 &#8211; 5,50,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; System Programming </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:System Analyst</p>\n\n\t<p>Keyskills <br />\nSubject Matter Expertise <span class="caps">SME</span> <span class="caps">GVP</span> Genesys <span class="caps">CME</span> Voice setup Genesys outbound Java webservices <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 46, 73379),
'salary': u'2,00,000 - 5,50,000 P.A',
'skills': [u'SME', u'Java', u'webservices'],
'title': u'Genesys CME for Bangalore Location.',
'url': 'http://jobsearch.naukri.com/job-listings-Genesys-CME-for-Bangalore-Location--Burgeon-It-Services-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007566'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Careernet Technologies Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 47, 470896),
'description': [u'\t<p>Greetings for the day!</p>\n\n\t<p>This is Sona Jose from CareerNet Consulting.</p>\n\n\t<p>CareerNet (www.careernet.co.in) is the leading provider of Talent Acquisition and Management solutions to the Technology, Knowledge Services, Banking &amp; Financial Services, Hospitality &amp; Healthcare sectors in India.</p>\n\n\t<p>In further to this, we would like to discuss an opening with our client in Bangalore</p>\n\n\t<p>Position : Manager<br />\nExp : 5yrs &#8211; 8 yrs<br />\nLocation: Bangalore</p>\n\n\t<p>Skills: <span class="caps">SAS</span> + <span class="caps">SQL</span> + Digital Marketing,Web Analytics,Google Analytics, site catalyst,omniture + cards</p>\n\n\t<p>Educational Qualification: B.E/B.Tech from tier 1 institutes or M.A Economics/M.Sc/M.Tech/MBA</p>\n\n\t<p>Interested candidates can share their resumes with sona.jose@careernet.co.in</p>\n\n\t<p>Regards<br />\nSona Jose</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: Analytics &amp; Business Intelligence </p>\n\n\t<p>Role Category:Analytics &amp; BI</p>\n\n\t<p>Role:Analytics Manager</p>\n\n\t<p>Keyskills <br />\nDigital Analytics Web Analytics <span class="caps">SAS</span> omniture sitecatalyst Google Analytics Card credit card scorecard <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:MBA/PGDM &#8211; Any Specialization, M.Sc &#8211; Any Specialization, Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 47, 470826),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Web Analytics', u'SAS', u'omniture', u'credit card'],
'title': u'Manager: Digital Marketing, 5 -8 yrs, Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Manager-Digital-Marketing-5-8-yrs-Bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-8-years-160715007149'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:47 [scrapy] ERROR: Error processing {'company': u'Careernet Technologies Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 47, 470896),
'description': [u'\t<p>Greetings for the day!</p>\n\n\t<p>This is Sona Jose from CareerNet Consulting.</p>\n\n\t<p>CareerNet (www.careernet.co.in) is the leading provider of Talent Acquisition and Management solutions to the Technology, Knowledge Services, Banking &amp; Financial Services, Hospitality &amp; Healthcare sectors in India.</p>\n\n\t<p>In further to this, we would like to discuss an opening with our client in Bangalore</p>\n\n\t<p>Position : Manager<br />\nExp : 5yrs &#8211; 8 yrs<br />\nLocation: Bangalore</p>\n\n\t<p>Skills: <span class="caps">SAS</span> + <span class="caps">SQL</span> + Digital Marketing,Web Analytics,Google Analytics, site catalyst,omniture + cards</p>\n\n\t<p>Educational Qualification: B.E/B.Tech from tier 1 institutes or M.A Economics/M.Sc/M.Tech/MBA</p>\n\n\t<p>Interested candidates can share their resumes with sona.jose@careernet.co.in</p>\n\n\t<p>Regards<br />\nSona Jose</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: Analytics &amp; Business Intelligence </p>\n\n\t<p>Role Category:Analytics &amp; BI</p>\n\n\t<p>Role:Analytics Manager</p>\n\n\t<p>Keyskills <br />\nDigital Analytics Web Analytics <span class="caps">SAS</span> omniture sitecatalyst Google Analytics Card credit card scorecard <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:MBA/PGDM &#8211; Any Specialization, M.Sc &#8211; Any Specialization, Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 8 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 47, 470826),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Web Analytics', u'SAS', u'omniture', u'credit card'],
'title': u'Manager: Digital Marketing, 5 -8 yrs, Bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Manager-Digital-Marketing-5-8-yrs-Bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-8-years-160715007149'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'CBSI India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 47, 504660),
'description': [u'<html><body><div><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">Dear Job Seeker, <br/> Currently we have an excellent opportunity with one of our leading client MNC Company\xa0 and we are looking for the professional with the following skill sets. <br/> Skills: <br/> Business Rules, Service Catalog, Integrations, Client Script and Workflow, Incident Management.<br/> <br/> \tMinimum of 4+ years of relevant experience working with the ServiceNow Tool Development<br/> \tMust have a good understanding of the above tool<br/> \tMust have deployed, configured and worked with the API integration, exposure, <br/> \tShould have executed multiple projects involving the above tool<br/> \tA thorough understanding of the functional requirements, ability to integrate the tool with other tools for reporting purposes<br/> Hands on Exp into Servicenow Development.<br/> <br/> \xa0Exp:4-8\xa0 Yrs <br/> Work Location: Bangalore<br/> \xa0If you are interested for the above opportunity,please share your updated profile along with the following details.<br/> \xa0Total EXP: <br/> Relevant EXP: <br/> CCTC: <br/> ECTC: <br/> NP: <br/> <br/> <br/> <br/> Regards,<br/> \xa0Sindhu 080-40254325<br/> sindhujas@cbsiglobal.com<br/> <br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter<br/>&#13;\n\t\t\tIndustry: IT-Software / Software Services<br/>&#13;\n\t\t\tFunctional Area: IT Software - Application Programming, Maintenance<br/>&#13;\n\t\t\tRole Category: Software Developer<br/>&#13;\n\t\t\tRole: Software Developer<br/>&#13;\n\t\t\tKeyskills: service now, service now tool, servicenow</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, Graduation Not Required <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Excellent Opening for Service Now Tool with Leading MNC Company',
'url': 'http://jobsearch.naukri.com/job-listings-Excellent-Opening-for-Service-Now-Tool-with-Leading-MNC-Company-CBSI-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-8-years-160715007559'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:47 [scrapy] ERROR: Error processing {'company': u'CBSI India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 47, 504660),
'description': [u'<html><body><div><div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30 ">Job Description</p>&#13;\n\t\t\t<p class="f14 lh18 alignJ disc-li">Dear Job Seeker, <br/> Currently we have an excellent opportunity with one of our leading client MNC Company\xa0 and we are looking for the professional with the following skill sets. <br/> Skills: <br/> Business Rules, Service Catalog, Integrations, Client Script and Workflow, Incident Management.<br/> <br/> \tMinimum of 4+ years of relevant experience working with the ServiceNow Tool Development<br/> \tMust have a good understanding of the above tool<br/> \tMust have deployed, configured and worked with the API integration, exposure, <br/> \tShould have executed multiple projects involving the above tool<br/> \tA thorough understanding of the functional requirements, ability to integrate the tool with other tools for reporting purposes<br/> Hands on Exp into Servicenow Development.<br/> <br/> \xa0Exp:4-8\xa0 Yrs <br/> Work Location: Bangalore<br/> \xa0If you are interested for the above opportunity,please share your updated profile along with the following details.<br/> \xa0Total EXP: <br/> Relevant EXP: <br/> CCTC: <br/> ECTC: <br/> NP: <br/> <br/> <br/> <br/> Regards,<br/> \xa0Sindhu 080-40254325<br/> sindhujas@cbsiglobal.com<br/> <br/>&#13;\n\t\t\t<br/>&#13;\n\t\t\tSalary: Not Disclosed by Recruiter<br/>&#13;\n\t\t\tIndustry: IT-Software / Software Services<br/>&#13;\n\t\t\tFunctional Area: IT Software - Application Programming, Maintenance<br/>&#13;\n\t\t\tRole Category: Software Developer<br/>&#13;\n\t\t\tRole: Software Developer<br/>&#13;\n\t\t\tKeyskills: service now, service now tool, servicenow</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t<div class="ptb20 hLine">&#13;\n\t\t\t<p class="cTitle f16 lh30">Desired Profile</p>&#13;\n\t\t\t<p class="f14 lh18 disc-li"><br/>Education:UG -Any Graduate - Any Specialization, Graduation Not Required <br/> PG - Any Postgraduate - Any Specialization, Post Graduation Not Required <br/> Doctorate - Any Doctorate - Any Specialization, Doctorate Not Required&#13;\n\t\t\t</p>&#13;\n\t\t\t</div>&#13;\n\t\t\t</div></body></html>'],
'location': [u'Bengaluru/Bangalore'],
'title': u'Excellent Opening for Service Now Tool with Leading MNC Company',
'url': 'http://jobsearch.naukri.com/job-listings-Excellent-Opening-for-Service-Now-Tool-with-Leading-MNC-Company-CBSI-India-Pvt-Ltd--Bengaluru-Bangalore-4-to-8-years-160715007559'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Orcapod Consulting Services',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 48, 328346),
'description': [u'\t<p>JD is as below</p>\n\n\t<ul>\n\t\t<li>Making cold calls to the into specific markets</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Generate new leads and set appointments for the Business Development Managers, within defined territory, for specific lines of business, through telemarketing</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Works closely with Business Development Managers to qualify prospects, coordinate meetings, and drive new opportunities</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Clearly and effectively communicates Orcapods services to prospects</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Strives to meet or exceed prospecting goals on daily, weekly, monthly and quarterly basis</li>\n\t</ul>\n\n\t<p>Qualifications and Experience</p>\n\n\t<ul>\n\t\t<li>Minimum 2+ years&#8217; experience into Inside Sales / Lead Generation.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Experience in selling into Indian markets</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Good phone and email communication skills.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Ability to talk to Managers and <span class="caps">CXO</span> level executives.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Self-Motivated, Quick Learner with interest in technology solution sales.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Strong customer service and teamwork skills.</li>\n\t</ul>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Recruitment / Staffing </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Executive</p>\n\n\t<p>Keyskills <br />\nsales Indise Sales Business Development bd lead generation inside sales cold calling leads <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 4 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 48, 328237),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'sales',
u'Business Development',
u'bd',
u'lead generation',
u'cold calling'],
'title': u'Urgent Job Opening for Inside Sales',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Job-Opening-for-Inside-Sales-Orcapod-Consulting-Services-Bengaluru-Bangalore-2-to-4-years-100715003512'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:48 [scrapy] ERROR: Error processing {'company': u'Orcapod Consulting Services',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 48, 328346),
'description': [u'\t<p>JD is as below</p>\n\n\t<ul>\n\t\t<li>Making cold calls to the into specific markets</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Generate new leads and set appointments for the Business Development Managers, within defined territory, for specific lines of business, through telemarketing</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Works closely with Business Development Managers to qualify prospects, coordinate meetings, and drive new opportunities</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Clearly and effectively communicates Orcapods services to prospects</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Strives to meet or exceed prospecting goals on daily, weekly, monthly and quarterly basis</li>\n\t</ul>\n\n\t<p>Qualifications and Experience</p>\n\n\t<ul>\n\t\t<li>Minimum 2+ years&#8217; experience into Inside Sales / Lead Generation.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Experience in selling into Indian markets</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Good phone and email communication skills.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Ability to talk to Managers and <span class="caps">CXO</span> level executives.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Self-Motivated, Quick Learner with interest in technology solution sales.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Strong customer service and teamwork skills.</li>\n\t</ul>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Recruitment / Staffing </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Executive</p>\n\n\t<p>Keyskills <br />\nsales Indise Sales Business Development bd lead generation inside sales cold calling leads <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 4 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 48, 328237),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'sales',
u'Business Development',
u'bd',
u'lead generation',
u'cold calling'],
'title': u'Urgent Job Opening for Inside Sales',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Job-Opening-for-Inside-Sales-Orcapod-Consulting-Services-Bengaluru-Bangalore-2-to-4-years-100715003512'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Spectrum Talent Management',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 50, 112356),
'description': [u'\t<p>We have urgent opening for Principal Engineer &#8211; <span class="caps">PHE</span><br />\nLocation- Bangalore </p>\n\n\t<p>Exp- 11-18 Years </p>\n\n\t<p>of experience in high rise buildings/shopping malls/hotels.<br />\nExperience in internal/external water supply, sewerage and drainage (storm water and surface water) systems for buildings (including high rise) like commercial/residential buildings, shopping malls, hotels.<br />\nAlso design of infrastructure water supply, sewerage, drainage and irrigation networks for small developments.<br />\nFamiliarity with relevant design standards like BS, <span class="caps">CIBSE</span> ,etc.,<br />\nCapable of reviewing and preparing technical specification documents.</p>\n\n\t<p>interested candidates please mail me your resume a</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Oil and Gas / Energy / Power / Infrastructure </p>\n\n\t<p>Functional Area: Engineering Design , R&D </p>\n\n\t<p>Role Category:Engineering Design</p>\n\n\t<p>Role:Design Engineer</p>\n\n\t<p>Keyskills <br />\nPublic Health Environment <span class="caps">PHE</span> Plumbing Residential Building <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Civil, Mechanical</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'11 - 18 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 50, 112290),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Plumbing'],
'title': u'Very Urgent Opening for Principal Engineer - PHE',
'url': 'http://jobsearch.naukri.com/job-listings-Very-Urgent-Opening-for-Principal-Engineer-PHE-Spectrum-Talent-Management-Bengaluru-Bangalore-11-to-18-years-160715007594'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:50 [scrapy] ERROR: Error processing {'company': u'Spectrum Talent Management',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 50, 112356),
'description': [u'\t<p>We have urgent opening for Principal Engineer &#8211; <span class="caps">PHE</span><br />\nLocation- Bangalore </p>\n\n\t<p>Exp- 11-18 Years </p>\n\n\t<p>of experience in high rise buildings/shopping malls/hotels.<br />\nExperience in internal/external water supply, sewerage and drainage (storm water and surface water) systems for buildings (including high rise) like commercial/residential buildings, shopping malls, hotels.<br />\nAlso design of infrastructure water supply, sewerage, drainage and irrigation networks for small developments.<br />\nFamiliarity with relevant design standards like BS, <span class="caps">CIBSE</span> ,etc.,<br />\nCapable of reviewing and preparing technical specification documents.</p>\n\n\t<p>interested candidates please mail me your resume a</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Oil and Gas / Energy / Power / Infrastructure </p>\n\n\t<p>Functional Area: Engineering Design , R&D </p>\n\n\t<p>Role Category:Engineering Design</p>\n\n\t<p>Role:Design Engineer</p>\n\n\t<p>Keyskills <br />\nPublic Health Environment <span class="caps">PHE</span> Plumbing Residential Building <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Civil, Mechanical</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'11 - 18 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 50, 112290),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Plumbing'],
'title': u'Very Urgent Opening for Principal Engineer - PHE',
'url': 'http://jobsearch.naukri.com/job-listings-Very-Urgent-Opening-for-Principal-Engineer-PHE-Spectrum-Talent-Management-Bengaluru-Bangalore-11-to-18-years-160715007594'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'MS International inc',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 51, 648133),
'description': [u'\t<p><span class="caps">MSI</span> Services Pvt. Ltd. is currently hiring suitable candidates for the role &#8211; Software Developer within our business operations in Bangalore, India. </p>\n\n\t<p>Software Developer :-</p>\n\n\t<p>1. Good knowledge of Dot <span class="caps">NET</span> framework 2.0 ,3.5</p>\n\n\t<p>2. Knowledge of C# in <span class="caps">ASP</span>.NET, <span class="caps">SQL</span> Server 2005, <span class="caps">AJAX</span> is required. Crystal Reports, Java Script will be a plus</p>\n\n\t<p>Desired Candidate Profile :-</p>\n\n\t<p>1. Minimum one year of experience in related field</p>\n\n\t<p>2. Should be a self-starter and willing to work in flexible timings</p>\n\n\t<p>3. Should have basic understanding of common business practices</p>\n\n\t<p>4. Should have good command over English language</p>\n\n\t<p>5. Willing to work in team environment and adaptable</p>\n\n\t<p>6. Deserving candidates might be shortlisted for travel to the US office for further training and projects.</p>\n\n\t<p>Salary: 2,00,000 &#8211; 4,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nAsp .Net c# sql server <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 3 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 51, 648022),
'salary': u'2,00,000 - 4,00,000 P.A',
'skills': [u'Asp .Net', u'c#', u'sql server'],
'title': u'Associate Software Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Associate-Software-Developer-MS-International-inc-Bengaluru-Bangalore-1-to-3-years-160715007595'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:51 [scrapy] ERROR: Error processing {'company': u'MS International inc',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 51, 648133),
'description': [u'\t<p><span class="caps">MSI</span> Services Pvt. Ltd. is currently hiring suitable candidates for the role &#8211; Software Developer within our business operations in Bangalore, India. </p>\n\n\t<p>Software Developer :-</p>\n\n\t<p>1. Good knowledge of Dot <span class="caps">NET</span> framework 2.0 ,3.5</p>\n\n\t<p>2. Knowledge of C# in <span class="caps">ASP</span>.NET, <span class="caps">SQL</span> Server 2005, <span class="caps">AJAX</span> is required. Crystal Reports, Java Script will be a plus</p>\n\n\t<p>Desired Candidate Profile :-</p>\n\n\t<p>1. Minimum one year of experience in related field</p>\n\n\t<p>2. Should be a self-starter and willing to work in flexible timings</p>\n\n\t<p>3. Should have basic understanding of common business practices</p>\n\n\t<p>4. Should have good command over English language</p>\n\n\t<p>5. Willing to work in team environment and adaptable</p>\n\n\t<p>6. Deserving candidates might be shortlisted for travel to the US office for further training and projects.</p>\n\n\t<p>Salary: 2,00,000 &#8211; 4,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">BPO</span> / Call Centre / <span class="caps">ITES</span> </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nAsp .Net c# sql server <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 3 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 51, 648022),
'salary': u'2,00,000 - 4,00,000 P.A',
'skills': [u'Asp .Net', u'c#', u'sql server'],
'title': u'Associate Software Developer',
'url': 'http://jobsearch.naukri.com/job-listings-Associate-Software-Developer-MS-International-inc-Bengaluru-Bangalore-1-to-3-years-160715007595'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Alike Thoughts Infosystems',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 53, 344296),
'description': [u'\t<p>Should have min 3 years of Relevant Experience in <span class="caps">SAP</span> EP<br />\nShould have done at least 1 Implementation</p>\n\n\t<p>Looking for Person who can join Immediately / 20 Days.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:System Analyst</p>\n\n\t<p>Keyskills <br />\n<span class="caps">SAP</span> EP sap enterprise portal <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 8 yrs',
'location': [u'Bengaluru/Bangalore', u'Delhi/NCR(National Capital Region)'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 53, 344226),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'SAP EP', u'sap enterprise portal'],
'title': u'SAP EP Consultant - Required Immediate Joiner / 20 days',
'url': 'http://jobsearch.naukri.com/job-listings-SAP-EP-Consultant-Required-Immediate-Joiner-20-days-Alike-Thoughts-Infosystems-Bengaluru-Bangalore-Delhi-NCR-National-Capital-Region--4-to-8-years-160715007589'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:53 [scrapy] ERROR: Error processing {'company': u'Alike Thoughts Infosystems',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 53, 344296),
'description': [u'\t<p>Should have min 3 years of Relevant Experience in <span class="caps">SAP</span> EP<br />\nShould have done at least 1 Implementation</p>\n\n\t<p>Looking for Person who can join Immediately / 20 Days.</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:System Analyst</p>\n\n\t<p>Keyskills <br />\n<span class="caps">SAP</span> EP sap enterprise portal <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 8 yrs',
'location': [u'Bengaluru/Bangalore', u'Delhi/NCR(National Capital Region)'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 53, 344226),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'SAP EP', u'sap enterprise portal'],
'title': u'SAP EP Consultant - Required Immediate Joiner / 20 days',
'url': 'http://jobsearch.naukri.com/job-listings-SAP-EP-Consultant-Required-Immediate-Joiner-20-days-Alike-Thoughts-Infosystems-Bengaluru-Bangalore-Delhi-NCR-National-Capital-Region--4-to-8-years-160715007589'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'K21 Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 54, 393169),
'description': [u'\t<p>Urgently Require a Oracle 10g Report Development Trainer will following skills:<br />\nShould have good communication skills Only Experienced Trainers will be welcomed. <br />\nInterested can share their resume on jobs@k21technologies.com with email subject: Oracle 10g Trainer. </p>\n\n\t<p>Interested can also feel free to contact on +91-8447349237 between 1PM-10PM <span class="caps">IST</span>.</p>\n\n\t<p>Contact Person: Saurabh Agrawal </p>\n\n\t<p>Salary: More than industry standards </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Other</p>\n\n\t<p>Role:Trainer/Faculty</p>\n\n\t<p>Keyskills <br />\nTraining Oracle 10G Communication Skills <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Bengaluru/Bangalore',
u'Mumbai',
u'Chennai',
u'Pune',
u'Hyderabad / Secunderabad',
u'United Kingdom (U.K)'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 54, 393094),
'salary': u'More than industry standards',
'skills': [u'Training', u'Oracle 10G'],
'title': u'Oracle 10g Report Development Trainer',
'url': 'http://jobsearch.naukri.com/job-listings-Oracle-10g-Report-Development-Trainer-K21-Technologies-Bengaluru-Bangalore-Mumbai-Chennai-Pune-Hyderabad-Secunderabad-United-Kingdom-U-K--3-to-8-years-160715007586'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:54 [scrapy] ERROR: Error processing {'company': u'K21 Technologies',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 54, 393169),
'description': [u'\t<p>Urgently Require a Oracle 10g Report Development Trainer will following skills:<br />\nShould have good communication skills Only Experienced Trainers will be welcomed. <br />\nInterested can share their resume on jobs@k21technologies.com with email subject: Oracle 10g Trainer. </p>\n\n\t<p>Interested can also feel free to contact on +91-8447349237 between 1PM-10PM <span class="caps">IST</span>.</p>\n\n\t<p>Contact Person: Saurabh Agrawal </p>\n\n\t<p>Salary: More than industry standards </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Other</p>\n\n\t<p>Role:Trainer/Faculty</p>\n\n\t<p>Keyskills <br />\nTraining Oracle 10G Communication Skills <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Bengaluru/Bangalore',
u'Mumbai',
u'Chennai',
u'Pune',
u'Hyderabad / Secunderabad',
u'United Kingdom (U.K)'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 54, 393094),
'salary': u'More than industry standards',
'skills': [u'Training', u'Oracle 10G'],
'title': u'Oracle 10g Report Development Trainer',
'url': 'http://jobsearch.naukri.com/job-listings-Oracle-10g-Report-Development-Trainer-K21-Technologies-Bengaluru-Bangalore-Mumbai-Chennai-Pune-Hyderabad-Secunderabad-United-Kingdom-U-K--3-to-8-years-160715007586'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Orcapod Consulting Services',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 55, 524099),
'description': [u'\t<p>Position: Embedded/ Semiconductor TL /TM</p>\n\n\t<p>Location: <span class="caps">WFH</span>/Bangalore</p>\n\n\t<p>Job Description:</p>\n\n\t<p>Candidate must have experience in following areas </p>\n\n\t<p>1- Must Have Experience in Semiconductor/ Embedded Domain. (Worked for client like Intel, Broadcomm, Tata Elxsi, Rambus, <span class="caps">NXP</span> Semicon)</p>\n\n\t<p>2- Strong hands on experience in technical recruitment.</p>\n\n\t<p>3- Should be experienced with unconventional recruitment methods beyond job portals. </p>\n\n\t<p>4- Strong technical understanding to screen candidates on various technical roles.</p>\n\n\t<p>5- Hands on experience of client handling and communication</p>\n\n\t<p>6- Good team management skills </p>\n\n\t<p>7- Should have been a part of competitive team environments and willing to work with complete ownership.</p>\n\n\t<p>8- Hands on with various reports and <span class="caps">MIS</span></p>\n\n\t<p>Other skills &#8211; </p>\n\n\t<p>1- Very good communication skills</p>\n\n\t<p>2- Self motivated and positive thinker</p>\n\n\t<p>3- Go getter attitude and a good leader</p>\n\n\t<p>4- Good industry understanding and can contribute to the growth of the team</p>\n\n\t<p>Candidate Profile:</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Recruitment / Staffing </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Executive</p>\n\n\t<p>Keyskills <br />\nTechnical Recruitment Recruitment and Staffing End To End Recruitment Recruitment Recruiter it recruiter technical recruiter staffing hr recruitment <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 55, 523999),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Technical Recruitment',
u'Recruitment',
u'Recruiter',
u'it recruiter',
u'technical recruiter',
u'staffing'],
'title': u'Urgent Job Opening for Embedded/ Semiconductor- Sr.recruiters/tl',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Job-Opening-for-Embedded-Semiconductor-Sr-recruiters-tl-Orcapod-Consulting-Services-Bengaluru-Bangalore-1-to-6-years-070715001368'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:55 [scrapy] ERROR: Error processing {'company': u'Orcapod Consulting Services',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 55, 524099),
'description': [u'\t<p>Position: Embedded/ Semiconductor TL /TM</p>\n\n\t<p>Location: <span class="caps">WFH</span>/Bangalore</p>\n\n\t<p>Job Description:</p>\n\n\t<p>Candidate must have experience in following areas </p>\n\n\t<p>1- Must Have Experience in Semiconductor/ Embedded Domain. (Worked for client like Intel, Broadcomm, Tata Elxsi, Rambus, <span class="caps">NXP</span> Semicon)</p>\n\n\t<p>2- Strong hands on experience in technical recruitment.</p>\n\n\t<p>3- Should be experienced with unconventional recruitment methods beyond job portals. </p>\n\n\t<p>4- Strong technical understanding to screen candidates on various technical roles.</p>\n\n\t<p>5- Hands on experience of client handling and communication</p>\n\n\t<p>6- Good team management skills </p>\n\n\t<p>7- Should have been a part of competitive team environments and willing to work with complete ownership.</p>\n\n\t<p>8- Hands on with various reports and <span class="caps">MIS</span></p>\n\n\t<p>Other skills &#8211; </p>\n\n\t<p>1- Very good communication skills</p>\n\n\t<p>2- Self motivated and positive thinker</p>\n\n\t<p>3- Go getter attitude and a good leader</p>\n\n\t<p>4- Good industry understanding and can contribute to the growth of the team</p>\n\n\t<p>Candidate Profile:</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Recruitment / Staffing </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Executive</p>\n\n\t<p>Keyskills <br />\nTechnical Recruitment Recruitment and Staffing End To End Recruitment Recruitment Recruiter it recruiter technical recruiter staffing hr recruitment <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 55, 523999),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Technical Recruitment',
u'Recruitment',
u'Recruiter',
u'it recruiter',
u'technical recruiter',
u'staffing'],
'title': u'Urgent Job Opening for Embedded/ Semiconductor- Sr.recruiters/tl',
'url': 'http://jobsearch.naukri.com/job-listings-Urgent-Job-Opening-for-Embedded-Semiconductor-Sr-recruiters-tl-Orcapod-Consulting-Services-Bengaluru-Bangalore-1-to-6-years-070715001368'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Human Capital and Tech Solutions',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 56, 561521),
'description': [u'\t<p>We are recruiting top-notch city managers to be part of a massive go-to-market exercise with our real-estate technology product. <br />\nKey Responsibility: Recruiting, training, and supervising field sales staff to ensure that they achieve their goals. </p>\n\n\t<p>Salary: 4,50,000 &#8211; 9,50,000 P.A </p>\n\n\t<p>Industry: Real Estate / Property </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Area Sales Manager</p>\n\n\t<p>Keyskills <br />\nChannel Sales Field Sales Recruitment Area Sales Manager Sales Manager Business Development Sr. Manager Sales gm sales <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore',
u'Mumbai',
u'Pune',
u'Delhi',
u'Faridabad',
u'Ghaziabad',
u'Gurgaon',
u'Noida'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 56, 561440),
'salary': u'4,50,000 - 9,50,000 P.A',
'skills': [u'Channel Sales',
u'Field Sales',
u'Recruitment',
u'Area Sales Manager',
u'Sales Manager',
u'Business Development'],
'title': u'Job for "city Manager- Channel Sales" PAN India.',
'url': 'http://jobsearch.naukri.com/job-listings-Job-for-city-Manager-Channel-Sales-PAN-India--Human-Capital-and-Tech-Solutions-Bengaluru-Bangalore-Mumbai-Pune-Delhi-Faridabad-Ghaziabad-Gurgaon-Noida-5-to-10-years-160715007610'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:56 [scrapy] ERROR: Error processing {'company': u'Human Capital and Tech Solutions',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 56, 561521),
'description': [u'\t<p>We are recruiting top-notch city managers to be part of a massive go-to-market exercise with our real-estate technology product. <br />\nKey Responsibility: Recruiting, training, and supervising field sales staff to ensure that they achieve their goals. </p>\n\n\t<p>Salary: 4,50,000 &#8211; 9,50,000 P.A </p>\n\n\t<p>Industry: Real Estate / Property </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Area Sales Manager</p>\n\n\t<p>Keyskills <br />\nChannel Sales Field Sales Recruitment Area Sales Manager Sales Manager Business Development Sr. Manager Sales gm sales <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore',
u'Mumbai',
u'Pune',
u'Delhi',
u'Faridabad',
u'Ghaziabad',
u'Gurgaon',
u'Noida'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 56, 561440),
'salary': u'4,50,000 - 9,50,000 P.A',
'skills': [u'Channel Sales',
u'Field Sales',
u'Recruitment',
u'Area Sales Manager',
u'Sales Manager',
u'Business Development'],
'title': u'Job for "city Manager- Channel Sales" PAN India.',
'url': 'http://jobsearch.naukri.com/job-listings-Job-for-city-Manager-Channel-Sales-PAN-India--Human-Capital-and-Tech-Solutions-Bengaluru-Bangalore-Mumbai-Pune-Delhi-Faridabad-Ghaziabad-Gurgaon-Noida-5-to-10-years-160715007610'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 57, 500722),
'description': [u'\t<p>Job Description:<br />\nLocating potential candidates, screening them to verify their qualifications, experience, skills, and background, and presenting qualified candidates to hiring managers for their consideration.<br />\nScheduling and coordination of interviews between the hiring manager and the candidate obtaining feedback as quickly as possible<br />\nEstablishing a pipeline of qualified candidates from various sources<br />\nFollow up with applicants till on boarding<br />\nGood verbal and written communication skills required<br />\nVendor Management</p>\n\n\t<p>If your profile matches the requirement and explore carrier opportunities with Happiest Minds, Please send across your updated resume along with the below details (mandatory) to reddemma.p.n@happiestminds.com.<br />\nTotal Exp:<br />\nRelevant Exp in IT Recruitment:<br />\nCurrent <span class="caps">CTC</span>:<br />\nExpected <span class="caps">CTC</span>:<br />\nNotice Period:<br />\nOpen for Direct Contact (Yes/No):<br />\nCurrent Location in bangalore:</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Executive</p>\n\n\t<p>Keyskills <br />\nIT Recruitment Vendor Management End To End Recruitment HR Recruiter IT Recruiter <span class="caps">ITR</span>ecruiter Talent Acquisition <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 57, 500657),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'IT Recruitment',
u'Vendor Management',
u'IT Recruiter',
u'Talent Acquisition'],
'title': u'IT Recruiter (direct Contract) - Happiest Minds Technologies',
'url': 'http://jobsearch.naukri.com/job-listings-IT-Recruiter-direct-Contract-Happiest-Minds-Technologies-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007630'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:57 [scrapy] ERROR: Error processing {'company': u'Happiest Minds Technologies Pvt.Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 57, 500722),
'description': [u'\t<p>Job Description:<br />\nLocating potential candidates, screening them to verify their qualifications, experience, skills, and background, and presenting qualified candidates to hiring managers for their consideration.<br />\nScheduling and coordination of interviews between the hiring manager and the candidate obtaining feedback as quickly as possible<br />\nEstablishing a pipeline of qualified candidates from various sources<br />\nFollow up with applicants till on boarding<br />\nGood verbal and written communication skills required<br />\nVendor Management</p>\n\n\t<p>If your profile matches the requirement and explore carrier opportunities with Happiest Minds, Please send across your updated resume along with the below details (mandatory) to reddemma.p.n@happiestminds.com.<br />\nTotal Exp:<br />\nRelevant Exp in IT Recruitment:<br />\nCurrent <span class="caps">CTC</span>:<br />\nExpected <span class="caps">CTC</span>:<br />\nNotice Period:<br />\nOpen for Direct Contact (Yes/No):<br />\nCurrent Location in bangalore:</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: HR , Recruitment , Administration , IR </p>\n\n\t<p>Role Category:HR/ Recruitment / IR</p>\n\n\t<p>Role:Recruitment Executive</p>\n\n\t<p>Keyskills <br />\nIT Recruitment Vendor Management End To End Recruitment HR Recruiter IT Recruiter <span class="caps">ITR</span>ecruiter Talent Acquisition <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 5 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 57, 500657),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'IT Recruitment',
u'Vendor Management',
u'IT Recruiter',
u'Talent Acquisition'],
'title': u'IT Recruiter (direct Contract) - Happiest Minds Technologies',
'url': 'http://jobsearch.naukri.com/job-listings-IT-Recruiter-direct-Contract-Happiest-Minds-Technologies-Happiest-Minds-Technologies-Pvt-Ltd-Bengaluru-Bangalore-3-to-5-years-160715007630'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Careernet Technologies Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 58, 452653),
'description': [u'\t<p>Job Description:</p>\n\n\t<p>Position : Analyst<br />\nDomain: Data Analytics in <span class="caps">BFSI</span>/ E Commerce/ Marketing/ Retail/ Pharma Domain<br />\nExp : 1 &#8211; 4 yrs<br />\nLocation: Mumbai/Bangalore<br />\nClient: Multiple clients.</p>\n\n\t<p>Educational qualifications:<br />\nB.Tech/ B.E/ <span class="caps">MCA</span>/ Msc/ <span class="caps">MBA</span>/ MTech/ <span class="caps">PGDM</span></p>\n\n\t<p>Job Description<br />\nExperience working in Data Analytics in <span class="caps">BFSI</span>/ E Commerce/ Marketing/ Retail/ Pharma Domain.<br />\nPreferred to have exposure working in Data Analysis using <span class="caps">SAS</span>,VBA,SQL,Excel.<br />\nStong Knowledge on Reporting,Preparing reports,Dashboards, Report automation.</p>\n\n\t<p>Tools Used: <span class="caps">SAS</span>, <span class="caps">VBA</span>, R, <span class="caps">SQL</span>, Excel.</p>\n\n\t<p>If Interested Please share your updated resume at immanuel.bratley@careernet.co.in<br />\nRegards,<br />\nImmanuel Bratley<br />\n08066560733<br />\nCareerNet</p>\n\n\t<p>Salary: 4,00,000 &#8211; 9,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">KPO</span> / Research / Analytics </p>\n\n\t<p>Functional Area: Analytics &amp; Business Intelligence </p>\n\n\t<p>Role Category:Analytics &amp; BI</p>\n\n\t<p>Role:Business Analyst</p>\n\n\t<p>Keyskills <br />\n<span class="caps">SQL</span> Excel Data Analytics Retail <span class="caps">SAS</span> Data Analysis <span class="caps">VBA</span> Report Preparation report automation BI Dashboard Report Analytics <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, B.Tech/B.E. &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization, M.Tech &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers, M.Sc &#8211; Any Specialization, M.A &#8211; Any Specialization, M.S/M.D &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 4 yrs',
'location': [u'Bengaluru/Bangalore', u'Mumbai'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 58, 452576),
'salary': u'4,00,000 - 9,00,000 P.A',
'skills': [u'SQL', u'Excel', u'Retail', u'SAS', u'Data Analysis', u'VBA'],
'title': u'Opportunity - Data Analyst - 1-4 Years - (iit/nit) - Mumbai/bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Opportunity-Data-Analyst-1-4-Years-iit-nit-Mumbai-bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-Mumbai-1-to-4-years-170615004493'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:06:58 [scrapy] ERROR: Error processing {'company': u'Careernet Technologies Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 6, 58, 452653),
'description': [u'\t<p>Job Description:</p>\n\n\t<p>Position : Analyst<br />\nDomain: Data Analytics in <span class="caps">BFSI</span>/ E Commerce/ Marketing/ Retail/ Pharma Domain<br />\nExp : 1 &#8211; 4 yrs<br />\nLocation: Mumbai/Bangalore<br />\nClient: Multiple clients.</p>\n\n\t<p>Educational qualifications:<br />\nB.Tech/ B.E/ <span class="caps">MCA</span>/ Msc/ <span class="caps">MBA</span>/ MTech/ <span class="caps">PGDM</span></p>\n\n\t<p>Job Description<br />\nExperience working in Data Analytics in <span class="caps">BFSI</span>/ E Commerce/ Marketing/ Retail/ Pharma Domain.<br />\nPreferred to have exposure working in Data Analysis using <span class="caps">SAS</span>,VBA,SQL,Excel.<br />\nStong Knowledge on Reporting,Preparing reports,Dashboards, Report automation.</p>\n\n\t<p>Tools Used: <span class="caps">SAS</span>, <span class="caps">VBA</span>, R, <span class="caps">SQL</span>, Excel.</p>\n\n\t<p>If Interested Please share your updated resume at immanuel.bratley@careernet.co.in<br />\nRegards,<br />\nImmanuel Bratley<br />\n08066560733<br />\nCareerNet</p>\n\n\t<p>Salary: 4,00,000 &#8211; 9,00,000 P.A </p>\n\n\t<p>Industry: <span class="caps">KPO</span> / Research / Analytics </p>\n\n\t<p>Functional Area: Analytics &amp; Business Intelligence </p>\n\n\t<p>Role Category:Analytics &amp; BI</p>\n\n\t<p>Role:Business Analyst</p>\n\n\t<p>Keyskills <br />\n<span class="caps">SQL</span> Excel Data Analytics Retail <span class="caps">SAS</span> Data Analysis <span class="caps">VBA</span> Report Preparation report automation BI Dashboard Report Analytics <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, B.Tech/B.E. &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization, M.Tech &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers, M.Sc &#8211; Any Specialization, M.A &#8211; Any Specialization, M.S/M.D &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'1 - 4 yrs',
'location': [u'Bengaluru/Bangalore', u'Mumbai'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 6, 58, 452576),
'salary': u'4,00,000 - 9,00,000 P.A',
'skills': [u'SQL', u'Excel', u'Retail', u'SAS', u'Data Analysis', u'VBA'],
'title': u'Opportunity - Data Analyst - 1-4 Years - (iit/nit) - Mumbai/bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Opportunity-Data-Analyst-1-4-Years-iit-nit-Mumbai-bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-Mumbai-1-to-4-years-170615004493'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Scrum-Master-Siemens-Limited-Bengaluru-Bangalore-7-to-10-years-290615900698> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Scrum-Master-Siemens-Limited-Bengaluru-Bangalore-7-to-10-years-290615900698> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Hiring-Big-Data-Professionals-3-7-Years-Tavant-Technologies-India-Pvt-Ltd--Bengaluru-Bangalore-3-to-7-years-290615004500> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Hiring-Big-Data-Professionals-3-7-Years-Tavant-Technologies-India-Pvt-Ltd--Bengaluru-Bangalore-3-to-7-years-290615004500> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Devops-Engineer-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-5-to-10-years-160715007256> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Devops-Engineer-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-5-to-10-years-160715007256> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Area-Sales-Manager-for-FAAC-Entrance-Automation-Products-Neptune-India-Ltd--Mumbai-Bengaluru-Bangalore-Gujarat--3-to-8-years-160715900826> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Area-Sales-Manager-for-FAAC-Entrance-Automation-Products-Neptune-India-Ltd--Mumbai-Bengaluru-Bangalore-Gujarat--3-to-8-years-160715900826> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Lead-marketing-Communications-itinfrastructure-Services-iim-xim-spjain-Ascent-iQ-staffing-business-solution-Bengaluru-Bangalore-3-to-7-years-160715900859> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Lead-marketing-Communications-itinfrastructure-Services-iim-xim-spjain-Ascent-iQ-staffing-business-solution-Bengaluru-Bangalore-3-to-7-years-160715900859> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-UI-Developer-Javascript-Developer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-4-to-9-years-160715900851> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-UI-Developer-Javascript-Developer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-4-to-9-years-160715900851> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IP-Router-switch-Developer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-5-to-10-years-160715900824> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-IP-Router-switch-Developer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-5-to-10-years-160715900824> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Java-Engineer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-5-to-10-years-160715900855> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:06:58 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Java-Engineer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-5-to-10-years-160715900855> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
ERROR:scrapy.core.scraper:Error processing {'company': u'Siemens Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 0, 125834),
'description': [u'\t<p>Job Description: As a Scrum Master (Java) the person is responsible for delivering high-quality software, on-time and within budget by motivating and guiding the scrum team with agile/lean principles and practices:</p>\n\n\t<p>What are my responsibilities? </p>\n\n\t<p>Co-ordinate with Analyst for Product backlog management, concept grooming and continuous delivery of features. Co-ordinate with Architects for Architecture backlog management, prototypes and technical grooming. Effectively guide and facilitate the sprint ceremonies to consistently achieve the sprint goals (Sprint planning, reviews, retrospective, demo, daily stand-ups, and stakeholder meetings). Protect scrum team from outside distractions, impediments or team conflicts, and maintain focus on product backlog and project timeline. Work/collaborate/communicate effectively with internal and external stakeholders (E.g. <span class="caps">SOS</span> to resolve dependencies, QA, RA, Integration, Test, xBU forums) Regularly monitor and control the metrics to meet project/product goals. (E.g. sprint/release burn down, velocity, defects, etc.) Guide the team with Agile/Lean principles and practices (E.g. thin slicing, Reduce waste, <span class="caps">VSM</span>) to deliver value frequently and regularly to the customers. Coaching, mentoring, and fostering the culture of transparency, continual improvement, and self organizing within the team. Build trust &amp; create positive environment by empowerment, facilitating discussions, decision making and conflict resolution with emphasis on problem solving. Identify and control project risks by means of prevention, mitigation and contingencies. Support PM for project management activities (E.g. Reporting, Metrics collection) Ensure that sprint deliverables are adhering to the Quality and regulatory guidelines </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nAgile Project Management Scrum Master Velocity RA Java Mitigation Quality Lean Testing <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Biomedical, Computers</p>\n\n\t<p>PG:M.Tech &#8211; Biomedical, Computers, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>What do I need to qualify for this job?</p>\n\n\t<p>B.E/ B. Tech/ <span class="caps">MCA</span>/ M. Tech (Computer Science, Medical Imaging, Biomedical Engineering).<br />\nWhat else do I need to know?</p>\n\n\t<p>Knowledge and Experience</p>\n\n\t<p>Around 7-10 years of industry experience, with at least one year of experience in the Scrum Master role diligently applying agile/lean principles, practices and techniques to deliver value to the end customers. Experience in software design and development (Java, Swing, C++ <span class="caps">OOPS</span>, Design principles &amp; patterns, OS concepts, Data structures, unit testing frameworks etc.) Experience in requirements engineering. Experience in Project management tools and techniques. (E.g. Excel, <span class="caps">TFS</span> for backlog management, <span class="caps">WBS</span>, Estimation techniques, <span class="caps">RCA</span> tools&#8230;) Ability to effectively manage Risks, communications and stakeholders. End-customer orientated with ability to recommend alternative technical and business approaches, and lead the team to meet aggressive timelines with optimal solutions. Able to work across multiple project teams to resolve dependencies/ ambiguous situations. Exposure to Gradle, Git, Artifactory is preferred Strong knowledge of software engineering lifecycle and <span class="caps">PLM</span> processes. Expertise of medical imaging domain and clinical workflow knowledge. Excellent interpersonal and leadership skills. Excellent communication skills. Good analytical, problem solving and decision making skills. Should be Enthusiastic, Approachable, self-motivated and result oriented. Able to work across multiple sites in multiple time zones</p>'],
'exp': u'7 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 0, 125762),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Agile',
u'Project Management',
u'Scrum Master',
u'RA',
u'Java',
u'Testing'],
'title': u'Scrum Master',
'url': 'http://jobsearch.naukri.com/job-listings-Scrum-Master-Siemens-Limited-Bengaluru-Bangalore-7-to-10-years-290615900698'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:00 [scrapy] ERROR: Error processing {'company': u'Siemens Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 0, 125834),
'description': [u'\t<p>Job Description: As a Scrum Master (Java) the person is responsible for delivering high-quality software, on-time and within budget by motivating and guiding the scrum team with agile/lean principles and practices:</p>\n\n\t<p>What are my responsibilities? </p>\n\n\t<p>Co-ordinate with Analyst for Product backlog management, concept grooming and continuous delivery of features. Co-ordinate with Architects for Architecture backlog management, prototypes and technical grooming. Effectively guide and facilitate the sprint ceremonies to consistently achieve the sprint goals (Sprint planning, reviews, retrospective, demo, daily stand-ups, and stakeholder meetings). Protect scrum team from outside distractions, impediments or team conflicts, and maintain focus on product backlog and project timeline. Work/collaborate/communicate effectively with internal and external stakeholders (E.g. <span class="caps">SOS</span> to resolve dependencies, QA, RA, Integration, Test, xBU forums) Regularly monitor and control the metrics to meet project/product goals. (E.g. sprint/release burn down, velocity, defects, etc.) Guide the team with Agile/Lean principles and practices (E.g. thin slicing, Reduce waste, <span class="caps">VSM</span>) to deliver value frequently and regularly to the customers. Coaching, mentoring, and fostering the culture of transparency, continual improvement, and self organizing within the team. Build trust &amp; create positive environment by empowerment, facilitating discussions, decision making and conflict resolution with emphasis on problem solving. Identify and control project risks by means of prevention, mitigation and contingencies. Support PM for project management activities (E.g. Reporting, Metrics collection) Ensure that sprint deliverables are adhering to the Quality and regulatory guidelines </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nAgile Project Management Scrum Master Velocity RA Java Mitigation Quality Lean Testing <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Biomedical, Computers</p>\n\n\t<p>PG:M.Tech &#8211; Biomedical, Computers, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>What do I need to qualify for this job?</p>\n\n\t<p>B.E/ B. Tech/ <span class="caps">MCA</span>/ M. Tech (Computer Science, Medical Imaging, Biomedical Engineering).<br />\nWhat else do I need to know?</p>\n\n\t<p>Knowledge and Experience</p>\n\n\t<p>Around 7-10 years of industry experience, with at least one year of experience in the Scrum Master role diligently applying agile/lean principles, practices and techniques to deliver value to the end customers. Experience in software design and development (Java, Swing, C++ <span class="caps">OOPS</span>, Design principles &amp; patterns, OS concepts, Data structures, unit testing frameworks etc.) Experience in requirements engineering. Experience in Project management tools and techniques. (E.g. Excel, <span class="caps">TFS</span> for backlog management, <span class="caps">WBS</span>, Estimation techniques, <span class="caps">RCA</span> tools&#8230;) Ability to effectively manage Risks, communications and stakeholders. End-customer orientated with ability to recommend alternative technical and business approaches, and lead the team to meet aggressive timelines with optimal solutions. Able to work across multiple project teams to resolve dependencies/ ambiguous situations. Exposure to Gradle, Git, Artifactory is preferred Strong knowledge of software engineering lifecycle and <span class="caps">PLM</span> processes. Expertise of medical imaging domain and clinical workflow knowledge. Excellent interpersonal and leadership skills. Excellent communication skills. Good analytical, problem solving and decision making skills. Should be Enthusiastic, Approachable, self-motivated and result oriented. Able to work across multiple sites in multiple time zones</p>'],
'exp': u'7 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 0, 125762),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Agile',
u'Project Management',
u'Scrum Master',
u'RA',
u'Java',
u'Testing'],
'title': u'Scrum Master',
'url': 'http://jobsearch.naukri.com/job-listings-Scrum-Master-Siemens-Limited-Bengaluru-Bangalore-7-to-10-years-290615900698'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Great-Job-Opportunity-for-Android-Developer--Choice-Group-Bengaluru-Bangalore-2-to-7-years-160715002759> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:00 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Great-Job-Opportunity-for-Android-Developer--Choice-Group-Bengaluru-Bangalore-2-to-7-years-160715002759> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Collections-Manager-Assets-bangalore-HDFC-Bank-Limited-Bengaluru-Bangalore-2-to-7-years-160715007168> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:00 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Collections-Manager-Assets-bangalore-HDFC-Bank-Limited-Bengaluru-Bangalore-2-to-7-years-160715007168> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Opportunity-for-Head-Marketing-BASE-Educational-Services-Pvt-Ltd-Bengaluru-Bangalore-10-to-15-years-160715007278> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:00 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Opportunity-for-Head-Marketing-BASE-Educational-Services-Pvt-Ltd-Bengaluru-Bangalore-10-to-15-years-160715007278> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Opening-for-net-MVC-Bengaluru-C2H-15-Days-Notice-only-US-Tech-Solutions-Pvt-Ltd-Bengaluru-Bangalore-4-to-6-years-160715007277> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:00 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Job-Opening-for-net-MVC-Bengaluru-C2H-15-Days-Notice-only-US-Tech-Solutions-Pvt-Ltd-Bengaluru-Bangalore-4-to-6-years-160715007277> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Walk-in-Infosys-bpo-Hiring-for-Employee-Helpdesk-voice-for-Bangalore-Infosys-BPO-Ltd-Bengaluru-Bangalore-2-to-5-years-160715007283> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:00 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Walk-in-Infosys-bpo-Hiring-for-Employee-Helpdesk-voice-for-Bangalore-Infosys-BPO-Ltd-Bengaluru-Bangalore-2-to-5-years-160715007283> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Engineer-Embedded-Software-CAN--Jasmin-Infotech-Pvt-Ltd--Bengaluru-Bangalore-Chennai-2-to-6-years-090514005088> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:00 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Senior-Engineer-Embedded-Software-CAN--Jasmin-Infotech-Pvt-Ltd--Bengaluru-Bangalore-Chennai-2-to-6-years-090514005088> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Sr-Software-Engineer-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-8-to-12-years-160715007357> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:00 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Sr-Software-Engineer-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-8-to-12-years-160715007357> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Software-Engineer-Arcadix-Infotech-Private-Limited-Bengaluru-Bangalore-2-to-3-years-160715007352> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:00 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Software-Engineer-Arcadix-Infotech-Private-Limited-Bengaluru-Bangalore-2-to-3-years-160715007352> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
ERROR:scrapy.core.scraper:Error processing {'company': u'Tavant Technologies India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 1, 169212),
'description': [u'\t<p>Title: Software Engineer/Sr. Software Engineer/Technical Lead<br />\nLocation: Bangalore</p>\n\n\t<p>*Hands-on experience with the Hadoop stack (Map Reduce Programming Paradigm, HBase, Pig, Hive, Sqoop) \n*Experience with key-value store technologies such as Cassandra and documents based storages like Mongo DB would be a plus\n*Hands-on experience with some level of administration, configuration management, monitoring, debugging, benchmarking and performance tuning of Hadoop/Cassandra\n*Hands-on experience with open source software platforms and languages (e.g. Java, Linux, Apache, Perl/Python/PHP)\n*Previous experience with <span class="caps">RDBMS</span>, <span class="caps">SQL</span>, database performance tuning, high scale application handling is highly desirable\n*Hands-on writing Map Reduce Job and scheduling and monitoring Map Reduce jobs\n*Understanding of data warehousing and business intelligence technologies\n*Experience with architecture and design of analytics platforms\n*Experience in <span class="caps">AWS</span> is a plus\n*Excellent problem solving and analytical skills</p>\n\n\t<p>Regards,<br />\nSuhani Sharma</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nmapreduce pig hive java sql <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization</p>\n\n\t<p>PG:M.Tech &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 1, 169147),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'java', u'sql'],
'title': u'Hiring Big Data Professionals 3 - 7 Years',
'url': 'http://jobsearch.naukri.com/job-listings-Hiring-Big-Data-Professionals-3-7-Years-Tavant-Technologies-India-Pvt-Ltd--Bengaluru-Bangalore-3-to-7-years-290615004500'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:01 [scrapy] ERROR: Error processing {'company': u'Tavant Technologies India Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 1, 169212),
'description': [u'\t<p>Title: Software Engineer/Sr. Software Engineer/Technical Lead<br />\nLocation: Bangalore</p>\n\n\t<p>*Hands-on experience with the Hadoop stack (Map Reduce Programming Paradigm, HBase, Pig, Hive, Sqoop) \n*Experience with key-value store technologies such as Cassandra and documents based storages like Mongo DB would be a plus\n*Hands-on experience with some level of administration, configuration management, monitoring, debugging, benchmarking and performance tuning of Hadoop/Cassandra\n*Hands-on experience with open source software platforms and languages (e.g. Java, Linux, Apache, Perl/Python/PHP)\n*Previous experience with <span class="caps">RDBMS</span>, <span class="caps">SQL</span>, database performance tuning, high scale application handling is highly desirable\n*Hands-on writing Map Reduce Job and scheduling and monitoring Map Reduce jobs\n*Understanding of data warehousing and business intelligence technologies\n*Experience with architecture and design of analytics platforms\n*Experience in <span class="caps">AWS</span> is a plus\n*Excellent problem solving and analytical skills</p>\n\n\t<p>Regards,<br />\nSuhani Sharma</p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nmapreduce pig hive java sql <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization</p>\n\n\t<p>PG:M.Tech &#8211; Any Specialization, <span class="caps">MCA</span> &#8211; Computers</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'3 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 1, 169147),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'java', u'sql'],
'title': u'Hiring Big Data Professionals 3 - 7 Years',
'url': 'http://jobsearch.naukri.com/job-listings-Hiring-Big-Data-Professionals-3-7-Years-Tavant-Technologies-India-Pvt-Ltd--Bengaluru-Bangalore-3-to-7-years-290615004500'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Joule Consulting Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 2, 194437),
'description': [u'\t<p>Computer Engineering or Computer Science specialist with DevOps Engineering practice experience and a proven knack for creating Software Configuration Management and Product Deployment tools that improve engineering team member efficiencies. The successful candidate should be skilled with administrating source code repositories, working with Linux and writing in various scripting languages. Experience working with a make environment is essential. An understanding of the C/C++ and Java environments is necessary. Ability to design and develop select web, <span class="caps">SQL</span>, and <span class="caps">API</span> tools and applications for <span class="caps">SCM</span> and potentially for select Program Management tools is necessary. Familiarity in <span class="caps">XML</span> code and use case practices is preferred. Product work on Customer User interfaces is anticipated. DevOps Engineering practice experience is essential. <br />\nDuties:<br />\nAbility to work in a global DevOps team and fulfill high quality SW design and coding responsibilities of a mid-level development engineer.<br />\nAbility to design and build new engineering/software tools or fix problems with existing slow or inefficient tools.<br />\nCandidate will be given the flexibility to be creative in the context of updating existing product designs or tools and creating new tools and data mining routines as well as enhancing or fixing issues with product user interface capabilities. The successful candidate will implement SW feature branching and build strategies. Additionally, the candidate should be willing and capable of installations, upgrades, and administration of various Engineering tools such as Fault Management systems, Static Analysis, and Test Management systems. The candidate must be willing to apply the learned tool skills to Product development activities and design duties.<br />\nQualifications:<br />\nB.S. in <span class="caps">CSC</span> or <span class="caps">CPE</span> with 5 years minimum DevOps/SCM with 1-2 years overlapping or additional years SW development related experience.<br />\nKnowledge of Software tools and product development essential.<br />\nBasic to advanced proficiency of SW configuration practices essential.<br />\nJava, C/C++, <span class="caps">PHP</span>, Linux and scripts (examples: sh/bash/python/perl) essential.<br />\nMake, Maven, Ant build methods desirable.<br />\nApache, JavaScript, <span class="caps">AJAX</span>, <span class="caps">JSON</span> desirable.<br />\nExposure to Jira, Klocwork, and Jenkins continuous integration plus <span class="caps">GIT</span> and <span class="caps">SVN</span> tools desirable.<br />\nAbility to support VM creations and or Cloud administrations such as OpenStack or <span class="caps">AWS</span> desirable. </p>\n\n\t<p>Salary: 5,00,000 &#8211; 15,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJava C c ++ <span class="caps">PHP</span> Linux scripts <span class="caps">JSON</span> <span class="caps">AJAX</span> JavaScript Maven <span class="caps">SVN</span> <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 2, 194360),
'salary': u'5,00,000 - 15,00,000 P.A',
'skills': [u'Java',
u'C',
u'c ++',
u'PHP',
u'Linux',
u'AJAX',
u'JavaScript',
u'Maven',
u'SVN'],
'title': u'Devops Engineer',
'url': 'http://jobsearch.naukri.com/job-listings-Devops-Engineer-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-5-to-10-years-160715007256'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:02 [scrapy] ERROR: Error processing {'company': u'Joule Consulting Pvt. Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 2, 194437),
'description': [u'\t<p>Computer Engineering or Computer Science specialist with DevOps Engineering practice experience and a proven knack for creating Software Configuration Management and Product Deployment tools that improve engineering team member efficiencies. The successful candidate should be skilled with administrating source code repositories, working with Linux and writing in various scripting languages. Experience working with a make environment is essential. An understanding of the C/C++ and Java environments is necessary. Ability to design and develop select web, <span class="caps">SQL</span>, and <span class="caps">API</span> tools and applications for <span class="caps">SCM</span> and potentially for select Program Management tools is necessary. Familiarity in <span class="caps">XML</span> code and use case practices is preferred. Product work on Customer User interfaces is anticipated. DevOps Engineering practice experience is essential. <br />\nDuties:<br />\nAbility to work in a global DevOps team and fulfill high quality SW design and coding responsibilities of a mid-level development engineer.<br />\nAbility to design and build new engineering/software tools or fix problems with existing slow or inefficient tools.<br />\nCandidate will be given the flexibility to be creative in the context of updating existing product designs or tools and creating new tools and data mining routines as well as enhancing or fixing issues with product user interface capabilities. The successful candidate will implement SW feature branching and build strategies. Additionally, the candidate should be willing and capable of installations, upgrades, and administration of various Engineering tools such as Fault Management systems, Static Analysis, and Test Management systems. The candidate must be willing to apply the learned tool skills to Product development activities and design duties.<br />\nQualifications:<br />\nB.S. in <span class="caps">CSC</span> or <span class="caps">CPE</span> with 5 years minimum DevOps/SCM with 1-2 years overlapping or additional years SW development related experience.<br />\nKnowledge of Software tools and product development essential.<br />\nBasic to advanced proficiency of SW configuration practices essential.<br />\nJava, C/C++, <span class="caps">PHP</span>, Linux and scripts (examples: sh/bash/python/perl) essential.<br />\nMake, Maven, Ant build methods desirable.<br />\nApache, JavaScript, <span class="caps">AJAX</span>, <span class="caps">JSON</span> desirable.<br />\nExposure to Jira, Klocwork, and Jenkins continuous integration plus <span class="caps">GIT</span> and <span class="caps">SVN</span> tools desirable.<br />\nAbility to support VM creations and or Cloud administrations such as OpenStack or <span class="caps">AWS</span> desirable. </p>\n\n\t<p>Salary: 5,00,000 &#8211; 15,00,000 P.A </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJava C c ++ <span class="caps">PHP</span> Linux scripts <span class="caps">JSON</span> <span class="caps">AJAX</span> JavaScript Maven <span class="caps">SVN</span> <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 2, 194360),
'salary': u'5,00,000 - 15,00,000 P.A',
'skills': [u'Java',
u'C',
u'c ++',
u'PHP',
u'Linux',
u'AJAX',
u'JavaScript',
u'Maven',
u'SVN'],
'title': u'Devops Engineer',
'url': 'http://jobsearch.naukri.com/job-listings-Devops-Engineer-Joule-Consulting-Pvt-Ltd--Bengaluru-Bangalore-5-to-10-years-160715007256'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Neptune India Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 2, 913406),
'description': [u'\t<p>Can handle the projects as well as meeting with the architects, builders, consultants civil/electrical contractors ,system integrators ,security system dealers, glass traders and gate manufacturers. Generation of enquiries and converting them in to order Can handle techno-commercial discussions, finalisatiion of orders Target based selling Channel / business partner development and management Managing and motivating Business Partners Regular follow up with the Government / Semi Government / Private Sectors. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Office Equipment / Automation </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Area Sales Manager</p>\n\n\t<p>Keyskills <br />\nSales Area Sales Business Development Area Sales Management selling <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization</p>\n\n\t<p>PG:MBA/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Desired profile of the candidate<br />\nPerson with experience and willing to take up the challenge to make a career in a Dynamic growth oriented organizations.<br />\nGood leadership with decision making capabilities, high integrity and hard working.</p>\n\n\t<p>Desired Work Experience &#8211; 3 &#8211; 10 years.</p>\n\n\t<p>Desired Qualification &#8211; Engineering/Management Graduates.<br />\nApplicants who have experience in the Security/Construction Industry, working with Consultants, Architects, Builders, Projects, Institutional Sales etc is preferred.</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Mumbai', u'Bengaluru/Bangalore', u'Gujarat'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 2, 913330),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Sales', u'Area Sales', u'Business Development'],
'title': u'Area Sales Manager for FAAC Entrance Automation Products',
'url': 'http://jobsearch.naukri.com/job-listings-Area-Sales-Manager-for-FAAC-Entrance-Automation-Products-Neptune-India-Ltd--Mumbai-Bengaluru-Bangalore-Gujarat--3-to-8-years-160715900826'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:02 [scrapy] ERROR: Error processing {'company': u'Neptune India Ltd.',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 2, 913406),
'description': [u'\t<p>Can handle the projects as well as meeting with the architects, builders, consultants civil/electrical contractors ,system integrators ,security system dealers, glass traders and gate manufacturers. Generation of enquiries and converting them in to order Can handle techno-commercial discussions, finalisatiion of orders Target based selling Channel / business partner development and management Managing and motivating Business Partners Regular follow up with the Government / Semi Government / Private Sectors. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Office Equipment / Automation </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Retail Sales</p>\n\n\t<p>Role:Area Sales Manager</p>\n\n\t<p>Keyskills <br />\nSales Area Sales Business Development Area Sales Management selling <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Any Specialization</p>\n\n\t<p>PG:MBA/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Desired profile of the candidate<br />\nPerson with experience and willing to take up the challenge to make a career in a Dynamic growth oriented organizations.<br />\nGood leadership with decision making capabilities, high integrity and hard working.</p>\n\n\t<p>Desired Work Experience &#8211; 3 &#8211; 10 years.</p>\n\n\t<p>Desired Qualification &#8211; Engineering/Management Graduates.<br />\nApplicants who have experience in the Security/Construction Industry, working with Consultants, Architects, Builders, Projects, Institutional Sales etc is preferred.</p>'],
'exp': u'3 - 8 yrs',
'location': [u'Mumbai', u'Bengaluru/Bangalore', u'Gujarat'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 2, 913330),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Sales', u'Area Sales', u'Business Development'],
'title': u'Area Sales Manager for FAAC Entrance Automation Products',
'url': 'http://jobsearch.naukri.com/job-listings-Area-Sales-Manager-for-FAAC-Entrance-Automation-Products-Neptune-India-Ltd--Mumbai-Bengaluru-Bangalore-Gujarat--3-to-8-years-160715900826'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Ascent iQ staffing business solution',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 3, 897191),
'description': [u'\t<p>Job description:</p>\n\n\t<p>- Responsible for executing a comprehensive marketing strategy for Organization to increase awareness and adoption of <span class="caps">KGS</span> service lines within member firms.</p>\n\n\t<p>- Work with the Organization leadership team to develop and implement a B2B marketing strategy that supports the goals and ambitions of both Organization and Organization&#8217;s member firms.</p>\n\n\t<p>- Collaborate with service area leaders to execute integrated marketing programs with a goal to deepen target/influencer relationships and enhance Organization&#8217;s visibility and adoption in Organization member firms.</p>\n\n\t<p>- Create and maintain marketing collateral and manage the content strategy for the Organization&#8217;s portal. Develop leadership presentations for global conferences, Organization&#8217;s strategy sessions and other internal or external events.</p>\n\n\t<p>- Work with the Organization&#8217;s country <span class="caps">COO</span>s to support marketing initiatives in specific countries. Develop <span class="caps">CEO</span> communications directed towards Organization&#8217;s leadership and other stakeholders including the employees.</p>\n\n\t<p>- Develop and maintain an overall marketing budget to ensure programs are implemented cost effectively and achieve desired goals of building relationships and growing the business.</p>\n\n\t<p>- Work with creative agencies or internal teams to ensure marketing programs / deliverables are executed as per plan.</p>\n\n\t<p>- Lead key outputs of the program against agreed timelines and deliverables requested by functional leaders from HR, IT, Business Continuity and <span class="caps">CSR</span>.</p>\n\n\t<p>Job Location : Bangalore </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Marketing , Advertising , MR , PR , Media Planning </p>\n\n\t<p>Role Category:Marketing</p>\n\n\t<p>Role:Marketing Manager</p>\n\n\t<p>Keyskills <br />\nB2B Marketing Marketing Budget Integrated Marketing Marketing Strategy Marketing Programs Content Strategy Marketing Communications <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:MBA/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Lead &#8211; Marketing communication</p>\n\n\t<p>- Full time <span class="caps">MBA</span> from <span class="caps">IIM</span>/ Jamnalal Bajaj/SP Jain/ <span class="caps">XIMB</span> passed only between 20008 -2012 batches.</p>\n\n\t<p>- At-least 3 years relevant experience marketing communications functions in an IT company would be preferred.</p>'],
'exp': u'3 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 3, 897090),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'B2B Marketing', u'Marketing Strategy'],
'title': u'Lead-marketing Communications-itinfrastructure Services-iim/xim/spjain',
'url': 'http://jobsearch.naukri.com/job-listings-Lead-marketing-Communications-itinfrastructure-Services-iim-xim-spjain-Ascent-iQ-staffing-business-solution-Bengaluru-Bangalore-3-to-7-years-160715900859'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:03 [scrapy] ERROR: Error processing {'company': u'Ascent iQ staffing business solution',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 3, 897191),
'description': [u'\t<p>Job description:</p>\n\n\t<p>- Responsible for executing a comprehensive marketing strategy for Organization to increase awareness and adoption of <span class="caps">KGS</span> service lines within member firms.</p>\n\n\t<p>- Work with the Organization leadership team to develop and implement a B2B marketing strategy that supports the goals and ambitions of both Organization and Organization&#8217;s member firms.</p>\n\n\t<p>- Collaborate with service area leaders to execute integrated marketing programs with a goal to deepen target/influencer relationships and enhance Organization&#8217;s visibility and adoption in Organization member firms.</p>\n\n\t<p>- Create and maintain marketing collateral and manage the content strategy for the Organization&#8217;s portal. Develop leadership presentations for global conferences, Organization&#8217;s strategy sessions and other internal or external events.</p>\n\n\t<p>- Work with the Organization&#8217;s country <span class="caps">COO</span>s to support marketing initiatives in specific countries. Develop <span class="caps">CEO</span> communications directed towards Organization&#8217;s leadership and other stakeholders including the employees.</p>\n\n\t<p>- Develop and maintain an overall marketing budget to ensure programs are implemented cost effectively and achieve desired goals of building relationships and growing the business.</p>\n\n\t<p>- Work with creative agencies or internal teams to ensure marketing programs / deliverables are executed as per plan.</p>\n\n\t<p>- Lead key outputs of the program against agreed timelines and deliverables requested by functional leaders from HR, IT, Business Continuity and <span class="caps">CSR</span>.</p>\n\n\t<p>Job Location : Bangalore </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: Marketing , Advertising , MR , PR , Media Planning </p>\n\n\t<p>Role Category:Marketing</p>\n\n\t<p>Role:Marketing Manager</p>\n\n\t<p>Keyskills <br />\nB2B Marketing Marketing Budget Integrated Marketing Marketing Strategy Marketing Programs Content Strategy Marketing Communications <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:MBA/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Lead &#8211; Marketing communication</p>\n\n\t<p>- Full time <span class="caps">MBA</span> from <span class="caps">IIM</span>/ Jamnalal Bajaj/SP Jain/ <span class="caps">XIMB</span> passed only between 20008 -2012 batches.</p>\n\n\t<p>- At-least 3 years relevant experience marketing communications functions in an IT company would be preferred.</p>'],
'exp': u'3 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 3, 897090),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'B2B Marketing', u'Marketing Strategy'],
'title': u'Lead-marketing Communications-itinfrastructure Services-iim/xim/spjain',
'url': 'http://jobsearch.naukri.com/job-listings-Lead-marketing-Communications-itinfrastructure-Services-iim-xim-spjain-Ascent-iQ-staffing-business-solution-Bengaluru-Bangalore-3-to-7-years-160715900859'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'JOBWORLD INDIA PRIVATE LTD',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 4, 908046),
'description': [u'\t<p>Expert level knowledge in <span class="caps">HTML</span> (5), <span class="caps">CSS</span> (3), JavaScript Knowledge of backbone.js is a strong plus Knowledge of performance, cross-browser issues and strategies for designing compatible UI Experience with <span class="caps">JSON</span>, <span class="caps">XML</span> Good knowledge and hands on in: &#8211; Browser-server interactions &#8211; Event and object modeling &#8211; <span class="caps">DOM</span> manipulation &#8211; Programming patterns &#8211; <span class="caps">AJAX</span> libraries and tools<br />\nStrong knowledge of OO design, common web design patterns and <span class="caps">MVC</span> modeling. Experience using web frameworks like <span class="caps">YUI</span>, jQuery, etc. Self-driven Strong verbal and written communication skills. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">HTML</span> Javascript UI Development <span class="caps">CSS</span> JQuery <span class="caps">YUI</span> <span class="caps">JSON</span> Ajax <span class="caps">DOM</span> <span class="caps">MVC</span> UI Developer Javascript Developer <span class="caps">MVC</span> modeling <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>'],
'exp': u'4 - 9 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 4, 907979),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'HTML',
u'Javascript',
u'UI Development',
u'CSS',
u'JQuery',
u'Ajax',
u'MVC',
u'UI Developer'],
'title': u'UI Developer / Javascript Developer',
'url': 'http://jobsearch.naukri.com/job-listings-UI-Developer-Javascript-Developer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-4-to-9-years-160715900851'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:04 [scrapy] ERROR: Error processing {'company': u'JOBWORLD INDIA PRIVATE LTD',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 4, 908046),
'description': [u'\t<p>Expert level knowledge in <span class="caps">HTML</span> (5), <span class="caps">CSS</span> (3), JavaScript Knowledge of backbone.js is a strong plus Knowledge of performance, cross-browser issues and strategies for designing compatible UI Experience with <span class="caps">JSON</span>, <span class="caps">XML</span> Good knowledge and hands on in: &#8211; Browser-server interactions &#8211; Event and object modeling &#8211; <span class="caps">DOM</span> manipulation &#8211; Programming patterns &#8211; <span class="caps">AJAX</span> libraries and tools<br />\nStrong knowledge of OO design, common web design patterns and <span class="caps">MVC</span> modeling. Experience using web frameworks like <span class="caps">YUI</span>, jQuery, etc. Self-driven Strong verbal and written communication skills. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\n<span class="caps">HTML</span> Javascript UI Development <span class="caps">CSS</span> JQuery <span class="caps">YUI</span> <span class="caps">JSON</span> Ajax <span class="caps">DOM</span> <span class="caps">MVC</span> UI Developer Javascript Developer <span class="caps">MVC</span> modeling <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>'],
'exp': u'4 - 9 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 4, 907979),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'HTML',
u'Javascript',
u'UI Development',
u'CSS',
u'JQuery',
u'Ajax',
u'MVC',
u'UI Developer'],
'title': u'UI Developer / Javascript Developer',
'url': 'http://jobsearch.naukri.com/job-listings-UI-Developer-Javascript-Developer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-4-to-9-years-160715900851'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'JOBWORLD INDIA PRIVATE LTD',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 5, 824543),
'description': [u'\t<p>Required Skills: <br />\nStrong experience in developing a IP router/switch platform OR <span class="caps">SDK</span> for a networking <span class="caps">ASIC</span>. Experience with the development of infrastructure modules such as <span class="caps">IPC</span>, debug infrastructure, Linux or other embedded OS integration of embedded modules. Strong programming skills &#8211; C/C++. Strong problem solving skills. Strong understanding of Linux programming. Strong network forwarding concepts &#8211; L2/L3, DataCenter, Metro, Service Provider networks. Familiarity and knowledge of <span class="caps">SDN</span> and <span class="caps">NFV</span> concepts &#8211; Open Flow, <span class="caps">SDN</span> Controllers &#8211; is a strong plus. Knowledge of Python is a strong plus. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Network Administration , Security </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nC C++ <span class="caps">IPC</span> <span class="caps">SDK</span> Python Linux Programming Networking IP OS IP router Switch Developer DataCenter <span class="caps">SDN</span> Controllers <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers, B.Sc &#8211; Computers, <span class="caps">BCA</span> &#8211; Computers</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Qualifications <br />\nA Computer Science degree or similar Experience <br />\n5+ years professional experience in software development</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 5, 824464),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'C',
u'C++',
u'SDK',
u'Python',
u'Linux',
u'Programming',
u'Networking',
u'OS',
u'DataCenter'],
'title': u'IP Router/switch Developer',
'url': 'http://jobsearch.naukri.com/job-listings-IP-Router-switch-Developer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-5-to-10-years-160715900824'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:05 [scrapy] ERROR: Error processing {'company': u'JOBWORLD INDIA PRIVATE LTD',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 5, 824543),
'description': [u'\t<p>Required Skills: <br />\nStrong experience in developing a IP router/switch platform OR <span class="caps">SDK</span> for a networking <span class="caps">ASIC</span>. Experience with the development of infrastructure modules such as <span class="caps">IPC</span>, debug infrastructure, Linux or other embedded OS integration of embedded modules. Strong programming skills &#8211; C/C++. Strong problem solving skills. Strong understanding of Linux programming. Strong network forwarding concepts &#8211; L2/L3, DataCenter, Metro, Service Provider networks. Familiarity and knowledge of <span class="caps">SDN</span> and <span class="caps">NFV</span> concepts &#8211; Open Flow, <span class="caps">SDN</span> Controllers &#8211; is a strong plus. Knowledge of Python is a strong plus. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Network Administration , Security </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nC C++ <span class="caps">IPC</span> <span class="caps">SDK</span> Python Linux Programming Networking IP OS IP router Switch Developer DataCenter <span class="caps">SDN</span> Controllers <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers, B.Sc &#8211; Computers, <span class="caps">BCA</span> &#8211; Computers</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Qualifications <br />\nA Computer Science degree or similar Experience <br />\n5+ years professional experience in software development</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 5, 824464),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'C',
u'C++',
u'SDK',
u'Python',
u'Linux',
u'Programming',
u'Networking',
u'OS',
u'DataCenter'],
'title': u'IP Router/switch Developer',
'url': 'http://jobsearch.naukri.com/job-listings-IP-Router-switch-Developer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-5-to-10-years-160715900824'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'JOBWORLD INDIA PRIVATE LTD',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 6, 679447),
'description': [u'\t<p>Duties and responsibilities <br />\nComputer Science fundamentals in object-oriented design data structures algorithm design, problem solving, and complexity analysis Proficiency in Java/J2EE Experience with distributed system performance analysis and optimization distributed (multi-tiered) systems, algorithms, and relational databases Agile/Scrum environment Should be able to effectively articulate technical challenges and solutions Should deal well with ambiguous/undefined problems; ability to think abstractly Experience with enterprise data systems like Salesforce, Sharepoint, Oracle <span class="caps">CRM</span> etc. is a plus Experience with writing and consuming <span class="caps">API</span>s is a plus </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJava Algorithms J2Ee Oracle <span class="caps">CRM</span> Data Structures Scrum Salesforce Computer Science Performance Analysis Java Engineer Sharepoint <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers, B.Sc &#8211; Computers, <span class="caps">BCA</span> &#8211; Computers</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Qualifications <br />\nA Computer Science degree or similar Experience <br />\n5+ years professional experience in software development</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 6, 679349),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Java',
u'Algorithms',
u'J2Ee',
u'Oracle CRM',
u'Data Structures',
u'Scrum',
u'Salesforce',
u'Computer Science',
u'Performance Analysis',
u'Sharepoint'],
'title': u'Java Engineer',
'url': 'http://jobsearch.naukri.com/job-listings-Java-Engineer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-5-to-10-years-160715900855'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:06 [scrapy] ERROR: Error processing {'company': u'JOBWORLD INDIA PRIVATE LTD',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 6, 679447),
'description': [u'\t<p>Duties and responsibilities <br />\nComputer Science fundamentals in object-oriented design data structures algorithm design, problem solving, and complexity analysis Proficiency in Java/J2EE Experience with distributed system performance analysis and optimization distributed (multi-tiered) systems, algorithms, and relational databases Agile/Scrum environment Should be able to effectively articulate technical challenges and solutions Should deal well with ambiguous/undefined problems; ability to think abstractly Experience with enterprise data systems like Salesforce, Sharepoint, Oracle <span class="caps">CRM</span> etc. is a plus Experience with writing and consuming <span class="caps">API</span>s is a plus </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nJava Algorithms J2Ee Oracle <span class="caps">CRM</span> Data Structures Scrum Salesforce Computer Science Performance Analysis Java Engineer Sharepoint <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: B.Tech/B.E. &#8211; Computers, B.Sc &#8211; Computers, <span class="caps">BCA</span> &#8211; Computers</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Qualifications <br />\nA Computer Science degree or similar Experience <br />\n5+ years professional experience in software development</p>'],
'exp': u'5 - 10 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 6, 679349),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Java',
u'Algorithms',
u'J2Ee',
u'Oracle CRM',
u'Data Structures',
u'Scrum',
u'Salesforce',
u'Computer Science',
u'Performance Analysis',
u'Sharepoint'],
'title': u'Java Engineer',
'url': 'http://jobsearch.naukri.com/job-listings-Java-Engineer-JOBWORLD-INDIA-PRIVATE-LTD-Bengaluru-Bangalore-5-to-10-years-160715900855'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Automation-Test-Engineer-Bangalore-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-2-to-3-years-160715007260> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:06 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Automation-Test-Engineer-Bangalore-Allegis-Services-India-Pvt-Ltd--Bengaluru-Bangalore-2-to-3-years-160715007260> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Core-Java-Rest-Full-Web-Services-Bangalore-Zest-Infosystem-Bengaluru-Bangalore-5-to-10-years-160715007351> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:06 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Core-Java-Rest-Full-Web-Services-Bangalore-Zest-Infosystem-Bengaluru-Bangalore-5-to-10-years-160715007351> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Analytics-Manager-5-8-yrs-Bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-8-years-160715007379> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:06 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Analytics-Manager-5-8-yrs-Bangalore-Careernet-Technologies-Pvt-Ltd-Bengaluru-Bangalore-5-to-8-years-160715007379> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Visual-C-win-Forms-with-NET-Framework-WCF-Alfa-Resources-Pvt-Ltd-Bengaluru-Bangalore-7-to-10-years-160715007380> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:06 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Visual-C-win-Forms-with-NET-Framework-WCF-Alfa-Resources-Pvt-Ltd-Bengaluru-Bangalore-7-to-10-years-160715007380> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Junior-Net-Web-Developer-The-Vertical-Recruiters-Bengaluru-Bangalore-2-to-4-years-160715007372> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
2015-07-16 20:07:06 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Junior-Net-Web-Developer-The-Vertical-Recruiters-Bengaluru-Bangalore-2-to-4-years-160715007372> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-4)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Hiring-AM-Recruitment-Multifonds-Bangalore-IGEFI-Software-India-Pvt-Ltd--Bengaluru-Bangalore-9-to-11-years-160715007997> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:07:06 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Urgent-Hiring-AM-Recruitment-Multifonds-Bangalore-IGEFI-Software-India-Pvt-Ltd--Bengaluru-Bangalore-9-to-11-years-160715007997> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Account-Manager-Google-Business-View-Sweans-Technologies-Pvt-ltd-Bengaluru-Bangalore-Coimbatore-Mangalore-0-to-3-years-160715008009> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:07:06 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Account-Manager-Google-Business-View-Sweans-Technologies-Pvt-ltd-Bengaluru-Bangalore-Coimbatore-Mangalore-0-to-3-years-160715008009> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
DEBUG:scrapy.core.engine:Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Openings-for-Sharepoint-Developer-for-Novigo-Solutions-Bangalore-Novigo-Solutions-Pvt-Ltd-Bengaluru-Bangalore-6-to-11-years-160715008026> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
2015-07-16 20:07:06 [scrapy] DEBUG: Crawled (200) <GET http://jobsearch.naukri.com/job-listings-Openings-for-Sharepoint-Developer-for-Novigo-Solutions-Bangalore-Novigo-Solutions-Pvt-Ltd-Bengaluru-Bangalore-6-to-11-years-160715008026> (referer: http://jobsearch.naukri.com/jobs-in-bangalore-2)
ERROR:scrapy.core.scraper:Error processing {'company': u'Choice Group',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 8, 51842),
'description': [u'\t<p>Hi</p>\n\n\t<p>We are recruiting for a product-based company</p>\n\n\t<p>Designation: Andriod Developer<br />\nLocation: Bangalore<br />\nExp: 2-8 yrs<br />\nMust have strong and hands on exp on Android <span class="caps">SDK</span>.<br />\nHands on exp on Data Structures, Algorithms and Core Java.<br />\nExcellent comm skills. </p>\n\n\t<p>Salary: 5,00,000 &#8211; 11,00,000 P.A. They are open with their budget (only for deserving candidates) </p>\n\n\t<p>Industry: Internet / Ecommerce </p>\n\n\t<p>Functional Area: IT Software &#8211; eCommerce , Internet Technologies </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nandroid android sdk android app developer android app development core java data structures algorithms design patterns json rest <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Key skills</p>\n\n\t<ul>\n\t\t<li>Strong knowledge of Java &amp; Android</li>\n\t\t<li>Excellent oral &amp; written communication skills</li>\n\t\t<li>Ability to write and maintain high quality code</li>\n\t\t<li>Familiarity with Android &amp; mobile app development</li>\n\t\t<li>Familiarity with Hibernate, Spring &amp; jQuery</li>\n\t</ul>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 8, 51750),
'salary': u'5,00,000 - 11,00,000 P.A. They are open with their budget (only for deserving candidates)',
'skills': [u'android',
u'android sdk',
u'core java',
u'data structures',
u'algorithms',
u'design patterns'],
'title': u'Great Job Opportunity for Android Developer...',
'url': 'http://jobsearch.naukri.com/job-listings-Great-Job-Opportunity-for-Android-Developer--Choice-Group-Bengaluru-Bangalore-2-to-7-years-160715002759'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:08 [scrapy] ERROR: Error processing {'company': u'Choice Group',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 8, 51842),
'description': [u'\t<p>Hi</p>\n\n\t<p>We are recruiting for a product-based company</p>\n\n\t<p>Designation: Andriod Developer<br />\nLocation: Bangalore<br />\nExp: 2-8 yrs<br />\nMust have strong and hands on exp on Android <span class="caps">SDK</span>.<br />\nHands on exp on Data Structures, Algorithms and Core Java.<br />\nExcellent comm skills. </p>\n\n\t<p>Salary: 5,00,000 &#8211; 11,00,000 P.A. They are open with their budget (only for deserving candidates) </p>\n\n\t<p>Industry: Internet / Ecommerce </p>\n\n\t<p>Functional Area: IT Software &#8211; eCommerce , Internet Technologies </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nandroid android sdk android app developer android app development core java data structures algorithms design patterns json rest <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization, Graduation Not Required</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Key skills</p>\n\n\t<ul>\n\t\t<li>Strong knowledge of Java &amp; Android</li>\n\t\t<li>Excellent oral &amp; written communication skills</li>\n\t\t<li>Ability to write and maintain high quality code</li>\n\t\t<li>Familiarity with Android &amp; mobile app development</li>\n\t\t<li>Familiarity with Hibernate, Spring &amp; jQuery</li>\n\t</ul>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 8, 51750),
'salary': u'5,00,000 - 11,00,000 P.A. They are open with their budget (only for deserving candidates)',
'skills': [u'android',
u'android sdk',
u'core java',
u'data structures',
u'algorithms',
u'design patterns'],
'title': u'Great Job Opportunity for Android Developer...',
'url': 'http://jobsearch.naukri.com/job-listings-Great-Job-Opportunity-for-Android-Developer--Choice-Group-Bengaluru-Bangalore-2-to-7-years-160715002759'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'HDFC Bank Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 9, 189408),
'description': [u'\t<p><span class="caps">KEY</span> <span class="caps">RESPONSIBILITIES</span> </p>\n\n\t<p>Collecting and maintaining records activities</p>\n\n\t<p>1. Timely deposit of the collected amounts in the respective dummy accounts and further raise of cash / cheque schedules for updating into respective clients account</p>\n\n\t<p>2. To ensure timely follow up with the delinquent customers for the overdue account and subsequent updating of trails</p>\n\n\t<p>3. To Effectively manage all customer related complaints and issues</p>\n\n\t<p>4. To Achieve given fee collections target for the month</p>\n\n\t<p>5. To Achieve rolled out targets on rollbacks and resolutions month on month</p>\n\n\t<p>6. End to end management of repossession kits issued to the vendors for the repossession of the assets applicable for movable asset</p>\n\n\t<p>Supervisory functions</p>\n\n\t<p>1. Highlighting any trends observed in the market place and identifying the fraud cases and escalation of the same to seniors</p>\n\n\t<p>2. Ensure adherence of the pre laid down process</p>\n\n\t<p>3. Regular visits to the stockyards to ensure safety of the parked assets</p>\n\n\t<p>4. Updating of the repossession of the asset in the web collections and subsequent marking of the sale done</p>\n\n\t<p>5. Skip marking and tracing details to be updated in the trails</p>\n\n\t<p>6. Timely initiation of the legal cases on all eligible cases</p>\n\n\t<p>7. To manage vendor performance by daily follow-up, visits and tracking collector level performance</p>\n\n\t<p>Salary: 2,75,000 &#8211; 4,50,000 P.A </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: Financial Services , Banking , Investments , Insurance </p>\n\n\t<p>Role Category:Retail/Personal Banking</p>\n\n\t<p>Role:Collections Manager</p>\n\n\t<p>Keyskills <br />\nCollection Management agency handling Mis Reporting <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 9, 189340),
'salary': u'2,75,000 - 4,50,000 P.A',
'skills': [u'Mis Reporting'],
'title': u'Collections Manager- Assets-bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Collections-Manager-Assets-bangalore-HDFC-Bank-Limited-Bengaluru-Bangalore-2-to-7-years-160715007168'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:09 [scrapy] ERROR: Error processing {'company': u'HDFC Bank Limited',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 9, 189408),
'description': [u'\t<p><span class="caps">KEY</span> <span class="caps">RESPONSIBILITIES</span> </p>\n\n\t<p>Collecting and maintaining records activities</p>\n\n\t<p>1. Timely deposit of the collected amounts in the respective dummy accounts and further raise of cash / cheque schedules for updating into respective clients account</p>\n\n\t<p>2. To ensure timely follow up with the delinquent customers for the overdue account and subsequent updating of trails</p>\n\n\t<p>3. To Effectively manage all customer related complaints and issues</p>\n\n\t<p>4. To Achieve given fee collections target for the month</p>\n\n\t<p>5. To Achieve rolled out targets on rollbacks and resolutions month on month</p>\n\n\t<p>6. End to end management of repossession kits issued to the vendors for the repossession of the assets applicable for movable asset</p>\n\n\t<p>Supervisory functions</p>\n\n\t<p>1. Highlighting any trends observed in the market place and identifying the fraud cases and escalation of the same to seniors</p>\n\n\t<p>2. Ensure adherence of the pre laid down process</p>\n\n\t<p>3. Regular visits to the stockyards to ensure safety of the parked assets</p>\n\n\t<p>4. Updating of the repossession of the asset in the web collections and subsequent marking of the sale done</p>\n\n\t<p>5. Skip marking and tracing details to be updated in the trails</p>\n\n\t<p>6. Timely initiation of the legal cases on all eligible cases</p>\n\n\t<p>7. To manage vendor performance by daily follow-up, visits and tracking collector level performance</p>\n\n\t<p>Salary: 2,75,000 &#8211; 4,50,000 P.A </p>\n\n\t<p>Industry: Banking / Financial Services / Broking </p>\n\n\t<p>Functional Area: Financial Services , Banking , Investments , Insurance </p>\n\n\t<p>Role Category:Retail/Personal Banking</p>\n\n\t<p>Role:Collections Manager</p>\n\n\t<p>Keyskills <br />\nCollection Management agency handling Mis Reporting <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Post Graduation Not Required</p>\n\n\t<p>Doctorate:Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'2 - 7 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 9, 189340),
'salary': u'2,75,000 - 4,50,000 P.A',
'skills': [u'Mis Reporting'],
'title': u'Collections Manager- Assets-bangalore',
'url': 'http://jobsearch.naukri.com/job-listings-Collections-Manager-Assets-bangalore-HDFC-Bank-Limited-Bengaluru-Bangalore-2-to-7-years-160715007168'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'BASE Educational Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 10, 84283),
'description': [u'\t<p>Build and develop Marketing Strategies.<br />\nIdentification of potential market segments.<br />\nResponsible to formulate annual target and allocate among team members and to self.<br />\nMust develop and maintain effective prospective client and existing clients. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Education / Teaching / Training </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Senior Management</p>\n\n\t<p>Role:Head/VP/GM/National Manager -Sales</p>\n\n\t<p>Keyskills <br />\nMarketing Revenue Generation Account Development Business Development Institutional Sales key account direct sales Business Planning Campaign Management Business strategies <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'10 - 15 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 10, 84208),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Marketing',
u'Revenue Generation',
u'Business Development',
u'direct sales',
u'Business Planning',
u'Campaign Management',
u'Business strategies'],
'title': u'Job Opportunity for Head - Marketing',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Opportunity-for-Head-Marketing-BASE-Educational-Services-Pvt-Ltd-Bengaluru-Bangalore-10-to-15-years-160715007278'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:10 [scrapy] ERROR: Error processing {'company': u'BASE Educational Services Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 10, 84283),
'description': [u'\t<p>Build and develop Marketing Strategies.<br />\nIdentification of potential market segments.<br />\nResponsible to formulate annual target and allocate among team members and to self.<br />\nMust develop and maintain effective prospective client and existing clients. </p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: Education / Teaching / Training </p>\n\n\t<p>Functional Area: Sales , Retail , Business Development </p>\n\n\t<p>Role Category:Senior Management</p>\n\n\t<p>Role:Head/VP/GM/National Manager -Sales</p>\n\n\t<p>Keyskills <br />\nMarketing Revenue Generation Account Development Business Development Institutional Sales key account direct sales Business Planning Campaign Management Business strategies <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate &#8211; Any Specialization</p>\n\n\t<p>PG:Any Postgraduate &#8211; Any Specialization, Post Graduation Not Required, <span class="caps">MBA</span>/PGDM &#8211; Any Specialization</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization, Doctorate Not Required</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'10 - 15 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 10, 84208),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Marketing',
u'Revenue Generation',
u'Business Development',
u'direct sales',
u'Business Planning',
u'Campaign Management',
u'Business strategies'],
'title': u'Job Opportunity for Head - Marketing',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Opportunity-for-Head-Marketing-BASE-Educational-Services-Pvt-Ltd-Bengaluru-Bangalore-10-to-15-years-160715007278'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'US Tech Solutions Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 10, 798063),
'description': [u'\t<p>Mode of Hiring &#8211; Contract to Hire (C2H)<br />\nClient &#8211; Dell Services<br />\nPayroll Company &#8211; US Tech Solutions (www.ustechsolutions.com)</p>\n\n\t<p>Skills <br />\n<span class="caps">ASP</span>.Net<br />\n<span class="caps">MVC</span></p>\n\n\t<p><span class="caps">SQL</span></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nAsp .Net Mvc Architecture Sql Scripting <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate</p>\n\n\t<p>PG:Any Postgraduate</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 10, 797996),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Asp .Net', u'Mvc Architecture', u'Sql Scripting'],
'title': u'Job Opening for .net, MVC @ Bengaluru ( C2H) 15 Days Notice only',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Opening-for-net-MVC-Bengaluru-C2H-15-Days-Notice-only-US-Tech-Solutions-Pvt-Ltd-Bengaluru-Bangalore-4-to-6-years-160715007277'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
2015-07-16 20:07:10 [scrapy] ERROR: Error processing {'company': u'US Tech Solutions Pvt Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 10, 798063),
'description': [u'\t<p>Mode of Hiring &#8211; Contract to Hire (C2H)<br />\nClient &#8211; Dell Services<br />\nPayroll Company &#8211; US Tech Solutions (www.ustechsolutions.com)</p>\n\n\t<p>Skills <br />\n<span class="caps">ASP</span>.Net<br />\n<span class="caps">MVC</span></p>\n\n\t<p><span class="caps">SQL</span></p>\n\n\t<p>Salary: Not Disclosed by Recruiter </p>\n\n\t<p>Industry: IT-Software / Software Services </p>\n\n\t<p>Functional Area: IT Software &#8211; Application Programming , Maintenance </p>\n\n\t<p>Role Category:Programming &amp; Design</p>\n\n\t<p>Role:Software Developer</p>\n\n\t<p>Keyskills <br />\nAsp .Net Mvc Architecture Sql Scripting <br />\nDesired Candidate Profile <br />\nEducation-</p>\n\n\t<p>UG: Any Graduate</p>\n\n\t<p>PG:Any Postgraduate</p>\n\n\t<p>Doctorate:Any Doctorate &#8211; Any Specialization</p>\n\n\t<p>Please refer to the Job description above</p>'],
'exp': u'4 - 6 yrs',
'location': [u'Bengaluru/Bangalore'],
'posted_at': datetime.datetime(2015, 7, 16, 20, 7, 10, 797996),
'salary': u'Not Disclosed by Recruiter',
'skills': [u'Asp .Net', u'Mvc Architecture', u'Sql Scripting'],
'title': u'Job Opening for .net, MVC @ Bengaluru ( C2H) 15 Days Notice only',
'url': 'http://jobsearch.naukri.com/job-listings-Job-Opening-for-net-MVC-Bengaluru-C2H-15-Days-Notice-only-US-Tech-Solutions-Pvt-Ltd-Bengaluru-Bangalore-4-to-6-years-160715007277'}
Traceback (most recent call last):
File "/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/twisted/internet/defer.py", line 551, in _runCallbacks
current.result = callback(current.result, *args, **kw)
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 37, in process_item
if notify_api(job, spider):
File "/Users/codecrux/workspace/codecrux/naukricw_new/crawler/naukri/pipelines.py", line 54, in notify_api
if os.environ['APP_ENV'] == 'dev':
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/UserDict.py", line 23, in __getitem__
raise KeyError(key)
KeyError: 'APP_ENV'
ERROR:scrapy.core.scraper:Error processing {'company': u'Infosys BPO Ltd',
'crawled_at': datetime.datetime(2015, 7, 16, 20, 7, 11, 707740),
'description': [u'\t<p>We are delighted at the prospect of seeing your resume on job portal and we are equally delighted to send you this email confirming that your profile has been shortlisted for a role with us.</p>\n\n\t<p>Walk-in, Infosys-<span class="caps">BPO</span> hiring for Employee Helpdesk (Voice) for Bangalore location </p>\n\n\t<p>***********WALK-IN <span class="caps">DETAILS</span> ********** </p>\n\n\t<p>Date: 19th July 2015</p>\n\n\t<p>Time: 9am 2pm</p>\n\n\t<p>Venue: </p>\n\n\t<p>Infosys <span class="caps">BPO</span> Ltd, Infosys Towers</p>\n\n\t<p>No. 27,Bannerghatta Road, Opposite to Jayadeva hospital</p>\n\n\t<p>J. P. Nagar, 3rd Phase, Bangalore &#8211; 560 076</p>\n\n\t<p>Contact: Sajjana</p>\n\n\t<p>Skill: Employee Helpdesk (Voice)</p>\n\n\t<p>Position: JL3A </p>\n\n\t<p>Role Designation: Process Specialist</p>\n\n\t<p>Job Location: Bangalore</p>\n\n\t<p>Experience: 2-5yrs </p>\n\n\t<p>Qualification: Any Graduate (10+2+3) Regular</p>\n\n\t<p>Work Environment: : 24 * 7 shifts</p>\n\n\t<p>Desired / Preferred Skills : </p>\n\n\t<p>Experience in HR Operations (Excellent Communication) / International Voice Experience (Preferred) </p>\n\n\t<p>Responsibilities: </p>\n\n\t<p>Problem analysis and resolution Customer Service- Helpdesk Experience ,Voice (preferred) Problem prevention by leveraging Analytics &#8211; Root cause analysis etc. Knowledge Management-Documentation, reports </p>\n\n\t<p>Must have skills: </p>\n\n\t<p>Good written and verbal communication (English) skills Have the ability to multi task and meet the targets within defined timelines. Good experience in MS Office tools Excel, PowerPoint, Word, Outlook etc. Good Analytical Skills Good team player. Should help the team to meet the defined <span class="caps">SLA</span>. </p>\n\n\t<p>Important Notes: </p>\n\n\t<p>1) Please mention &#8216;Direct Sourcing&#8217; top of your cv before submit your candidature.</p>\n\n\t<p>2) Carry print out of this and attach with your updated CV without this letter you will not be allowed to </p>\n\n\t<p>attend the interview.</p>\n\n\t<p>Documents needed for spot offer </p>\n\n\t<ul>\n\t\t<li>Originals + Photocopy of 10th, 12th, Graduation/Diploma with marks card.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>2 passport size photograph.</li>\n\t</ul>\n\n\t<ul>\n\t\t<li>Any valid photo id ( eg: College id, DL, Passport)</li>\n\t</ul>\n\n\t<p>3) If you have already attended Please refer your friends and give them an opportunity to become part </p>\n\n\t<p>of Infosys-<span class="caps">BPO</span> ask them to Ple
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment