Monday, 10 March 2014

Grepsr scraping service Review

As we reviewed web scraping software and services, we stumbled upon an interesting cloud scraping service called Grepsr. This service is dedicated to extracting consumer requested data by its own specialists with the possibility that the user may control scrape scheduling and some other data extraction steps.

Grepsr focuses on a project for scrape. You don’t need to worry about choosing an extractor, the environment to run it or DB for data storage; everything is done for you. Just give a precise description of data you need and your request will be processed. The sample request I composed took them just over 30 min. to complete the data extraction. The pricing hinges on the down payment for a project and the number of scheduled projects per month regardless of the data amount you scrape. One shortage of the UI is when scaling the page up, fonts remain the same size, irritating the eyes.

Make a Sample Project

You don’t need to log in to Grepsr before you describe your target data for a sample project.  To point at the data you might want, use the visual tools at Grepsr, the mark up box or just enter notes. The online specialist is prompt to chat with you. As you describe the extraction details and leave your contact info, a confirmation letter will be sent to you and your project will be indicated as one in process. In the following picture, I marked the needed info using the inbuilt box with the comment box appearing under the table. I was able to compose the request quickly. 

Moreover, you may specify any search filters or login info for target page(s) if needed.

Data Synchronization and Storage

For each project, you choose the way to get the data synchronized, depending on your needed output format. You may request CSV, PDF or HTML files delivered to your FTP, Dropbox or Google Docs account. Also, you may request notification about your extracted data through alerts via Email or HTTP POST.

There is currently no limit for account data storage amount. However, if the storage amount becomes excessive (GBs), the data may either be archived or deleted or there may be a cost for storage.

Payment

The project development cost is $129, regardless of complexity unless the task has a very unique requirement (then custom pricing is used). The one-time extraction limit for new project is 50K records from 1 website. The first sample will be free – but to be able to download the data daily, there will be a $99 setup fee and $50 per month per project payable after viewing the sample data, regardless of the data amount extracted.

Scheduling

Scheduling is well organized, as shown below:

Summary

Unlike many other data hunting/scraping services, Grepsr provides usable tools to manage projects and scheduling. The service is user-friendly with prompt support. If you know nothing about programming and web scraping, but you need to get a data from the web, this service is for you. But if you are a programmer and know how to extract web data, you may use another web scraping solution to have more freedom with a lower cost.

Source: http://scraping.pro/grepsr-scraping-service-review/

Monday, 3 March 2014

Getting Back Into Internet Marketing

Today I am getting back into internet marketing. In the last few weeks I have completely stopped internet marketing to focus on property. There is so much more money to be made easier in property than internet marketing and I can see now how property can provide me with financial freedom a lot quicker than internet marketing ever could.

Although I do have a problem. Property doesn't take up a lot of my time. Doing property deals is an elongated process and takes minutes of your time spread throughout each day and each week. But then you have the dilemma of what you do with the time in between. I could do nothing, but that isn't exactly me, I always love to have my head full of something.

So after much consideration I have decided to start getting back into internet marketing. Property will still be my focus, and will be my focus until I am financially free, but I realise that internet marketing will be good for me also. Firstly it will generate income which will increase my borrowing power, secondly it will give me something to do, but most importantly it will give me an outlet for which to teach.

I have come a long way in the last 6 months when it comes to understanding wealth and actually being in a position where I am moving forward into wealth. I am currently still in negotiations on my first property deal and I am looking to do my second deal within the next month.

It will be very different teaching wealth from a place of wealth (or really moving towards) than just from a student's perspective. In the past I have always been the student of wealth, someone who knows a lot but not someone that had a lot of money. In fact I worked just enough to scrape by so that I could spend my time studying wealth. This meant I had great knowledge but no money.

I do believe that knowledge brings with it finance. The size of your bank account will increase to fit in with the size of you as a person. If you are rich on the inside, you will naturally gather and grow money to reflect who you are on the inside. If you are poor on the inside, even if you win lotto, your money will naturally shrink to fit who you are. So I am so glad that I focused on increasing my capacity instead of working harder for money.

I haven't really planned out exactly what I am going to do when it comes to internet marketing. This blog exists as my own outlet for my life, so it won't be part of my investment plan. I am not trying to make money from this blog. Although I have a few other things in mind.

I have grown a large subscriber base over the last few years (about 1,500 subscribers) but making money from my subscribers has always seem to elude me. So to combat this I plan to create my own course to market to my subscribers. It will be a course to teach people about the financial basics that I have been learning for the last 6 months. The financial basics that have allowed me to purchase my first property and start generating passive income.

I also want to continue to market and grow my list. I have around 1,500 subscribers. Ultimately I want to have 60,000+ subscribers and to get them I will be writing articles and submitting them to article directories.

I also want to eventually create a "How to make money with Aweber" course. I free course that I would market and get people to sign up for. The course would be free and I would only make money through affiliate sales of the Aweber service.

Basically I am trying to keep my brain occupied and have a little bit of fun in between doing each property deal.

Your next step towards becoming rich is to increase your financial IQ through education. By educating yourself in the area of finances you will be able to get a greater return on investment and you will be able to earn more with less work and less risk. Does that sound good to you?

Source:http://ezinearticles.com/?Getting-Back-Into-Internet-Marketing&id=3744975

Wednesday, 26 February 2014

Three Common Methods For Web Data Extraction

Probably the most common technique used traditionally to extract data from web pages this is to cook up some regular expressions that match the pieces you want (e.g., URL's and link titles). Our screen-scraper software actually started out as an application written in Perl for this very reason. In addition to regular expressions, you might also use some code written in something like Java or Active Server Pages to parse out larger chunks of text. Using raw regular expressions to pull out the data can be a little intimidating to the uninitiated, and can get a bit messy when a script contains a lot of them. At the same time, if you're already familiar with regular expressions, and your scraping project is relatively small, they can be a great solution.

Other techniques for getting the data out can get very sophisticated as algorithms that make use of artificial intelligence and such are applied to the page. Some programs will actually analyze the semantic content of an HTML page, then intelligently pull out the pieces that are of interest. Still other approaches deal with developing "ontologies", or hierarchical vocabularies intended to represent the content domain.

There are a number of companies (including our own) that offer commercial applications specifically intended to do screen-scraping. The applications vary quite a bit, but for medium to large-sized projects they're often a good solution. Each one will have its own learning curve, so you should plan on taking time to learn the ins and outs of a new application. Especially if you plan on doing a fair amount of screen-scraping it's probably a good idea to at least shop around for a screen-scraping application, as it will likely save you time and money in the long run.

So what's the best approach to data extraction? It really depends on what your needs are, and what resources you have at your disposal. Here are some of the pros and cons of the various approaches, as well as suggestions on when you might use each one:

Raw regular expressions and code

Advantages:

- If you're already familiar with regular expressions and at least one programming language, this can be a quick solution.

- Regular expressions allow for a fair amount of "fuzziness" in the matching such that minor changes to the content won't break them.

- You likely don't need to learn any new languages or tools (again, assuming you're already familiar with regular expressions and a programming language).

- Regular expressions are supported in almost all modern programming languages. Heck, even VBScript has a regular expression engine. It's also nice because the various regular expression implementations don't vary too significantly in their syntax.

Disadvantages:

- They can be complex for those that don't have a lot of experience with them. Learning regular expressions isn't like going from Perl to Java. It's more like going from Perl to XSLT, where you have to wrap your mind around a completely different way of viewing the problem.

- They're often confusing to analyze. Take a look through some of the regular expressions people have created to match something as simple as an email address and you'll see what I mean.

- If the content you're trying to match changes (e.g., they change the web page by adding a new "font" tag) you'll likely need to update your regular expressions to account for the change.

- The data discovery portion of the process (traversing various web pages to get to the page containing the data you want) will still need to be handled, and can get fairly complex if you need to deal with cookies and such.

When to use this approach: You'll most likely use straight regular expressions in screen-scraping when you have a small job you want to get done quickly. Especially if you already know regular expressions, there's no sense in getting into other tools if all you need to do is pull some news headlines off of a site.

Ontologies and artificial intelligence

Advantages:

- You create it once and it can more or less extract the data from any page within the content domain you're targeting.

- The data model is generally built in. For example, if you're extracting data about cars from web sites the extraction engine already knows what the make, model, and price are, so it can easily map them to existing data structures (e.g., insert the data into the correct locations in your database).

- There is relatively little long-term maintenance required. As web sites change you likely will need to do very little to your extraction engine in order to account for the changes.

Disadvantages:

- It's relatively complex to create and work with such an engine. The level of expertise required to even understand an extraction engine that uses artificial intelligence and ontologies is much higher than what is required to deal with regular expressions.

- These types of engines are expensive to build. There are commercial offerings that will give you the basis for doing this type of data extraction, but you still need to configure them to work with the specific content domain you're targeting.

- You still have to deal with the data discovery portion of the process, which may not fit as well with this approach (meaning you may have to create an entirely separate engine to handle data discovery). Data discovery is the process of crawling web sites such that you arrive at the pages where you want to extract data.

When to use this approach: Typically you'll only get into ontologies and artificial intelligence when you're planning on extracting information from a very large number of sources. It also makes sense to do this when the data you're trying to extract is in a very unstructured format (e.g., newspaper classified ads). In cases where the data is very structured (meaning there are clear labels identifying the various data fields), it may make more sense to go with regular expressions or a screen-scraping application.

Screen-scraping software

Advantages:

- Abstracts most of the complicated stuff away. You can do some pretty sophisticated things in most screen-scraping applications without knowing anything about regular expressions, HTTP, or cookies.

- Dramatically reduces the amount of time required to set up a site to be scraped. Once you learn a particular screen-scraping application the amount of time it requires to scrape sites vs. other methods is significantly lowered.

- Support from a commercial company. If you run into trouble while using a commercial screen-scraping application, chances are there are support forums and help lines where you can get assistance.

Disadvantages:

- The learning curve. Each screen-scraping application has its own way of going about things. This may imply learning a new scripting language in addition to familiarizing yourself with how the core application works.

- A potential cost. Most ready-to-go screen-scraping applications are commercial, so you'll likely be paying in dollars as well as time for this solution.

- A proprietary approach. Any time you use a proprietary application to solve a computing problem (and proprietary is obviously a matter of degree) you're locking yourself into using that approach. This may or may not be a big deal, but you should at least consider how well the application you're using will integrate with other software applications you currently have. For example, once the screen-scraping application has extracted the data how easy is it for you to get to that data from your own code?

When to use this approach: Screen-scraping applications vary widely in their ease-of-use, price, and suitability to tackle a broad range of scenarios. Chances are, though, that if you don't mind paying a bit, you can save yourself a significant amount of time by using one. If you're doing a quick scrape of a single page you can use just about any language with regular expressions. If you want to extract data from hundreds of web sites that are all formatted differently you're probably better off investing in a complex system that uses ontologies and/or artificial intelligence. For just about everything else, though, you may want to consider investing in an application specifically designed for screen-scraping.

As an aside, I thought I should also mention a recent project we've been involved with that has actually required a hybrid approach of two of the aforementioned methods. We're currently working on a project that deals with extracting newspaper classified ads. The data in classifieds is about as unstructured as you can get. For example, in a real estate ad the term "number of bedrooms" can be written about 25 different ways. The data extraction portion of the process is one that lends itself well to an ontologies-based approach, which is what we've done. However, we still had to handle the data discovery portion. We decided to use screen-scraper for that, and it's handling it just great. The basic process is that screen-scraper traverses the various pages of the site, pulling out raw chunks of data that constitute the classified ads. These ads then get passed to code we've written that uses ontologies in order to extract out the individual pieces we're after. Once the data has been extracted we then insert it
into a database.

Source:http://ezinearticles.com/?Three-Common-Methods-For-Web-Data-Extraction&id=165416

Tuesday, 25 February 2014

An Easy Way For Data Extraction

There are so many data scraping tools are available in internet. With these tools you can you download large amount of data without any stress. From the past decade, the internet revolution has made the entire world as an information center. You can obtain any type of information from the internet. However, if you want any particular information on one task, you need search more websites. If you are interested in download all the information from the websites, you need to copy the information and pate in your documents. It seems a little bit hectic work for everyone. With these scraping tools, you can save your time, money and it reduces manual work.

The Web data extraction tool will extract the data from the HTML pages of the different websites and compares the data. Every day, there are so many websites are hosting in internet. It is not possible to see all the websites in a single day. With these data mining tool, you are able to view all the web pages in internet. If you are using a wide range of applications, these scraping tools are very much useful to you.

The data extraction software tool is used to compare the structured data in internet. There are so many search engines in internet will help you to find a website on a particular issue. The data in different sites is appears in different styles. This scraping expert will help you to compare the date in different site and structures the data for records.

And the web crawler software tool is used to index the web pages in the internet; it will move the data from internet to your hard disk. With this work, you can browse the internet much faster when connected. And the important use of this tool is if you are trying to download the data from internet in off peak hours. It will take a lot of time to download. However, with this tool you can download any data from internet at fast rate.There is another tool for business person is called email extractor. With this toll, you can easily target the customers email addresses. You can send advertisement for your product to the targeted customers at any time. This the best tool to find the database of the customers.

However, there are some more scraping tolls are available in internet. And also some of esteemed websites are providing the information about these tools. You download these tools by paying a nominal amount.

Source:http://ezinearticles.com/?An-Easy-Way-For-Data-Extraction&id=3517104

Monday, 24 February 2014

6 Beginner Tips For Creating A Solid Social Media Marketing Strategy

Most small business owners already know that if you’re not using social media marketing, you’re simply missing the boat. Facebook, Twitter, LinkedIn, YouTube, and many newcomers to the scene represent excellent ways to get the word out about your biz. With all of these sites at your disposal and all the methods with which to use them, however, the process can seem overwhelming. Instead of getting frustrated and giving up, know that there is a method to the madness – and embrace it. Read on to learn how to develop and maintain an effective social media strategy for your small business.

1. Start With the Most Successful Sites

Facebook and Twitter continue to maintain a foothold as two of the most popular social media websites, althoughPinterest and Google Plus are moving up rapidly. Unless there’s a major shift in the social media landscape, though, those first two websites are your best bets for launching a campaign. If you’re already there, work on maximizing your effectiveness on them. If you’re not, get started now.

2. Investigate Lesser Known Sites

Have you ever heard of StumbleUpon? New social media websites are popping up all the time and you never know where your next set of customers is going to come from. The more saturated the top platforms become, the harder it’s going to be to reach an audience on them – your voice may be more easily heard in smaller rooms. Of course, don’t take that as license to veer away from Facebook and Twitter, but do investigate these other sites as time permits.

3. Place a Key Focus on Content Quality

No matter where you go with your social strategy, content is always going to be key. Never post anything less than your best work. If it’s an image on Pinterest, make sure it’s high quality. If it’s a tweet, make those few words impactful. Just because you’re limited to 140 characters doesn’t mean quality should suffer. For all posts, draw upon your industry experience to provide lesser known details and advice, and once you come up with a posting schedule, scale it back if your quality begins to suffer. This point can’t be emphasized enough.

4. Track Your Efforts

It’s essential that you monitor the progress of your social media campaign so you know what’s working and what isn’t. Even though Facebook and Twitter do work for most small businesses, they might not work for you. UseHootSuite or Google Analytics to effectively keep up on the success of each of your individual campaigns.

5. Effectively Adjust Your Strategy

Next, act on your results. If Twitter isn’t giving you the boost you expected, you might not want to abandon it, just tweak your strategy or devote less of a focus to it. If a newer player like Tumblr or Reddit doesn’t show any signs of life, eliminate it and move on to something else like Instagram or Digg. Gathering data on your social strategy is important, but that does nothing if you don’t put it to good use.

6. Always Respond to Comments

No matter where you market via social media, you can’t realize any individual site’s full potential without responding to each and every comment. Even if it’s simply acknowledging and thanking a reader for taking the time, this can have a positive effect. If you encounter negative comments, jump on them immediately. These are only blemishes on your reputation if you do nothing about them. First off, be governed by the notion that the customer is always right.

There’s nothing more off-putting than a Twitter fight between a business owner and a patron, even if you’re sure you’re correct. Take this opportunity to acknowledge any grievances and make up for them ten-fold, publicly. Turn that complaint into an asset and you’ve not only won over that customer, but all the others who read the exchange.

Final Thoughts

No social media strategy can succeed without an appropriate amount of time devoted to it. If your budget doesn’t have room to hire a social media manager, you’re going to have to wear that hat yourself. In order to free up the needed time, organize your day, schedule your most difficult projects for when you’re at your best (either morning or evening) and eliminate any unnecessary interruptions.

Stop spending time on useless phone calls from telemarketers and other folks who don’t serve your business needs. Get yourself physically fit so you perform at a high level each and every day, and take your breaks. Don’t feel bad about going out for a walk or for lunch each day, because your business is going to benefit from your refreshed mind. Social media marketing is important, but only if you’re fully up to the task.

How did you go about creating your social strategy? Leave your tips in the comments below!

Source: http://www.business2community.com/social-media/6-beginner-tips-creating-solid-social-media-marketing-strategy-0783129#!wIkYk

Friday, 21 February 2014

The importance of high quality product data

If advertisers want to be truly multichannel then they need to have access to, and control of, their product data.

By extracting product data from several different sources, you can fulfil any required channel marketing

application.

Data can be extracted directly from your ecommerce site, existing data feeds or an API, and can then be distributed
into hundreds of different online channels, increasing the visibility of your products in front of online consumers.

However, it all hinges on having high-quality product data that is comprehensive, accurate and consumable.

Helen Southgate, UK Managing Director, Affilinet:

Overlooking quality - especially when it comes to data – is a big mistake…The correct data will drive customer
acquisition, incremental sales and contribute towards increasing the lifetime value of a customer. The wrong data
can impact brand reputation, growth and see an advertiser lose customers to a more savvy competitor.

Product data must be comprehensive

John Ashton, Digital Marketing Executive, Notonthehighstreet.com:

Having a product data feed that we can trust - that’s the most important thing. It means that we can be confident
that whoever accesses our products is getting the best, and most relevant, information...

Comprehensive data contains all the relevant product attributes for each unique, marketable product in your
inventory.

Product attributes include: price, description, images etc. and the most effective way of extracting rich product data
from ecommerce websites is through screen scraping as this tends to be the most reliable source of merchant
product information.

If attributes are missing from a product data feed consumers will not be able to see all product information. If this
happens, the advertiser loses credibility with the consumer as well as value, because their products cannot be
integrated into any channels that require those missing attributes.

To create a comprehensive product data set, product information should be gathered from more than one source,
e.g. data feeds, APIs and directly from an ecommerce website.

This ensures that no product attributes are missing and gives advertisers access to all the product data required for
their channel marketing initiatives.

Product data must be consumable

Chris Sheen, Head of Marketing, SaleCycle:

Product data is integral to SaleCycle's business, and the solutions we provide our clients. There are so many
different data sets which can influence your marketing decisions, from simple personal details (e.g. gender)
through to advanced demographic and modelling information (e.g. Mosaic) - but it's product level data which gives
us the clearest indication of a customer's buying intentions - both now and in the future.

Your product data must be in a usable format for marketing applications, taking attribute mapping and
transformation into consideration where necessary, so that partners, e.g. digital agencies and price comparison
sites, can use your product data.

It must also be in good order so that you can take advantage of new channel opportunities as and when they arise.

Consumable data is easily accessible and contains all necessary product attributes; this makes channel integration
simple and cost-effective, giving you more control over where your data is distributed. Data can be integrated as a
data feed or as part of an API that can be interpreted by those looking to use your data.

It can also be provided on an FTP site for download.

Optimising your data

Having comprehensive, accurate and consumable data enables the correct mapping and categorisation of your
product data. This makes it easier to integrate the data into online channels even if their menu categories are not
the same as those on your website.

Having product data which is clearly structured, labelled and formatted makes this process easier and it’s also
possible to combine or split product data to create new attributes, e.g. by taking attributes such as ‘colour’ or
‘gender’ from the product title.

This can also work the other way by combining individual attributes to optimise product titles or descriptions in
paid search automation.

High-quality data

Richard McKnight, Digital Marketing Manager, Chain Reaction Cycles:

With the online space becoming more competitive each year, one of the key areas that can position your business
ahead of competitors is quality data, not only to ensure your advertising channels are working correctly but also to
ensure relevant and efficient traffic is being driven from each.

Ultimately, you should always aim to have the highest quality data possible so that you can drive incremental sales
revenue through different channels and provide a consistent consumer experience of your products across
channels.

Having control of your product data enables you to create engaging content across various online channels
including: display advertising, marketplaces (Amazon, eBay etc.), Google Shopping, Price Comparison Search (CSEs),
behavioural retargeting and social media (Facebook).

If data is comprehensive, accurate and consumable it gives you the ability to be creative and flexible with your
data, displaying your products across multiple channels to reach the greatest number of consumers and give them
an optimised buying experience on your site.

Source: http://econsultancy.com/blog/64322-the-importance-of-high-quality-product-data

Monday, 18 November 2013

Data scraping tool for non-coding journalists launches

A tool which helps non-coding journalists scrape data from websites has launched in public beta today.

Import.io lets you extract data from any website into a spreadsheet simply by mousing over a few rows of information.

Until now import.io, which we reported on back in April, has been available in private developer preview and has been Windows only. It is now also available for Mac and is open to all.

Although import.io plans to charge for some services at a later date, there will always be a free option.

The London-based start-up is trying to solve the problem of the fact that there is "lots of data on the web, but it's difficult to get at", Andrew Fogg, founder of import.io, said in a webinar last week.

Those with the know-how can write a scraper or use an API to get at data, Fogg said. "But imagine if you could turn any website into a spreadsheet or API."

Uses for journalists

Journalists can find stories in data. For example, if I wanted to do a story on the type of journalism jobs being advertised and the salaries offered, I could research this by looking at various websites which advertise journalism jobs.

If I were to gather the data from four different jobs boards and enter the information manually into a spreadsheet it would take would take hours if not days; if I were to write a screen scraper for each of the sites it would require knowledge and would probably take a couple of hours. Using import.io I can create a single dataset from multiple sources in a few minutes.

I can then search and sort the dataset and find out different facts, such as how many unpaid internships are advertised, or how many editors are currently being sought.

How it works

When you download the import.io application you see a web browser. This browser allows you to enter a URL for any site you want to scrape data from.

To take the example of the jobs board, this is structured data, with the job role, description and salaries displayed.

The first step is to set up 'connectors' and to do this you need to teach the system where the data is on the page. This is done by hitting a 'record' button on the right of the browser window and mousing over a few examples, in this case advertised jobs. You then click 'train rows'.

It takes between two and five examples to teach import.io where all of the rows are, Fogg explained in the webinar.

The next step is to declare the type of data and add column names. For example there may be columns for 'job title', 'job description' and 'salary'. Data is then extracted into the table below the browser window.

Data from different websites can then be "mixed" into a single searchable database.

In the example used in the webinar, Fogg demonstrated how import.io could take data relating to rucksacks for sale on a shopping website. The tool can learn the "extraction pattern", Fogg explained, and apply that to to another product. So rather than mousing over the different rows of sleeping bags advertised, for example, import.io was automatically able to detect where the price and product details were on the page as it had learnt the structure from how the rucksacks were organised. The really smart bit is that the data from all products can then be automatically scraped and pulled into the spreadsheet. You can then search 'shoes' and find the data has already been pulled into your database.

When a site changes its code a screen scraper would become ineffective. Import.io has a "resilience to change", Fogg said. It runs tests twice a day and users get notified of any changes and can retrain a connector.

It is worth noting that a site that has been scraped will be able to detect that import.io has extracted the data as it will appear in the source site's web logs.

Case studies

A few organisations have already used import.io for data extraction. Fogg outlined three.

    British Red Cross

The British Red Cross wanted to create an iPhone app with data from the NHS Choices website. The NHS wanted the charity to use the data but the health site does not have an API.

By using import.io, data was scraped from the NHS site. The app is now in the iTunes store and users can use it to enter a postcode to find hospital information based on the data from the NHS site.

"It allowed them to build an API for a website where there wasn't one," Fogg said.

    Hewlett Packard

Fogg explained that Hewlett Packard wanted to monitor the prices of its laptops on retailers' websites.

They used import.io to scrape the data from the various sites and were able monitor the prices at which the laptops were being sold in real-time.

    Recruitment site

A US recruitment firm wanted to set up a system so that when any job vacancy appeared on a competitor's website, they could extract the details and push that into their Salesforce software. The initial solution was to write scrapers, Fogg said, but this was costly and in the end they gave up. Instead they used import.io to scrape the sites and collate the data.


Source: http://www.journalism.co.uk/news/data-scraping-tool-for-non-coding-journalists-launches/s2/a554002/