Minor fixes

This commit is contained in:
Karim shoair
2024-10-14 03:19:27 +03:00
parent 327e7189bc
commit f0a21f6f38
5 changed files with 7 additions and 8 deletions
+2 -3
View File
@@ -1,9 +1,8 @@
name: Publish Python 🐍 distributions 📦 to PyPI
on:
push:
branches:
- main
release:
types: [created]
jobs:
build-n-publish:
+1 -1
View File
@@ -27,4 +27,4 @@ Also, consider setting `debug` to `True` while initializing the Adaptor object s
- Fork Scrapling [git repository](https://github.com/D4Vinci/Scrapling).
- Make your changes.
- Ensure tests work.
- Create a Pull Request against the [**dev**](https://github.com/D4Vinci/Scraplin/tree/dev) branch of Scrapling.
- Create a Pull Request against the [**dev**](https://github.com/D4Vinci/Scrapling/tree/dev) branch of Scrapling.
+1 -1
View File
@@ -3,7 +3,7 @@ from scrapling.parser import Adaptor, Adaptors
from scrapling.custom_types import TextHandler, AttributesHandler
__author__ = "Karim Shoair (karim.shoair@pm.me)"
__version__ = "0.1"
__version__ = "0.1.1"
__copyright__ = "Copyright (c) 2024 Karim Shoair"
+1 -1
View File
@@ -1,6 +1,6 @@
[metadata]
name = scrapling
version = 0.1
version = 0.1.1
author = Karim Shoair
author_email = karim.shoair@pm.me
description = Scrapling is a powerful, flexible, adaptive, and high-performance web scraping library for Python.
+2 -2
View File
@@ -6,7 +6,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
setup(
name="scrapling",
version="0.1",
version="0.1.1",
description="""Scrapling is a powerful, flexible, and high-performance web scraping library for Python. It
simplifies the process of extracting data from websites, even when they undergo structural changes, and offers
impressive speed improvements over many popular scraping tools.""",
@@ -57,7 +57,7 @@ setup(
python_requires=">=3.7",
url="https://github.com/D4Vinci/Scrapling",
project_urls={
"Documentation": "https://github.com/D4Vinci/Scrapling/Docs", # For now
"Documentation": "https://github.com/D4Vinci/Scrapling/tree/main/docs", # For now
"Source": "https://github.com/D4Vinci/Scrapling",
"Tracker": "https://github.com/D4Vinci/Scrapling/issues",
}