-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
proxy added and enhance gnewsdecoder functionality
- Loading branch information
Showing
11 changed files
with
383 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,41 @@ | ||
# This workflow will upload a Python Package using Twine when a release is created | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries | ||
|
||
# This workflow uses actions that are not certified by GitHub. | ||
# They are provided by a third-party and are governed by | ||
# separate terms of service, privacy policy, and support | ||
# documentation. | ||
|
||
name: Upload Python Package | ||
|
||
on: | ||
push: | ||
tags: | ||
- "[0-9]+.[0-9]+.[0-9]+" | ||
- "[0-9]+.[0-9]+.[0-9]+a[0-9]+" | ||
- "[0-9]+.[0-9]+.[0-9]+b[0-9]+" | ||
- "[0-9]+.[0-9]+.[0-9]+rc[0-9]+" | ||
branches: | ||
- main | ||
release: | ||
types: [published] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
deploy: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: '3.x' | ||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build | ||
- name: Build package | ||
run: python -m build | ||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v3 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install build | ||
- name: Build package | ||
run: python -m build | ||
|
||
- name: Publish package | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
# Ignore Python bytecode | ||
__pycache__/ | ||
*.pyc | ||
*.pyo | ||
|
||
# Ignore macOS system files | ||
.DS_Store | ||
.venv | ||
.ignore | ||
.backup_readme.md | ||
.backup_readme2.md | ||
|
||
# Ignore build artifacts | ||
dist/ | ||
build/ | ||
|
||
# Ignore egg info | ||
*.egg-info/ | ||
|
||
test.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,36 @@ | ||
from .new_decoderv1 import decode_google_news_url as new_decoderv1 | ||
from .decoderv1 import decode_google_news_url as decoderv1 | ||
from .decoderv2 import decode_google_news_url as decoderv2 | ||
from .decoderv3 import decode_google_news_url as decoderv3 | ||
from .decoderv4 import decode_google_news_url as decoderv4 | ||
from .new_decoderv1 import decode_google_news_url as new_decoderv1 | ||
from .new_decoderv2 import GoogleDecoder | ||
from .__version__ import __version__ | ||
|
||
|
||
def gnewsdecoder(source_url, interval=None, proxy=None): | ||
""" | ||
Decodes a Google News article URL into its original source URL. | ||
This is a convenience function that uses the GoogleDecoder class internally. | ||
Parameters: | ||
source_url (str): The Google News article URL. | ||
interval (int, optional): Delay time in seconds before decoding to avoid rate limits. | ||
proxy (str, optional): Proxy to be used for all requests. | ||
Returns: | ||
dict: A dictionary containing 'status' and 'decoded_url' if successful, | ||
otherwise 'status' and 'message'. | ||
""" | ||
decoder = GoogleDecoder(proxy=proxy) | ||
return decoder.decode_google_news_url(source_url, interval=interval) | ||
|
||
|
||
__all__ = [ | ||
"decoderv1", | ||
"decoderv2", | ||
"decoderv3", | ||
"decoderv4", | ||
"new_decoderv1", | ||
"GoogleDecoder", | ||
"gnewsdecoder", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
__version__ = "0.1.7" |
Oops, something went wrong.