Coder Social home page Coder Social logo

title-squeezer's Introduction

Title-Squeezer

This is a simple Python program that reads in an HTML page, parses it and try to figure out the title and description of this page.

This program tries to read as less as possible and consume less CPU and memory than other HTML parsers.

Usage

curl -L -s --compressed https://www.yahoo.com/ | ./title_squeezer.py -v

Using -v will print out every HTML tag it successfully parses.

Programmable Interface

>>> import title_squeezer
# First construct a Squeezer instance
>>> squeezer = title_squeezer.Squeezer()
# Then feed in HTML data
>>> squeezer.feed(b'<html><head><title>Hello wo')
Title(
    enough=False,
    title='Hello wo',
    description=None,
    charset=None
)
# Feed more data
>>> squeezer.feed(b'rld!</title></head>')
Title(
    enough=True,
    title='Hello world!',
    description=None,
    charset=None
)

License

The original author of this program, Title-Squeezer, is StarBrilliant. This file is released under General Public License version 3. You should have received a copy of General Public License text alongside with this program. If not, you can obtain it at http://gnu.org/copyleft/gpl.html . This program comes with no warranty, the author will not be resopnsible for any damage or problems caused by this program.

title-squeezer's People

Contributors

m13253 avatar

Watchers

James Cloos avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.