Skip to content

Commit

Permalink
v.1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GiorgosXou committed Aug 5, 2024
1 parent ed49324 commit f4e878d
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v.DEVELOPMENT

> [!NOTE]
> **[CHANGELOG.md is archived, from now on version-logs are at releases](https://github.com/GiorgosXou/untappdscr/releases)**

# v.1.0.3
* **FIXED:** `install_requires=['BeautifulSoup4', 'dacite']`
* **FIXED:** [Solve bad request issues](https://github.com/GiorgosXou/untappdscr/issues/1)
Expand Down
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@

<p align="center">
<img src="imgs/img3.jpg">
<img src="imgs/img1.png">
</p>

# Untappdscr V.1.0.3 🍻
# UNTAPPDSCR V.1.1.0 🍻
Is an [Untappd](https://untappd.com) scraper made primarly for the public in collaboration with a private brewery company.


Expand All @@ -13,10 +14,10 @@ pip3 install untappdscr --upgrade
```

## Usage
Look into the `examples` folder, especially `example_4.py` & `5` .
Look into the `examples` folder, especially `example_5.py`.
```python
from untappdscr import UntappdScraper
untappd = UntappdScraper((1,2), True) # delay-range, debug-mode
untappd = UntappdScraper((1,2), debug_mode=True) # delay-range, debug-mode
print(untappd.get_top_rated_beers())
```

Expand All @@ -33,10 +34,13 @@ print(untappd.get_top_rated_beers())


## Why though?
Because [Untappd](https://untappd.com) stoped accepting new applications a long time ago.
<p align="center">
<img src="imgs/img2.jpg">
</p>
Because [Untappd stoped](https://untappd.com/api/register) accepting new applications a long time ago.

<picture>
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/GiorgosXou/untappdscr/main/imgs/img0.jpg">
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/GiorgosXou/untappdscr/main/imgs/img2.jpg">
<img alt="Shows a black logo in light color mode and a white one in dark color mode." src="https://user-images.githubusercontent.com/25423296/163456779-a8556205-d0a5-45e2-ac17-42d089e3c3f8.png">
</picture>


## Research
Expand Down
Binary file added imgs/img0.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added imgs/img3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


if sys.version_info.major < 3:
sys.exit('Python <3 is unsupported (as of now).')
sys.exit('Python <3 is unsupported (as of now).')


#def readfile(filename):
Expand All @@ -13,7 +13,7 @@

setup(
name="untappdscr",
version="1.0.3",
version="1.1.0",
description="An https://untappd.com scraper.",
#long_description=readfile('README.md'),
author="George Chousos",
Expand Down

0 comments on commit f4e878d

Please sign in to comment.