Skip to content

Commit

Permalink
- release 1.5.2
Browse files Browse the repository at this point in the history
- asyncio support
- updated namings
  • Loading branch information
EchterAlsFake committed Jan 5, 2025
1 parent 1d1e6d1 commit 9a0b202
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
File renamed without changes.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

<div align="center">
<a href="https://pepy.tech/project/xvideos_api"><img src="https://static.pepy.tech/badge/xvideos_api" alt="Downloads"></a>
<a href="https://pepy.tech/project/xvideos_api-async"><img src="https://static.pepy.tech/badge/xvideos_api-async" alt="Downloads"></a> <pan style="font-size: 20px">(Async)</pan>
<a href="https://github.com/EchterAlsFake/xvideos_api/workflows/"><img src="https://github.com/EchterAlsFake/xvideos_api/workflows/CodeQL/badge.svg" alt="CodeQL Analysis"/></a>
<a href="https://github.com/EchterAlsFake/xvideos_api/workflows/"><img src="https://github.com/EchterAlsFake/xvideos_api/actions/workflows/tests.yml/badge.svg" alt="API Tests"/></a>
<a href="https://github.com/EchterAlsFake/xvideos_api/actions/workflows/tests.yml"><img src="https://github.com/EchterAlsFake/xvideos_api/actions/workflows/tests.yml/badge.svg?branch=async" alt="Async Branch API Tests">
</a>
<a href="https://github.com/EchterAlsFake/xvideos_api/actions/workflows/sync-tests.yml"><img src="https://github.com/EchterAlsFake/xvideos_api/actions/workflows/sync-tests.yml/badge.svg" alt="Sync API Tests"/></a>
<a href="https://github.com/EchterAlsFake/xvideos_api/actions/workflows/async-tests.yml"><img src="https://github.com/EchterAlsFake/xvideos_api/actions/workflows/async-tests.yml/badge.svg?branch=async" alt="Async Branch API Tests"></a>
</div>

# Description
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="xvideos_api",
version="1.5.1",
version="1.5.2",
packages=find_packages(),
install_requires=["bs4", "eaf_base_api-async"],
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion xvideos_api/xvideos_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
"""
import asyncio
import os
import math
import html
import json
import httpx
import logging
import asyncio
import argparse

from bs4 import BeautifulSoup
Expand Down

0 comments on commit 9a0b202

Please sign in to comment.