Skip to content

Commit

Permalink
1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
JoMingyu committed Jul 7, 2022
1 parent 0c36410 commit cd00eb6
Show file tree
Hide file tree
Showing 7 changed files with 305 additions and 469 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,3 +134,6 @@
> Fixes data map from `app` feature
- Fix data map caused by data structure change of Google Play.
- removed `summaryHTML`, `size`, `androidVersion`, `androidVersionText`, `developerInternalID`, `editorsChoice`, `similarApps`, `moreByDeveloper` field.

## v.1.2.0
> Added `search` feature
17 changes: 0 additions & 17 deletions Pipfile

This file was deleted.

414 changes: 0 additions & 414 deletions Pipfile.lock

This file was deleted.

12 changes: 5 additions & 7 deletions google_play_scraper/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
from .constants.google_play import Sort
from .features.app import app
from .features.reviews import reviews, reviews_all
from .features.permissions import permissions
from .features.search import search

VERSION = __version__ = "1.1.0"
from .constants.google_play import Sort # noqa: F401
from .features.app import app # noqa: F401
from .features.permissions import permissions # noqa: F401
from .features.reviews import reviews, reviews_all # noqa: F401
from .features.search import search # noqa: F401
261 changes: 261 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
[tool.poetry]
name = "google-play-scraper"
version = "1.2.0"
description = "Google-Play-Scraper provides APIs to easily crawl the Google Play Store for Python without any external dependencies!"
authors = ["JoMingyu <[email protected]>"]
license = "MIT"
packages = [
{ include = "google_play_scraper" }
]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Development Status :: 5 - Production/Stable",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Typing :: Typed",
]
readme = "README.md"
repository = "https://github.com/JoMingyu/google-play-scraper"

[tool.poetry.dependencies]
python = ">= 3.7,< 4.0"

[tool.poetry.dev-dependencies]
black = "^22.6.0"
isort = "^5.10.1"
autoflake = "^1.4"

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
31 changes: 0 additions & 31 deletions setup.py

This file was deleted.

0 comments on commit cd00eb6

Please sign in to comment.