Python module to get table data from any webpage and converts it into either Json or Csv
Project description
ScrapeData
Python module to get table data from any webpage and converts it into either Json or Csv
Installation
Supported python version is 3.0+
pip3 install ScrapeData
Usage
There are 4 functions exposed which will do all the work for you available in TableParser
1. toJsonByClass(URL, tagClass, orientation, tagId = "table")
2. toJsonByIndex(URL, tagIndex, orientation, tagId = "table")
3. toCsvByClass(URL, tagClass, fileName, tagId = "table")
4. toCsvByIndex(URL, tagIndex, fileName, tagId = "table")
- URL :- The url from where table needs to fetched
- tagClass :- if there is any class associated with tag
- tagIndex :- the occurance index of the table you want to fetch.
- tagId :- the html tag which is by default table (optional value)
- orientation :-
‘split’ : dict like {‘index’ -> [index], ‘columns’ -> [columns], ‘data’ -> [values]}
‘records’ : list like [{column -> value}, … , {column -> value}]
‘index’ : dict like {index -> {column -> value}}
‘columns’ : dict like {column -> {index -> value}}
‘values’ : just the values array
‘table’ : dict like {‘schema’: {schema}, ‘data’: {data}} describing the data, and the data component is like orient='records'.
There are other functions available in Utils if you want to customize the implementation.
1. getDataFromUrl(url)
2. parseDataUsingHtmlParser(page)
3. findTableByClass(soup, tagId, tagClass)
4. findTableByIndex(soup, tagId, tagIndex)
5. convertTableToList(table)
6. convertListToJson(dataList, orientation = 'none')
7. convertListToCsv(dataList, fileName)
Example Code
from ScrapeData import TableParser as parser
from ScrapeData import Utils
URL = 'https://www.w3schools.com/python/module_requests.asp'
tableClass = 'w3-table-all notranslate'
print(parser.toJsonByClass(URL, tableClass, 'records'))
print(parser.toJsonByIndex(URL, 0, 'records'))
print(parser.toCsvByIndex(URL, 0, 'records.csv'))
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ScrapeData-0.0.6-py3-none-any.whl.
File metadata
- Download URL: ScrapeData-0.0.6-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/44.1.1 requests-toolbelt/0.9.1 tqdm/4.48.0 CPython/2.7.17
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c53338ed21a3db5776cc5b4e2b41a3eadf846749a47afd67df42d0b3f00666a
|
|
| MD5 |
99fbbeb239b5ea3ef1f8154d9b07e5f6
|
|
| BLAKE2b-256 |
e642213247f9909a36c4107dcb45c5a60400815e79d53b6da29fe0d80014cc65
|