Giter Club home page Giter Club logo

ezscraper's Introduction

EzScraper

This is a Python package that converts HTML tables to CSV files. It provides a simple and efficient way to extract data from tables and store it in CSV format.

Installation

You can install the package using pip:

pip install EzScraper

Usage

The package provides a table_to_csv class that you can use to extract tables from HTML pages and convert them to CSV files. Here's an example:

from EzScraper import table_to_csv

url = "https://www.worldometers.info/coronavirus/"
crawle = table_to_csv(url=url, file_name="my_table")
crawle.extract_tables()

This will extract all tables from the specified URL and save each one as a separate CSV file in the current working directory. You can also specify the index of the table you want to extract using the index parameter:

table_to_csv(url, all=False, index=2, file_name='my_table')

This will extract the third table from the specified URL and save it as a CSV file with the name "my_table.csv" in the current working directory.

You can also use the file_name parameter to specify the name of the CSV file. If you don't specify a name, the package will generate a unique name based on the current date and time.

table_to_csv(url, all=True, index=False, file_name='my_data')

This will extract all tables from the specified URL and save them as CSV files with names like "my_data.csv", "my_data_1.csv", "my_data_2.csv", etc.

Contributing

If you want to contribute to the package, please fork the repository, make your changes, and submit a pull request. Please include tests for any new features or bug fixes you add.

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.