ai-screenshooter 1.2.0__tar.gz → 1.2.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ai-screenshooter
3
- Version: 1.2.0
3
+ Version: 1.2.2
4
4
  Summary: A CLI tool to capture and send AI-powered screenshots
5
5
  Home-page: https://github.com/tech4vision/ai-screenshoter
6
6
  Author: Last Shot AI
@@ -0,0 +1,13 @@
1
+ # ai-screenshoter
2
+ Ai Screenshooter App - lastshot.ai
3
+
4
+
5
+ ## Upload process
6
+ rm -rf dist
7
+ source .venv/bin/activate
8
+ python -m build
9
+ twine upload dist/*
10
+ paste the token from file pypi-screenshoter-api-token.txt
11
+
12
+ ## Upgrade the lib
13
+ pipx upgrade ai-screenshooter
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ai-screenshooter
3
- Version: 1.2.0
3
+ Version: 1.2.2
4
4
  Summary: A CLI tool to capture and send AI-powered screenshots
5
5
  Home-page: https://github.com/tech4vision/ai-screenshoter
6
6
  Author: Last Shot AI
@@ -101,7 +101,7 @@ def send_screenshots():
101
101
  return
102
102
 
103
103
  response = requests.post(
104
- "https://api.ai-management.tech4vision.io/api/v1/sessions/code-challenge",
104
+ "https://service.tech4vision.net/ai-management-service/api/v1/sessions/code-challenge",
105
105
  headers={"Authorization": f"Bearer {API_TOKEN}"},
106
106
  files=files,
107
107
  )
@@ -140,8 +140,8 @@ def main():
140
140
  API_TOKEN = args.token
141
141
 
142
142
  print("📸 AI Screenshot CLI started.")
143
- print("✅ Press ESC + C to capture a screenshot.")
144
- print("✅ Press ESC + V to send all stored screenshots.")
143
+ print("✅ Press ESC + to capture a screenshot.")
144
+ print("✅ Press ESC + to send all stored screenshots.")
145
145
  print("📌 Running... (Press Ctrl + C to exit)")
146
146
 
147
147
  # Listen for hotkeys using pynput
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="ai-screenshooter",
5
- version="1.2.0",
5
+ version="1.2.2",
6
6
  packages=find_packages(),
7
7
  py_modules=["ai_screenshot"],
8
8
  install_requires=[
@@ -1,8 +0,0 @@
1
- # ai-screenshoter
2
- Ai Screenshooter App - lastshot.ai
3
-
4
-
5
- ## Upload process
6
- rm -rf dist
7
- source .venv/bin/activate
8
- python -m build