lam-cli 0.1.3__tar.gz → 0.1.4__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.
- {lam_cli-0.1.3/lam_cli.egg-info → lam_cli-0.1.4}/PKG-INFO +3 -2
- {lam_cli-0.1.3 → lam_cli-0.1.4}/lam/lam.py +4 -2
- {lam_cli-0.1.3 → lam_cli-0.1.4/lam_cli.egg-info}/PKG-INFO +3 -2
- lam_cli-0.1.4/setup.py +62 -0
- lam_cli-0.1.3/setup.py +0 -62
- {lam_cli-0.1.3 → lam_cli-0.1.4}/LICENSE +0 -0
- {lam_cli-0.1.3 → lam_cli-0.1.4}/README.md +0 -0
- {lam_cli-0.1.3 → lam_cli-0.1.4}/lam/__init__.py +0 -0
- {lam_cli-0.1.3 → lam_cli-0.1.4}/lam_cli.egg-info/SOURCES.txt +0 -0
- {lam_cli-0.1.3 → lam_cli-0.1.4}/lam_cli.egg-info/dependency_links.txt +0 -0
- {lam_cli-0.1.3 → lam_cli-0.1.4}/lam_cli.egg-info/entry_points.txt +0 -0
- {lam_cli-0.1.3 → lam_cli-0.1.4}/lam_cli.egg-info/requires.txt +0 -0
- {lam_cli-0.1.3 → lam_cli-0.1.4}/lam_cli.egg-info/top_level.txt +0 -0
- {lam_cli-0.1.3 → lam_cli-0.1.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: lam-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Secure data transformation tool supporting JQ and JavaScript (Bun)
|
|
5
5
|
Home-page: https://github.com/laminar-run/lam
|
|
6
6
|
Author: Laminar Run, Inc.
|
|
@@ -46,6 +46,7 @@ Dynamic: description-content-type
|
|
|
46
46
|
Dynamic: home-page
|
|
47
47
|
Dynamic: keywords
|
|
48
48
|
Dynamic: license
|
|
49
|
+
Dynamic: license-file
|
|
49
50
|
Dynamic: project-url
|
|
50
51
|
Dynamic: requires-dist
|
|
51
52
|
Dynamic: requires-python
|
|
@@ -8,7 +8,7 @@ import socket
|
|
|
8
8
|
import subprocess
|
|
9
9
|
import sys
|
|
10
10
|
import tempfile
|
|
11
|
-
from datetime import datetime
|
|
11
|
+
from datetime import datetime, timezone
|
|
12
12
|
from enum import Enum
|
|
13
13
|
from pathlib import Path
|
|
14
14
|
from typing import Any, Dict, Optional, Tuple, Union
|
|
@@ -22,6 +22,8 @@ from posthog import Posthog
|
|
|
22
22
|
posthog = Posthog(project_api_key='phc_wfeHFG0p5yZIdBpjVYy00o5x1HbEpggdMzIuFYgNPSK',
|
|
23
23
|
host='https://app.posthog.com')
|
|
24
24
|
|
|
25
|
+
# Configure logging with UTC timezone
|
|
26
|
+
logging.Formatter.converter = lambda *args: datetime.now(timezone.utc).timetuple()
|
|
25
27
|
logging.basicConfig(level=logging.DEBUG,
|
|
26
28
|
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
|
|
27
29
|
logger = logging.getLogger(__name__)
|
|
@@ -547,4 +549,4 @@ def run(program_file: str, input: str, language: str, workspace_id: str,
|
|
|
547
549
|
logger.removeHandler(file_handler)
|
|
548
550
|
|
|
549
551
|
if __name__ == '__main__':
|
|
550
|
-
lam()
|
|
552
|
+
lam()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: lam-cli
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Secure data transformation tool supporting JQ and JavaScript (Bun)
|
|
5
5
|
Home-page: https://github.com/laminar-run/lam
|
|
6
6
|
Author: Laminar Run, Inc.
|
|
@@ -46,6 +46,7 @@ Dynamic: description-content-type
|
|
|
46
46
|
Dynamic: home-page
|
|
47
47
|
Dynamic: keywords
|
|
48
48
|
Dynamic: license
|
|
49
|
+
Dynamic: license-file
|
|
49
50
|
Dynamic: project-url
|
|
50
51
|
Dynamic: requires-dist
|
|
51
52
|
Dynamic: requires-python
|
lam_cli-0.1.4/setup.py
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
|
|
3
|
+
from setuptools import find_packages, setup
|
|
4
|
+
|
|
5
|
+
# Read docs.md for long description
|
|
6
|
+
docs_path = Path(__file__).parent / "docs.md"
|
|
7
|
+
long_description = docs_path.read_text() if docs_path.exists() else ""
|
|
8
|
+
|
|
9
|
+
setup(
|
|
10
|
+
name="lam-cli",
|
|
11
|
+
version="0.1.4",
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
install_requires=[
|
|
14
|
+
"backoff>=2.2.1",
|
|
15
|
+
"certifi>=2024.12.14",
|
|
16
|
+
"charset-normalizer>=3.3.2",
|
|
17
|
+
"click>=8.1.7",
|
|
18
|
+
"idna>=3.7",
|
|
19
|
+
"logtail-python>=0.2.2",
|
|
20
|
+
"monotonic>=1.6",
|
|
21
|
+
"msgpack>=1.0.8",
|
|
22
|
+
"posthog>=3.4.0",
|
|
23
|
+
"psutil>=5.9.0",
|
|
24
|
+
"python-dateutil>=2.8.2",
|
|
25
|
+
"requests>=2.32.3",
|
|
26
|
+
"six>=1.16.0",
|
|
27
|
+
"urllib3>=2.2.2",
|
|
28
|
+
],
|
|
29
|
+
entry_points={
|
|
30
|
+
"console_scripts": [
|
|
31
|
+
"laminar=lam.lam:lam",
|
|
32
|
+
],
|
|
33
|
+
},
|
|
34
|
+
python_requires=">=3.9",
|
|
35
|
+
license="GPLv3",
|
|
36
|
+
author="Laminar Run, Inc.",
|
|
37
|
+
author_email="connect@laminar.run",
|
|
38
|
+
description="Secure data transformation tool supporting JQ and JavaScript (Bun)",
|
|
39
|
+
long_description=long_description,
|
|
40
|
+
long_description_content_type="text/markdown",
|
|
41
|
+
url="https://github.com/laminar-run/lam",
|
|
42
|
+
project_urls={
|
|
43
|
+
"Documentation": "https://docs.laminar.run",
|
|
44
|
+
"Source": "https://github.com/laminar-run/lam",
|
|
45
|
+
"Issue Tracker": "https://github.com/laminar-run/lam/issues",
|
|
46
|
+
},
|
|
47
|
+
classifiers=[
|
|
48
|
+
"Development Status :: 4 - Beta",
|
|
49
|
+
"Environment :: Console",
|
|
50
|
+
"Intended Audience :: Developers",
|
|
51
|
+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
52
|
+
"Operating System :: OS Independent",
|
|
53
|
+
"Programming Language :: Python :: 3",
|
|
54
|
+
"Programming Language :: Python :: 3.9",
|
|
55
|
+
"Programming Language :: Python :: 3.10",
|
|
56
|
+
"Programming Language :: Python :: 3.11",
|
|
57
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
58
|
+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
|
|
59
|
+
"Topic :: Software Development :: Build Tools",
|
|
60
|
+
],
|
|
61
|
+
keywords="laminar, api, integration, transformation, json, jq, javascript, bun",
|
|
62
|
+
)
|
lam_cli-0.1.3/setup.py
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
from pathlib import Path
|
|
2
|
-
|
|
3
|
-
from setuptools import find_packages, setup
|
|
4
|
-
|
|
5
|
-
# Read docs.md for long description
|
|
6
|
-
docs_path = Path(__file__).parent / "docs.md"
|
|
7
|
-
long_description = docs_path.read_text() if docs_path.exists() else ""
|
|
8
|
-
|
|
9
|
-
setup(
|
|
10
|
-
name='lam-cli',
|
|
11
|
-
version='0.1.3',
|
|
12
|
-
packages=find_packages(),
|
|
13
|
-
install_requires=[
|
|
14
|
-
'backoff>=2.2.1',
|
|
15
|
-
'certifi>=2024.12.14',
|
|
16
|
-
'charset-normalizer>=3.3.2',
|
|
17
|
-
'click>=8.1.7',
|
|
18
|
-
'idna>=3.7',
|
|
19
|
-
'logtail-python>=0.2.2',
|
|
20
|
-
'monotonic>=1.6',
|
|
21
|
-
'msgpack>=1.0.8',
|
|
22
|
-
'posthog>=3.4.0',
|
|
23
|
-
'psutil>=5.9.0',
|
|
24
|
-
'python-dateutil>=2.8.2',
|
|
25
|
-
'requests>=2.32.3',
|
|
26
|
-
'six>=1.16.0',
|
|
27
|
-
'urllib3>=2.2.2'
|
|
28
|
-
],
|
|
29
|
-
entry_points={
|
|
30
|
-
'console_scripts': [
|
|
31
|
-
'laminar=lam.lam:lam',
|
|
32
|
-
],
|
|
33
|
-
},
|
|
34
|
-
python_requires='>=3.9',
|
|
35
|
-
license='GPLv3',
|
|
36
|
-
author='Laminar Run, Inc.',
|
|
37
|
-
author_email='connect@laminar.run',
|
|
38
|
-
description='Secure data transformation tool supporting JQ and JavaScript (Bun)',
|
|
39
|
-
long_description=long_description,
|
|
40
|
-
long_description_content_type='text/markdown',
|
|
41
|
-
url='https://github.com/laminar-run/lam',
|
|
42
|
-
project_urls={
|
|
43
|
-
'Documentation': 'https://docs.laminar.run',
|
|
44
|
-
'Source': 'https://github.com/laminar-run/lam',
|
|
45
|
-
'Issue Tracker': 'https://github.com/laminar-run/lam/issues',
|
|
46
|
-
},
|
|
47
|
-
classifiers=[
|
|
48
|
-
'Development Status :: 4 - Beta',
|
|
49
|
-
'Environment :: Console',
|
|
50
|
-
'Intended Audience :: Developers',
|
|
51
|
-
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
|
52
|
-
'Operating System :: OS Independent',
|
|
53
|
-
'Programming Language :: Python :: 3',
|
|
54
|
-
'Programming Language :: Python :: 3.9',
|
|
55
|
-
'Programming Language :: Python :: 3.10',
|
|
56
|
-
'Programming Language :: Python :: 3.11',
|
|
57
|
-
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
58
|
-
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
59
|
-
'Topic :: Software Development :: Build Tools',
|
|
60
|
-
],
|
|
61
|
-
keywords='laminar, api, integration, transformation, json, jq, javascript, bun',
|
|
62
|
-
)
|
|
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
|