adloop 0.4.0__tar.gz → 0.4.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.
Files changed (29) hide show
  1. {adloop-0.4.0 → adloop-0.4.1}/PKG-INFO +6 -2
  2. {adloop-0.4.0 → adloop-0.4.1}/README.md +5 -1
  3. {adloop-0.4.0 → adloop-0.4.1}/pyproject.toml +1 -1
  4. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/__init__.py +1 -1
  5. adloop-0.4.1/src/adloop/bundled_credentials.json +13 -0
  6. adloop-0.4.0/src/adloop/bundled_credentials.json +0 -12
  7. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/__main__.py +0 -0
  8. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ads/__init__.py +0 -0
  9. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ads/client.py +0 -0
  10. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ads/currency.py +0 -0
  11. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ads/forecast.py +0 -0
  12. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ads/gaql.py +0 -0
  13. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ads/pmax.py +0 -0
  14. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ads/read.py +0 -0
  15. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ads/write.py +0 -0
  16. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/auth.py +0 -0
  17. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/cli.py +0 -0
  18. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/config.py +0 -0
  19. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/crossref.py +0 -0
  20. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ga4/__init__.py +0 -0
  21. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ga4/client.py +0 -0
  22. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ga4/reports.py +0 -0
  23. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/ga4/tracking.py +0 -0
  24. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/safety/__init__.py +0 -0
  25. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/safety/audit.py +0 -0
  26. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/safety/guards.py +0 -0
  27. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/safety/preview.py +0 -0
  28. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/server.py +0 -0
  29. {adloop-0.4.0 → adloop-0.4.1}/src/adloop/tracking.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: adloop
3
- Version: 0.4.0
3
+ Version: 0.4.1
4
4
  Summary: Stop switching between Google Ads, GA4, and your code editor to figure out why conversions dropped.
5
5
  Keywords: mcp,google-ads,google-analytics,ga4,cursor,marketing
6
6
  Author: Daniel Klose
@@ -386,12 +386,16 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. The short version: open a
386
386
 
387
387
  MIT — see [LICENSE](LICENSE).
388
388
 
389
+ ## Privacy
390
+
391
+ AdLoop runs entirely on your machine. No data is collected, stored, or transmitted to any server. See [PRIVACY.md](PRIVACY.md) for the full privacy policy.
392
+
389
393
  ---
390
394
 
391
395
  <div align="center">
392
396
 
393
397
  **If AdLoop saves you from switching between Google Ads, GA4, and your code editor — [give it a star](https://github.com/kLOsk/adloop).**
394
398
 
395
- Made by [@kLOsk](https://github.com/kLOsk)
399
+ Made by [@kLOsk](https://github.com/kLOsk) | [Privacy Policy](PRIVACY.md)
396
400
 
397
401
  </div>
@@ -362,12 +362,16 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines. The short version: open a
362
362
 
363
363
  MIT — see [LICENSE](LICENSE).
364
364
 
365
+ ## Privacy
366
+
367
+ AdLoop runs entirely on your machine. No data is collected, stored, or transmitted to any server. See [PRIVACY.md](PRIVACY.md) for the full privacy policy.
368
+
365
369
  ---
366
370
 
367
371
  <div align="center">
368
372
 
369
373
  **If AdLoop saves you from switching between Google Ads, GA4, and your code editor — [give it a star](https://github.com/kLOsk/adloop).**
370
374
 
371
- Made by [@kLOsk](https://github.com/kLOsk)
375
+ Made by [@kLOsk](https://github.com/kLOsk) | [Privacy Policy](PRIVACY.md)
372
376
 
373
377
  </div>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "adloop"
3
- version = "0.4.0"
3
+ version = "0.4.1"
4
4
  description = "Stop switching between Google Ads, GA4, and your code editor to figure out why conversions dropped."
5
5
  readme = "README.md"
6
6
  authors = [
@@ -2,7 +2,7 @@
2
2
 
3
3
  import sys
4
4
 
5
- __version__ = "0.4.0"
5
+ __version__ = "0.4.1"
6
6
 
7
7
 
8
8
  def main() -> None:
@@ -0,0 +1,13 @@
1
+ {
2
+ "installed": {
3
+ "client_id": "196969084897-5bk76skhjt474jr2p61vqus3sr5ru3eu.apps.googleusercontent.com",
4
+ "project_id": "adloop-489214",
5
+ "auth_uri": "https://accounts.google.com/o/oauth2/auth",
6
+ "token_uri": "https://oauth2.googleapis.com/token",
7
+ "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
8
+ "client_secret": "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",
9
+ "redirect_uris": [
10
+ "http://localhost"
11
+ ]
12
+ }
13
+ }
@@ -1,12 +0,0 @@
1
- {
2
- "_comment": "PLACEHOLDER — Replace this file with the real OAuth client JSON downloaded from your GCP project. See the plan in .cursor/plans/ for instructions.",
3
- "installed": {
4
- "client_id": "REPLACE_ME.apps.googleusercontent.com",
5
- "project_id": "REPLACE_ME",
6
- "auth_uri": "https://accounts.google.com/o/oauth2/auth",
7
- "token_uri": "https://oauth2.googleapis.com/token",
8
- "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
9
- "client_secret": "REPLACE_ME",
10
- "redirect_uris": ["http://localhost"]
11
- }
12
- }
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