From 9a0b2029a40cd5733b0f89bea022c71cdce9be9c Mon Sep 17 00:00:00 2001 From: Johannes Habel Date: Sun, 5 Jan 2025 22:43:47 +0100 Subject: [PATCH] - release 1.5.2 - asyncio support - updated namings --- .github/workflows/{tests.yml => async-tests.yml} | 0 README.md | 6 +++--- setup.py | 2 +- xvideos_api/xvideos_api.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{tests.yml => async-tests.yml} (100%) diff --git a/.github/workflows/tests.yml b/.github/workflows/async-tests.yml similarity index 100% rename from .github/workflows/tests.yml rename to .github/workflows/async-tests.yml diff --git a/README.md b/README.md index 575a8d0..bd7eb2c 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@
Downloads + Downloads (Async) CodeQL Analysis - API Tests - Async Branch API Tests - + Sync API Tests + Async Branch API Tests
# Description diff --git a/setup.py b/setup.py index 9dd90dc..11a7cb0 100644 --- a/setup.py +++ b/setup.py @@ -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={ diff --git a/xvideos_api/xvideos_api.py b/xvideos_api/xvideos_api.py index c6c9c16..4ff8602 100644 --- a/xvideos_api/xvideos_api.py +++ b/xvideos_api/xvideos_api.py @@ -14,13 +14,13 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . """ -import asyncio import os import math import html import json import httpx import logging +import asyncio import argparse from bs4 import BeautifulSoup