pltr-cli 0.1.0__tar.gz → 0.1.1__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.
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/DEVELOPMENT_PLAN.md +37 -2
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/PKG-INFO +2 -2
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/README.md +1 -1
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/pyproject.toml +1 -1
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/uv.lock +504 -503
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/.github/workflows/ci.yml +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/.github/workflows/publish.yml +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/.github/workflows/test-publish.yml +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/.gitignore +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/CLAUDE.md +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/LICENSE +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/mypy.ini +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/scripts/release.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/base.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/manager.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/oauth.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/storage.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/token.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/cli.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/commands/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/commands/configure.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/commands/dataset.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/commands/verify.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/config/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/config/profiles.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/config/settings.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/base.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/dataset.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/dataset_full.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/dataset_v2.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/utils/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/utils/formatting.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/utils/progress.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/conftest.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_base.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_manager.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_oauth.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_storage.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_token.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_commands/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_commands/test_dataset.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_commands/test_verify_simple.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_config/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_config/test_profiles.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_config/test_settings.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_services/__init__.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_services/test_base.py +0 -0
- {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_services/test_dataset.py +0 -0
|
@@ -342,5 +342,40 @@ Test releases on TestPyPI before production:
|
|
|
342
342
|
|
|
343
343
|
After PyPI publishing:
|
|
344
344
|
1. Configure Trusted Publishing on PyPI (first release only)
|
|
345
|
-
2. Monitor package availability: https://pypi.org/project/pltr/
|
|
346
|
-
3. Test installation: `pip install pltr`
|
|
345
|
+
2. Monitor package availability: https://pypi.org/project/pltr-cli/
|
|
346
|
+
3. Test installation: `pip install pltr-cli`
|
|
347
|
+
|
|
348
|
+
## Release History
|
|
349
|
+
|
|
350
|
+
### Version 0.1.0 (2025-08-10) ✅ RELEASED
|
|
351
|
+
|
|
352
|
+
**First production release of pltr-cli to PyPI!**
|
|
353
|
+
|
|
354
|
+
- **Published to PyPI**: https://pypi.org/project/pltr-cli/0.1.0/
|
|
355
|
+
- **Installation**: `pip install pltr-cli`
|
|
356
|
+
- **GitHub Tag**: v0.1.0
|
|
357
|
+
|
|
358
|
+
**Core Features:**
|
|
359
|
+
- Complete authentication system with token and OAuth2 support
|
|
360
|
+
- Secure credential storage using keyring
|
|
361
|
+
- Multi-profile configuration management
|
|
362
|
+
- Dataset operations (get, create) using foundry-platform-sdk v1.27.0
|
|
363
|
+
- Rich terminal output with table formatting
|
|
364
|
+
- Comprehensive test suite (126 tests, ~65% coverage)
|
|
365
|
+
- Cross-platform compatibility (Windows, macOS, Linux)
|
|
366
|
+
|
|
367
|
+
**Distribution:**
|
|
368
|
+
- Automated PyPI publishing via GitHub Actions with Trusted Publishing
|
|
369
|
+
- Built with uv for modern Python dependency management
|
|
370
|
+
- Full CI/CD pipeline with linting, type checking, and multi-Python testing
|
|
371
|
+
- Sigstore signing for security attestation (GitHub Release creation had minor issues)
|
|
372
|
+
|
|
373
|
+
**Known Limitations:**
|
|
374
|
+
- Dataset operations are RID-based only (SDK v1.27.0 limitations)
|
|
375
|
+
- No dataset listing/browsing capabilities
|
|
376
|
+
- Ontology and SQL commands not yet implemented
|
|
377
|
+
|
|
378
|
+
**Next Steps:**
|
|
379
|
+
- Phase 4: Implement ontology commands
|
|
380
|
+
- Phase 5: Add SQL query support
|
|
381
|
+
- Phase 6: Admin commands for user/group management
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pltr-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Command-line interface for Palantir Foundry APIs
|
|
5
5
|
Project-URL: Homepage, https://github.com/anjor/pltr-cli
|
|
6
6
|
Project-URL: Repository, https://github.com/anjor/pltr-cli
|
|
@@ -56,7 +56,7 @@ A command-line interface tool for interacting with Palantir Foundry APIs.
|
|
|
56
56
|
### Using pip
|
|
57
57
|
|
|
58
58
|
```bash
|
|
59
|
-
pip install pltr
|
|
59
|
+
pip install pltr-cli
|
|
60
60
|
```
|
|
61
61
|
|
|
62
62
|
### From source
|