my_webscrapping
Science Score: 49.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 6 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.3%) to scientific vocabulary
Last synced: 10 months ago
·
JSON representation
Repository
Basic Info
- Host: GitHub
- Owner: EnigmaGlimmer
- License: gpl-3.0
- Language: Python
- Default Branch: master
- Size: 22.9 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
- Releases: 0
Created over 2 years ago
· Last pushed over 2 years ago
Metadata Files
Readme
Changelog
Contributing
Funding
License
Citation
README.rst
A Python package & command-line tool to gather text on the Web
==============================================================
.. image:: docs/trafilatura-logo.png
:alt: Logo as PNG image
:align: center
:width: 60%
|
.. image:: https://img.shields.io/pypi/v/trafilatura.svg
:target: https://pypi.python.org/pypi/trafilatura
:alt: Python package
.. image:: https://img.shields.io/pypi/pyversions/trafilatura.svg
:target: https://pypi.python.org/pypi/trafilatura
:alt: Python versions
.. image:: https://readthedocs.org/projects/trafilatura/badge/?version=latest
:target: http://trafilatura.readthedocs.org/en/latest/?badge=latest
:alt: Documentation Status
.. image:: https://img.shields.io/codecov/c/github/adbar/trafilatura.svg
:target: https://codecov.io/gh/adbar/trafilatura
:alt: Code Coverage
.. image:: https://static.pepy.tech/badge/trafilatura/month
:target: https://pepy.tech/project/trafilatura
:alt: Downloads
.. image:: https://img.shields.io/badge/DOI-10.18653%2Fv1%2F2021.acl--demo.15-blue
:target: https://aclanthology.org/2021.acl-demo.15/
:alt: Reference DOI: 10.18653/v1/2021.acl-demo.15
|
.. image:: docs/trafilatura-demo.gif
:alt: Demo as GIF image
:align: center
:width: 85%
:target: https://trafilatura.readthedocs.org/
Description
-----------
Trafilatura is a **Python package and command-line tool** designed to gather text on the Web. It includes discovery, extraction and text processing components. Its main applications are **web crawling, downloads, scraping, and extraction** of main texts, metadata and comments. It aims at staying **handy and modular**: no database is required, the output can be converted to various commonly used formats.
Going from raw HTML to essential parts can alleviate many problems related to text quality, first by avoiding the **noise caused by recurring elements** (headers, footers, links/blogroll etc.) and second by including information such as author and date in order to **make sense of the data**. The extractor tries to strike a balance between limiting noise (precision) and including all valid parts (recall). It also has to be **robust and reasonably fast**, it runs in production on millions of documents.
This tool can be **useful for quantitative research** in corpus linguistics, natural language processing, computational social science and beyond: it is relevant to anyone interested in data science, information extraction, text mining, and scraping-intensive use cases like search engine optimization, business analytics or information security.
Features
~~~~~~~~
- Web crawling and text discovery:
- Focused crawling and politeness rules
- Support for sitemaps (TXT, XML) and feeds (ATOM, JSON, RSS)
- URL management (blacklists, filtering and de-duplication)
- Seamless and parallel processing, online and offline:
- URLs, HTML files or parsed HTML trees usable as input
- Efficient and polite processing of download queues
- Conversion of previously downloaded files
- Robust and efficient extraction:
- Main text (with LXML, common patterns and generic algorithms: jusText, fork of readability-lxml)
- Metadata (title, author, date, site name, categories and tags)
- Formatting and structural elements: paragraphs, titles, lists, quotes, code, line breaks, in-line text formatting
- Comments (if applicable)
- Output formats:
- Text (minimal formatting or Markdown)
- CSV (with metadata, `tab-separated values `_)
- JSON (with metadata)
- XML (with metadata, text formatting and page structure) and `TEI-XML `_
- Optional add-ons:
- Language detection on extracted content
- Graphical user interface (GUI)
- Speed optimizations
Evaluation and alternatives
~~~~~~~~~~~~~~~~~~~~~~~~~~~
For more detailed results see the `benchmark `_ and `evaluation script `_. To reproduce the tests just clone the repository, install all necessary packages and run the evaluation script with the data provided in the *tests* directory.
=============================== ========= ========== ========= ========= ======
750 documents, 2236 text & 2250 boilerplate segments (2022-05-18), Python 3.8
--------------------------------------------------------------------------------
Python Package Precision Recall Accuracy F-Score Diff.
=============================== ========= ========== ========= ========= ======
html_text 0.5.2 0.529 **0.958** 0.554 0.682 2.2x
inscriptis 2.2.0 (html to txt) 0.534 **0.959** 0.563 0.686 3.5x
newspaper3k 0.2.8 0.895 0.593 0.762 0.713 12x
justext 3.0.0 (custom) 0.865 0.650 0.775 0.742 5.2x
boilerpy3 1.0.6 (article mode) 0.814 0.744 0.787 0.777 4.1x
*baseline (text markup)* 0.757 0.827 0.781 0.790 **1x**
goose3 3.1.9 **0.934** 0.690 0.821 0.793 22x
readability-lxml 0.8.1 0.891 0.729 0.820 0.801 5.8x
news-please 1.5.22 0.898 0.734 0.826 0.808 61x
readabilipy 0.2.0 0.877 0.870 0.874 0.874 248x
trafilatura 1.2.2 (standard) 0.914 0.904 **0.910** **0.909** 7.1x
=============================== ========= ========== ========= ========= ======
Other evaluations:
^^^^^^^^^^^^^^^^^^
- Most efficient open-source library in *ScrapingHub*'s `article extraction benchmark `_
- Best overall tool according to Gal Lejeune & Adrien Barbaresi, `Bien choisir son outil d'extraction de contenu partir du Web `_ (2020, PDF, French)
Usage and documentation
-----------------------
For more information please refer to `the documentation `_:
- `Installation `_
- Usage: `On the command-line `_, `With Python `_, `With R `_
- `Core Python functions `_
- Python Notebook `Trafilatura Overview `_
- `Tutorials `_
- `Text embedding for vector search `_
- `Custom web corpus `_
- `Word frequency list `_
For video tutorials see this Youtube playlist:
- `Web scraping how-tos and tutorials `_
License
-------
*Trafilatura* is distributed under the `GNU General Public License v3.0 `_. If you wish to redistribute this library but feel bounded by the license conditions please try interacting `at arms length `_, `multi-licensing `_ with `compatible licenses `_, or `contacting me `_.
See also `GPL and free software licensing: What's in it for business? `_
Context
-------
Contributing
~~~~~~~~~~~~
Contributions are welcome! See `CONTRIBUTING.md `_ for more information. Bug reports can be filed on the `dedicated page `_.
Many thanks to the `contributors `_ who submitted features and bugfixes!
Roadmap
~~~~~~~
For planned enhancements and relevant milestones see `issues page `_.
Author
~~~~~~
This effort is part of methods to derive information from web documents in order to build `text databases for research `_ (chiefly linguistic analysis and natural language processing). Extracting and pre-processing web texts to the exacting standards of scientific research presents a substantial challenge for those who conduct such research. Web corpus construction involves numerous design decisions, and this software package can help facilitate text data collection and enhance corpus quality.
- Barbaresi, A. `Trafilatura: A Web Scraping Library and Command-Line Tool for Text Discovery and Extraction `_, Proceedings of ACL/IJCNLP 2021: System Demonstrations, 2021, p. 122-131.
- Barbaresi, A. "`Generic Web Content Extraction with Open-Source Software `_", Proceedings of KONVENS 2019, Kaleidoscope Abstracts, 2019.
- Barbaresi, A. "`Efficient construction of metadata-enhanced web corpora `_", Proceedings of the `10th Web as Corpus Workshop (WAC-X) `_, 2016.
.. image:: https://img.shields.io/badge/DOI-10.18653%2Fv1%2F2021.acl--demo.15-blue
:target: https://aclanthology.org/2021.acl-demo.15/
:alt: Reference DOI: 10.18653/v1/2021.acl-demo.15
.. image:: https://zenodo.org/badge/DOI/10.5281/zenodo.3460969.svg
:target: https://doi.org/10.5281/zenodo.3460969
:alt: Zenodo archive DOI: 10.5281/zenodo.3460969
.. code-block:: shell
@inproceedings{barbaresi-2021-trafilatura,
title = {{Trafilatura: A Web Scraping Library and Command-Line Tool for Text Discovery and Extraction}},
author = "Barbaresi, Adrien",
booktitle = "Proceedings of the Joint Conference of the 59th Annual Meeting of the Association for Computational Linguistics and the 11th International Joint Conference on Natural Language Processing: System Demonstrations",
pages = "122--131",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2021.acl-demo.15",
year = 2021,
}
You can contact me via my `contact page `_ or on `GitHub `_.
Software ecosystem
~~~~~~~~~~~~~~~~~~
.. image:: docs/software-ecosystem.png
:alt: Software ecosystem
:align: center
:width: 65%
*Trafilatura*: `Italian word `_ for `wire drawing `_.
`Known uses of the software `_.
Corresponding posts on `Bits of Language `_ (blog).
Owner
- Login: EnigmaGlimmer
- Kind: user
- Repositories: 1
- Profile: https://github.com/EnigmaGlimmer
GitHub Events
Total
- Watch event: 3
Last Year
- Watch event: 3
Dependencies
.github/workflows/codeql.yml
actions
- actions/checkout v3 composite
- github/codeql-action/analyze v2 composite
- github/codeql-action/autobuild v2 composite
- github/codeql-action/init v2 composite
.github/workflows/tests.yml
actions
- actions/cache v2 composite
- actions/checkout v3 composite
- actions/setup-python v4 composite
- codecov/codecov-action v3 composite
docs/requirements.txt
pypi
- docutils >=0.20.1
- pydata-sphinx-theme >=0.14.4
- sphinx >=7.2.6
- sphinx-sitemap *
- trafilatura *
setup.py
pypi
- certifi *
- charset_normalizer *
- courlan *
- htmldate *
- importlib_metadata *
- justext *
- lxml *
- see *
- urllib3 *
tests/eval-requirements.txt
pypi
- beautifulsoup4 ==4.12.1 test
- boilerpy3 ==1.0.6 test
- goose3 ==3.1.13 test
- html-text ==0.5.2 test
- html2text ==2020.1.16 test
- inscriptis ==2.3.2 test
- justext ==3.0.0 test
- news-please ==1.5.22 test
- newspaper3k ==0.2.8 test
- readabilipy ==0.2.0 test
- readability-lxml ==0.8.1 test
- resiliparse ==0.14.3 test
- trafilatura ==1.5.0 test