linktrace 0.2.1__tar.gz → 0.2.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. {linktrace-0.2.1 → linktrace-0.2.3}/PKG-INFO +6 -6
  2. {linktrace-0.2.1 → linktrace-0.2.3}/README.md +5 -5
  3. {linktrace-0.2.1 → linktrace-0.2.3}/justfile +2 -2
  4. {linktrace-0.2.1 → linktrace-0.2.3}/pyproject.toml +3 -3
  5. {linktrace-0.2.1 → linktrace-0.2.3}/.coverage +0 -0
  6. {linktrace-0.2.1 → linktrace-0.2.3}/.github/workflows/publish.yml +0 -0
  7. {linktrace-0.2.1 → linktrace-0.2.3}/.gitignore +0 -0
  8. {linktrace-0.2.1 → linktrace-0.2.3}/.pre-commit-config.yaml +0 -0
  9. {linktrace-0.2.1 → linktrace-0.2.3}/.python-version +0 -0
  10. {linktrace-0.2.1 → linktrace-0.2.3}/.vscode/launch.json +0 -0
  11. {linktrace-0.2.1 → linktrace-0.2.3}/.vscode/settings.json +0 -0
  12. {linktrace-0.2.1 → linktrace-0.2.3}/LICENSE +0 -0
  13. {linktrace-0.2.1 → linktrace-0.2.3}/docs/api-reference.md +0 -0
  14. {linktrace-0.2.1 → linktrace-0.2.3}/docs/core-concepts.md +0 -0
  15. {linktrace-0.2.1 → linktrace-0.2.3}/docs/examples.md +0 -0
  16. {linktrace-0.2.1 → linktrace-0.2.3}/docs/getting-started.md +0 -0
  17. {linktrace-0.2.1 → linktrace-0.2.3}/docs/troubleshooting.md +0 -0
  18. {linktrace-0.2.1 → linktrace-0.2.3}/linktrace/Crawler.py +0 -0
  19. {linktrace-0.2.1 → linktrace-0.2.3}/linktrace/Serializers.py +0 -0
  20. {linktrace-0.2.1 → linktrace-0.2.3}/linktrace/Spider.py +0 -0
  21. {linktrace-0.2.1 → linktrace-0.2.3}/linktrace/__init__.py +0 -0
  22. {linktrace-0.2.1 → linktrace-0.2.3}/linktrace/cache.py +0 -0
  23. {linktrace-0.2.1 → linktrace-0.2.3}/linktrace/py.typed +0 -0
  24. {linktrace-0.2.1 → linktrace-0.2.3}/linktrace/robots.py +0 -0
  25. {linktrace-0.2.1 → linktrace-0.2.3}/notebooks/crawl_cnn.ipynb +0 -0
  26. {linktrace-0.2.1 → linktrace-0.2.3}/notebooks/crawl_cnn_callbacks.ipynb +0 -0
  27. {linktrace-0.2.1 → linktrace-0.2.3}/notebooks/crawl_tax_assessor.ipynb +0 -0
  28. {linktrace-0.2.1 → linktrace-0.2.3}/settings.yaml +0 -0
  29. {linktrace-0.2.1 → linktrace-0.2.3}/tests/__init__.py +0 -0
  30. {linktrace-0.2.1 → linktrace-0.2.3}/tests/conftest.py +0 -0
  31. {linktrace-0.2.1 → linktrace-0.2.3}/tests/test_crawler.py +0 -0
  32. {linktrace-0.2.1 → linktrace-0.2.3}/tests/test_models.py +0 -0
  33. {linktrace-0.2.1 → linktrace-0.2.3}/tests/test_rate_limiting_and_broken_links.py +0 -0
  34. {linktrace-0.2.1 → linktrace-0.2.3}/tests/test_serializers.py +0 -0
  35. {linktrace-0.2.1 → linktrace-0.2.3}/tests/test_spider.py +0 -0
  36. {linktrace-0.2.1 → linktrace-0.2.3}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: linktrace
3
- Version: 0.2.1
3
+ Version: 0.2.3
4
4
  Summary: Async web crawler with rate limiting, robots.txt support, and broken link tracking
5
5
  License-File: LICENSE
6
6
  Requires-Python: >=3.12
@@ -392,8 +392,8 @@ MIT
392
392
  ---
393
393
 
394
394
  **Documentation:**
395
- - [Getting Started](docs/getting-started.md)
396
- - [Core Concepts](docs/core-concepts.md)
397
- - [API Reference](docs/api-reference.md)
398
- - [Examples](docs/examples.md)
399
- - [Troubleshooting](docs/troubleshooting.md)
395
+ - [Getting Started](https://github.com/JayBaywatch/webcrawler/blob/main/docs/getting-started.md)
396
+ - [Core Concepts](https://github.com/JayBaywatch/webcrawler/blob/main/docs/core-concepts.md)
397
+ - [API Reference](https://github.com/JayBaywatch/webcrawler/blob/main/docs/api-reference.md)
398
+ - [Examples](https://github.com/JayBaywatch/webcrawler/blob/main/docs/examples.md)
399
+ - [Troubleshooting](https://github.com/JayBaywatch/webcrawler/blob/main/docs/troubleshooting.md)
@@ -369,8 +369,8 @@ MIT
369
369
  ---
370
370
 
371
371
  **Documentation:**
372
- - [Getting Started](docs/getting-started.md)
373
- - [Core Concepts](docs/core-concepts.md)
374
- - [API Reference](docs/api-reference.md)
375
- - [Examples](docs/examples.md)
376
- - [Troubleshooting](docs/troubleshooting.md)
372
+ - [Getting Started](https://github.com/JayBaywatch/webcrawler/blob/main/docs/getting-started.md)
373
+ - [Core Concepts](https://github.com/JayBaywatch/webcrawler/blob/main/docs/core-concepts.md)
374
+ - [API Reference](https://github.com/JayBaywatch/webcrawler/blob/main/docs/api-reference.md)
375
+ - [Examples](https://github.com/JayBaywatch/webcrawler/blob/main/docs/examples.md)
376
+ - [Troubleshooting](https://github.com/JayBaywatch/webcrawler/blob/main/docs/troubleshooting.md)
@@ -53,8 +53,8 @@ release version:
53
53
  exit 1
54
54
  fi
55
55
 
56
- # Update version in pyproject.toml
57
- sed -i '' "s/version = \".*\"/version = \"{{version}}\"/" pyproject.toml
56
+ # Update version in pyproject.toml (only the [project] version field)
57
+ sed -i '' "s/^version = \".*\"/version = \"{{version}}\"/" pyproject.toml
58
58
  echo "✅ Updated version in pyproject.toml"
59
59
 
60
60
  # Commit version bump
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "linktrace"
7
- version = "0.2.1"
7
+ version = "0.2.3"
8
8
  description = "Async web crawler with rate limiting, robots.txt support, and broken link tracking"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -44,7 +44,7 @@ dev = [
44
44
  packages = ["linktrace"]
45
45
 
46
46
  [tool.ruff]
47
- target-version = "0.2.1"
47
+ target-version = "py312"
48
48
  line-length = 88
49
49
 
50
50
  [tool.ruff.lint]
@@ -82,7 +82,7 @@ precision = 2
82
82
  directory = "htmlcov"
83
83
 
84
84
  [tool.mypy]
85
- python_version = "0.2.1"
85
+ python_version = "3.12"
86
86
  warn_return_any = true
87
87
  warn_unused_configs = true
88
88
  disallow_untyped_defs = false
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes