Metadata-Version: 2.1
Name: pj-scraper
Version: 0.0.4
Summary: none
Home-page: https://github.com/mdhor/pj-scraper
Author: Mattias Hornum
Author-email: mattiashornum@gmail.com
License: MIT
Project-URL: Changelog, https://github.com/mdhor/pj-scraper/blob/master/CHANGELOG.rst
Project-URL: Issue Tracker, https://github.com/mdhor/pj-scraper/issues
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Requires-Dist: pandas
Requires-Dist: beautifulsoup4
Requires-Dist: requests
Requires-Dist: openpyxl

========
Overview
========



none

* Free software: MIT license

Installation
============

::

    pip install pj-scraper

Documentation
=============


To use the project:

.. code-block:: python

    from pj_scraper.scraper import Scraper
    s = Scraper()
    products = s.get_all_products_from_category("smartklokker")
    sellers_and_prices = s.get_sellers_and_prices_of_product_list(
        products["product_number"]
    )


Changelog
=========

0.0.0 (2021-04-09)
------------------

* First release on PyPI.


