SlideShare a Scribd company logo
1 of 28
Download to read offline
Scraping Data from
Documents and the Web
Tommy Tavenner
National Wildlife Federation
What is it?
© 2014 Tommy Tavenner
What is Scraping?
• Converting data from human readable into machine readable
• This data is sometimes referred to as ‘unstructured’ but is really
just not structured properly for systematic parsing
• The data is often embedded in layers of formatting meta data.
Think HTML or PDF formatting like font colors and tables.
• The job of the scraper is to separate the data from the
formatting. In some cases even using the formatting to interpret
the data.
© 2014 Tommy Tavenner
Is it Legal?
© 2014 Tommy Tavenner
Maybe!
© 2014 Tommy Tavenner
Is Scraping Legal?
• It depends
• Most publically available data in the US falls within the sphere
of copyright protection.
> Creativity in producing the source data
> The manner in which the data is presented
> Fair Use on the web
• What is the purpose of the scraping?
© 2014 Tommy Tavenner
Is Scraping Legal?
• Terms of Service
> Does it explicitly prohibit scraping?
> Does it prohibit storing information privately?
© 2014 Tommy Tavenner
Is Scraping Legal?
• Feist v. Rural Telephone (1991)
> Feist, a phone book compiler in Kansas, copied the contents of
Rural Telephone’s directory after Rural refused to license the
information.
> Rural sued Feist for copyright infringement. Because of the nature
of the information, the case eventually made it to the supreme
court.
> The case centered on originality and whether compiling facts
constitutes an original work.
> The court ruled that the phone directory did not constitute and
original compilation because no discretion was exercised in
deciding on contents.
© 2014 Tommy Tavenner
Is Scraping Legal?
• LinkedIn case (2014)
> Suing a group of unknown defendants in California.
> LinkedIn alleges that this group used a series of bots and fake
profiles on the site to scrape content from other member profiles
> The case is based on the Digital Millennium Copyright Act.
© 2014 Tommy Tavenner
Jargon
• Spider – Searches for links within content and follows, building
up a site map or web of content.
• Crawler – Synonym for Spider
• Training Data – Like in supervised machine learning, training
data is used to teach a spider how to interpret the content they
will be processing.
• IP Proxy/Switching – Regular switching of IP address used to
bypass restrictions on the number of connections per client set
by web servers. May be a sign of less than legal or honorable
intent in scraping.
© 2014 Tommy Tavenner
Anatomy of a Scraper
Document Load
• Pull in the
complete web
page, PDF, XML,
etc.
Parsing
• Parse the HTML,
XML, or PDF meta
data into
something the
script can
understand
Extraction
• Use the results of
parsing to extract
the data we are
looking for
Transformation
•Convert the
data into
useful formats,
i.e. currency,
dates, etc.
© 2014 Tommy Tavenner
Anatomy of a Scraper
Document
Load
• Load the entire document or HTML
page. Generally as a string of
characters.
• For larger documents this may involve
splitting it into multiple pages
© 2014 Tommy Tavenner
Anatomy of a Scraper
Parsing
• Interpret the document to make searching
possible.
• Biggest potential failure point
• Specific to the source data.
• HTML Document Object Model
• PDF Grid Model
© 2014 Tommy Tavenner
Anatomy of a Scraper
Extraction
• Search parsed data for particular
pieces of information
• i.e. file name, link, or table
• Separate data into individual pieces for
later processing
© 2014 Tommy Tavenner
Anatomy of a Scraper
Transformation
• Convert data into proper output
• Apply standards
• Change type
• i.e. date string date
© 2014 Tommy Tavenner
Visual Scraping tools
• Require no programming knowledge
• Primarily web-based
• Allow quick access to data
• Because they are not bespoke may require more scrubbing of
the data after scraping
© 2014 Tommy Tavenner
ScraperWiki
• Paid Service with very basic free plan
• Focused on table extraction and Twitter data
• Takes a single page or document as its source
© 2014 Tommy Tavenner
ScraperWiki
• Allows you to quickly access the data or summarize it.
• Works well with PDF’s of tables but struggles with mixed data.
© 2014 Tommy Tavenner
Import.io
• In early stages, currently free with professional accounts
• Downloadable Java app – multi-platform
• Focused more on crawling sites to build up data sources
• Offers limited training or refining abilities to make sure it
extracts data correctly.
• Enables access to the data source either as a downloadable
file or as an API.
© 2014 Tommy Tavenner
Import.io
• Data can be extracted either for a single page or a full site
© 2014 Tommy Tavenner
Import.io
Scrapinghub
• Designed for much larger scraping jobs, including multi-site
© 2014 Tommy Tavenner
Scrapinghub
• Sits somewhere between a visual scraper and a scraping
library.
• Custom scrapers may be developed in Python and hosted by
Scrapinghub
• The autoscraper allows annotating pages and training the
scraper
• The crawler starts with a single page and works out from there
following links on the pages it finds and quickly building large
databases.
© 2014 Tommy Tavenner
Scraping with a scripting language
• Libraries are available in most languages.
• Primarily make it easier to understand a certain format, i.e.
HTML or PDF.
• Require strong knowledge of the language
• Require more fine tuning but result in much higher quality data
© 2014 Tommy Tavenner
R
• scrapeR – for parsing HTML/XML
• XML package – for parsing HTML/XML
• tm – for parsing PDFs using Xpdf or Poppler engines
© 2014 Tommy Tavenner
Python
• ScraperWiki
• Scrapy
• BeautifulSoup – for parsing HTML
• XPath
• PDFMiner – for parsing PDFs
© 2014 Tommy Tavenner
PHP
• Simple HTML DOM
• PDF Parser
© 2014 Tommy Tavenner
Javascript
• NodeJS using Request and Cheerio
• jsPDF
• pdf2json
© 2014 Tommy Tavenner

More Related Content

What's hot (20)

Web scraping in python
Web scraping in python Web scraping in python
Web scraping in python
 
Web mining
Web miningWeb mining
Web mining
 
What is web scraping?
What is web scraping?What is web scraping?
What is web scraping?
 
Introduction to Web Scraping using Python and Beautiful Soup
Introduction to Web Scraping using Python and Beautiful SoupIntroduction to Web Scraping using Python and Beautiful Soup
Introduction to Web Scraping using Python and Beautiful Soup
 
Tutorial on Web Scraping in Python
Tutorial on Web Scraping in PythonTutorial on Web Scraping in Python
Tutorial on Web Scraping in Python
 
Web mining
Web miningWeb mining
Web mining
 
What is Web-scraping?
What is Web-scraping?What is Web-scraping?
What is Web-scraping?
 
Search Engine
Search EngineSearch Engine
Search Engine
 
Web mining
Web miningWeb mining
Web mining
 
Web Scraping Basics
Web Scraping BasicsWeb Scraping Basics
Web Scraping Basics
 
Skillshare - Introduction to Data Scraping
Skillshare - Introduction to Data ScrapingSkillshare - Introduction to Data Scraping
Skillshare - Introduction to Data Scraping
 
web mining
web miningweb mining
web mining
 
Web scraping
Web scrapingWeb scraping
Web scraping
 
WEB Scraping.pptx
WEB Scraping.pptxWEB Scraping.pptx
WEB Scraping.pptx
 
Web scraping & browser automation
Web scraping & browser automationWeb scraping & browser automation
Web scraping & browser automation
 
Semantic web
Semantic webSemantic web
Semantic web
 
Web Content Mining
Web Content MiningWeb Content Mining
Web Content Mining
 
Web Scraping
Web ScrapingWeb Scraping
Web Scraping
 
Web crawler
Web crawlerWeb crawler
Web crawler
 
Web Crawling & Crawler
Web Crawling & CrawlerWeb Crawling & Crawler
Web Crawling & Crawler
 

Similar to Scraping Data from Documents and the Web

Similar to Scraping Data from Documents and the Web (20)

Module 5 and 6
Module 5 and 6Module 5 and 6
Module 5 and 6
 
Internet
InternetInternet
Internet
 
1. web technology basics
1. web technology basics1. web technology basics
1. web technology basics
 
Internet &web technology
 Internet &web technology Internet &web technology
Internet &web technology
 
Module 3
Module 3Module 3
Module 3
 
Basics concepts of internet.ppt
Basics concepts of internet.pptBasics concepts of internet.ppt
Basics concepts of internet.ppt
 
Internet
InternetInternet
Internet
 
Internet
InternetInternet
Internet
 
Intro. to the internet and web
Intro. to the internet and webIntro. to the internet and web
Intro. to the internet and web
 
An Introduction To World Wide Web
An Introduction To World Wide WebAn Introduction To World Wide Web
An Introduction To World Wide Web
 
Internet
InternetInternet
Internet
 
Internet.ppt
Internet.pptInternet.ppt
Internet.ppt
 
Internet and Web - Week 9.ppt
Internet and Web - Week 9.pptInternet and Web - Week 9.ppt
Internet and Web - Week 9.ppt
 
Internet
InternetInternet
Internet
 
Internet.ppt
Internet.pptInternet.ppt
Internet.ppt
 
Introduction_to_Intndhjehddhjdhrjkrhernet.pptx
Introduction_to_Intndhjehddhjdhrjkrhernet.pptxIntroduction_to_Intndhjehddhjdhrjkrhernet.pptx
Introduction_to_Intndhjehddhjdhrjkrhernet.pptx
 
Internet
InternetInternet
Internet
 
internet
internetinternet
internet
 
Internet
InternetInternet
Internet
 
Web Technology Part 1
Web Technology Part 1Web Technology Part 1
Web Technology Part 1
 

Recently uploaded

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 

Recently uploaded (20)

"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 

Scraping Data from Documents and the Web

  • 1. Scraping Data from Documents and the Web Tommy Tavenner National Wildlife Federation
  • 2. What is it? © 2014 Tommy Tavenner
  • 3. What is Scraping? • Converting data from human readable into machine readable • This data is sometimes referred to as ‘unstructured’ but is really just not structured properly for systematic parsing • The data is often embedded in layers of formatting meta data. Think HTML or PDF formatting like font colors and tables. • The job of the scraper is to separate the data from the formatting. In some cases even using the formatting to interpret the data. © 2014 Tommy Tavenner
  • 4. Is it Legal? © 2014 Tommy Tavenner
  • 6. Is Scraping Legal? • It depends • Most publically available data in the US falls within the sphere of copyright protection. > Creativity in producing the source data > The manner in which the data is presented > Fair Use on the web • What is the purpose of the scraping? © 2014 Tommy Tavenner
  • 7. Is Scraping Legal? • Terms of Service > Does it explicitly prohibit scraping? > Does it prohibit storing information privately? © 2014 Tommy Tavenner
  • 8. Is Scraping Legal? • Feist v. Rural Telephone (1991) > Feist, a phone book compiler in Kansas, copied the contents of Rural Telephone’s directory after Rural refused to license the information. > Rural sued Feist for copyright infringement. Because of the nature of the information, the case eventually made it to the supreme court. > The case centered on originality and whether compiling facts constitutes an original work. > The court ruled that the phone directory did not constitute and original compilation because no discretion was exercised in deciding on contents. © 2014 Tommy Tavenner
  • 9. Is Scraping Legal? • LinkedIn case (2014) > Suing a group of unknown defendants in California. > LinkedIn alleges that this group used a series of bots and fake profiles on the site to scrape content from other member profiles > The case is based on the Digital Millennium Copyright Act. © 2014 Tommy Tavenner
  • 10. Jargon • Spider – Searches for links within content and follows, building up a site map or web of content. • Crawler – Synonym for Spider • Training Data – Like in supervised machine learning, training data is used to teach a spider how to interpret the content they will be processing. • IP Proxy/Switching – Regular switching of IP address used to bypass restrictions on the number of connections per client set by web servers. May be a sign of less than legal or honorable intent in scraping. © 2014 Tommy Tavenner
  • 11. Anatomy of a Scraper Document Load • Pull in the complete web page, PDF, XML, etc. Parsing • Parse the HTML, XML, or PDF meta data into something the script can understand Extraction • Use the results of parsing to extract the data we are looking for Transformation •Convert the data into useful formats, i.e. currency, dates, etc. © 2014 Tommy Tavenner
  • 12. Anatomy of a Scraper Document Load • Load the entire document or HTML page. Generally as a string of characters. • For larger documents this may involve splitting it into multiple pages © 2014 Tommy Tavenner
  • 13. Anatomy of a Scraper Parsing • Interpret the document to make searching possible. • Biggest potential failure point • Specific to the source data. • HTML Document Object Model • PDF Grid Model © 2014 Tommy Tavenner
  • 14. Anatomy of a Scraper Extraction • Search parsed data for particular pieces of information • i.e. file name, link, or table • Separate data into individual pieces for later processing © 2014 Tommy Tavenner
  • 15. Anatomy of a Scraper Transformation • Convert data into proper output • Apply standards • Change type • i.e. date string date © 2014 Tommy Tavenner
  • 16. Visual Scraping tools • Require no programming knowledge • Primarily web-based • Allow quick access to data • Because they are not bespoke may require more scrubbing of the data after scraping © 2014 Tommy Tavenner
  • 17. ScraperWiki • Paid Service with very basic free plan • Focused on table extraction and Twitter data • Takes a single page or document as its source © 2014 Tommy Tavenner
  • 18. ScraperWiki • Allows you to quickly access the data or summarize it. • Works well with PDF’s of tables but struggles with mixed data. © 2014 Tommy Tavenner
  • 19. Import.io • In early stages, currently free with professional accounts • Downloadable Java app – multi-platform • Focused more on crawling sites to build up data sources • Offers limited training or refining abilities to make sure it extracts data correctly. • Enables access to the data source either as a downloadable file or as an API. © 2014 Tommy Tavenner
  • 20. Import.io • Data can be extracted either for a single page or a full site © 2014 Tommy Tavenner
  • 22. Scrapinghub • Designed for much larger scraping jobs, including multi-site © 2014 Tommy Tavenner
  • 23. Scrapinghub • Sits somewhere between a visual scraper and a scraping library. • Custom scrapers may be developed in Python and hosted by Scrapinghub • The autoscraper allows annotating pages and training the scraper • The crawler starts with a single page and works out from there following links on the pages it finds and quickly building large databases. © 2014 Tommy Tavenner
  • 24. Scraping with a scripting language • Libraries are available in most languages. • Primarily make it easier to understand a certain format, i.e. HTML or PDF. • Require strong knowledge of the language • Require more fine tuning but result in much higher quality data © 2014 Tommy Tavenner
  • 25. R • scrapeR – for parsing HTML/XML • XML package – for parsing HTML/XML • tm – for parsing PDFs using Xpdf or Poppler engines © 2014 Tommy Tavenner
  • 26. Python • ScraperWiki • Scrapy • BeautifulSoup – for parsing HTML • XPath • PDFMiner – for parsing PDFs © 2014 Tommy Tavenner
  • 27. PHP • Simple HTML DOM • PDF Parser © 2014 Tommy Tavenner
  • 28. Javascript • NodeJS using Request and Cheerio • jsPDF • pdf2json © 2014 Tommy Tavenner