linkedin-agent-cli 0.1.0__tar.gz → 0.1.5__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.
- linkedin_agent_cli-0.1.5/.github/workflows/publish.yml +53 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/PKG-INFO +1 -1
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/pyproject.toml +6 -2
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/.gitignore +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/LICENSE +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/README.md +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/llms.txt +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/__init__.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/actions/__init__.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/actions/connect.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/actions/conversations.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/actions/message.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/actions/profile.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/actions/search.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/actions/status.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/__init__.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/client.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/messaging/__init__.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/messaging/conversations.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/messaging/send.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/messaging/utils.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/voyager.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/auth.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/browser/__init__.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/browser/login.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/browser/nav.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/cli.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/conf.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/enums.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/exceptions.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/launcher.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/page_state.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/session.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/setup/__init__.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/setup/self_profile.py +0 -0
- {linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/url_utils.py +0 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
# Publishes a fresh STABLE release on every push to main: the version is
|
|
4
|
+
# 0.1.<commit-count>, which is monotonic (commit count only grows), unique per
|
|
5
|
+
# commit, and a final release (no .dev/pre-release segment), so a plain
|
|
6
|
+
# `pip install linkedin-agent-cli` picks it up immediately. Push a vX.Y.Z tag
|
|
7
|
+
# to cut a deliberate minor/major bump instead. skip-existing makes re-runs
|
|
8
|
+
# idempotent.
|
|
9
|
+
|
|
10
|
+
on:
|
|
11
|
+
push:
|
|
12
|
+
branches: [main]
|
|
13
|
+
tags: ["v*"]
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
publish:
|
|
17
|
+
runs-on: ubuntu-latest
|
|
18
|
+
environment: pypi
|
|
19
|
+
permissions:
|
|
20
|
+
id-token: write # OIDC token for PyPI Trusted Publishing
|
|
21
|
+
steps:
|
|
22
|
+
- uses: actions/checkout@v4
|
|
23
|
+
with:
|
|
24
|
+
fetch-depth: 0 # full history so the commit count is correct
|
|
25
|
+
|
|
26
|
+
- uses: actions/setup-python@v5
|
|
27
|
+
with:
|
|
28
|
+
python-version: "3.12"
|
|
29
|
+
|
|
30
|
+
- name: Compute version
|
|
31
|
+
id: ver
|
|
32
|
+
run: |
|
|
33
|
+
if [ "${{ github.ref_type }}" = "tag" ]; then
|
|
34
|
+
VERSION="${GITHUB_REF_NAME#v}" # vX.Y.Z -> X.Y.Z
|
|
35
|
+
else
|
|
36
|
+
VERSION="0.1.$(git rev-list --count HEAD)"
|
|
37
|
+
fi
|
|
38
|
+
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
|
|
39
|
+
echo "Publishing version $VERSION"
|
|
40
|
+
|
|
41
|
+
- name: Build sdist + wheel
|
|
42
|
+
env:
|
|
43
|
+
# hatch-vcs honours this PRETEND var, overriding the git-derived version
|
|
44
|
+
# at build time. Safe here because CI builds only this one package.
|
|
45
|
+
SETUPTOOLS_SCM_PRETEND_VERSION: ${{ steps.ver.outputs.version }}
|
|
46
|
+
run: |
|
|
47
|
+
python -m pip install --upgrade build
|
|
48
|
+
python -m build
|
|
49
|
+
|
|
50
|
+
- name: Publish to PyPI
|
|
51
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
52
|
+
with:
|
|
53
|
+
skip-existing: true
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: linkedin-agent-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.5
|
|
4
4
|
Summary: Django-free library and CLI for LinkedIn platform mechanics over a bound browser session (Voyager API + Playwright).
|
|
5
5
|
Project-URL: Homepage, https://github.com/eracle/linkedin-cli
|
|
6
6
|
Project-URL: Repository, https://github.com/eracle/linkedin-cli
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[build-system]
|
|
2
|
-
requires = ["hatchling"]
|
|
2
|
+
requires = ["hatchling", "hatch-vcs"]
|
|
3
3
|
build-backend = "hatchling.build"
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "linkedin-agent-cli"
|
|
7
|
-
|
|
7
|
+
dynamic = ["version"]
|
|
8
8
|
description = "Django-free library and CLI for LinkedIn platform mechanics over a bound browser session (Voyager API + Playwright)."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -40,5 +40,9 @@ Issues = "https://github.com/eracle/linkedin-cli/issues"
|
|
|
40
40
|
[project.scripts]
|
|
41
41
|
linkedin-cli = "linkedin_cli.cli:main"
|
|
42
42
|
|
|
43
|
+
[tool.hatch.version]
|
|
44
|
+
source = "vcs"
|
|
45
|
+
raw-options = { local_scheme = "no-local-version" }
|
|
46
|
+
|
|
43
47
|
[tool.hatch.build.targets.wheel]
|
|
44
48
|
packages = ["src/linkedin_cli"]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/actions/conversations.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/messaging/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
{linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/messaging/send.py
RENAMED
|
File without changes
|
{linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/api/messaging/utils.py
RENAMED
|
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
|
{linkedin_agent_cli-0.1.0 → linkedin_agent_cli-0.1.5}/src/linkedin_cli/setup/self_profile.py
RENAMED
|
File without changes
|
|
File without changes
|