novascript-sdk 0.0.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.
- novascript_sdk-0.0.1/PKG-INFO +51 -0
- novascript_sdk-0.0.1/README.md +35 -0
- novascript_sdk-0.0.1/pyproject.toml +23 -0
- novascript_sdk-0.0.1/setup.cfg +4 -0
- novascript_sdk-0.0.1/src/novascript_sdk/__init__.py +12 -0
- novascript_sdk-0.0.1/src/novascript_sdk.egg-info/PKG-INFO +51 -0
- novascript_sdk-0.0.1/src/novascript_sdk.egg-info/SOURCES.txt +7 -0
- novascript_sdk-0.0.1/src/novascript_sdk.egg-info/dependency_links.txt +1 -0
- novascript_sdk-0.0.1/src/novascript_sdk.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: novascript-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: NovaScript SDK - YouTube video metadata and transcript extraction. Coming soon!
|
|
5
|
+
Author-email: Torq Platform <dev@muid.io>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/muid-io/novascript-sdk
|
|
8
|
+
Keywords: youtube,transcript,metadata,video,api,sdk
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Requires-Python: >=3.11
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# NovaScript SDK
|
|
18
|
+
|
|
19
|
+
**Coming Soon!**
|
|
20
|
+
|
|
21
|
+
NovaScript SDK provides Python bindings for the NovaScript API - a service for extracting video metadata and transcripts from YouTube and other platforms.
|
|
22
|
+
|
|
23
|
+
## Features (Planned)
|
|
24
|
+
|
|
25
|
+
- Video metadata extraction (title, description, views, likes, etc.)
|
|
26
|
+
- Transcript extraction with multiple format support (JSON, text, SRT, VTT)
|
|
27
|
+
- Async-first design with httpx
|
|
28
|
+
- Smart language fallback for transcripts
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install novascript-sdk
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Early Access
|
|
37
|
+
|
|
38
|
+
For early access, install from our development server:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install novascript-sdk --index-url https://pip.muid.io/simple/
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Links
|
|
45
|
+
|
|
46
|
+
- [API Documentation](https://novascript.muid.io/docs)
|
|
47
|
+
- [GitHub](https://github.com/muid-io/novascript-sdk)
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# NovaScript SDK
|
|
2
|
+
|
|
3
|
+
**Coming Soon!**
|
|
4
|
+
|
|
5
|
+
NovaScript SDK provides Python bindings for the NovaScript API - a service for extracting video metadata and transcripts from YouTube and other platforms.
|
|
6
|
+
|
|
7
|
+
## Features (Planned)
|
|
8
|
+
|
|
9
|
+
- Video metadata extraction (title, description, views, likes, etc.)
|
|
10
|
+
- Transcript extraction with multiple format support (JSON, text, SRT, VTT)
|
|
11
|
+
- Async-first design with httpx
|
|
12
|
+
- Smart language fallback for transcripts
|
|
13
|
+
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
pip install novascript-sdk
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Early Access
|
|
21
|
+
|
|
22
|
+
For early access, install from our development server:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install novascript-sdk --index-url https://pip.muid.io/simple/
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Links
|
|
29
|
+
|
|
30
|
+
- [API Documentation](https://novascript.muid.io/docs)
|
|
31
|
+
- [GitHub](https://github.com/muid-io/novascript-sdk)
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "novascript-sdk"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "NovaScript SDK - YouTube video metadata and transcript extraction. Coming soon!"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.11"
|
|
7
|
+
license = {text = "MIT"}
|
|
8
|
+
authors = [{name = "Torq Platform", email = "dev@muid.io"}]
|
|
9
|
+
keywords = ["youtube", "transcript", "metadata", "video", "api", "sdk"]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"Intended Audience :: Developers",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Programming Language :: Python :: 3.11",
|
|
15
|
+
"Programming Language :: Python :: 3.12",
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
[project.urls]
|
|
19
|
+
Homepage = "https://github.com/muid-io/novascript-sdk"
|
|
20
|
+
|
|
21
|
+
[build-system]
|
|
22
|
+
requires = ["setuptools>=61.0"]
|
|
23
|
+
build-backend = "setuptools.build_meta"
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""
|
|
2
|
+
NovaScript SDK - Coming Soon!
|
|
3
|
+
|
|
4
|
+
For early access, install from: pip install novascript-sdk --index-url https://pip.muid.io/simple/
|
|
5
|
+
"""
|
|
6
|
+
__version__ = "0.0.1"
|
|
7
|
+
|
|
8
|
+
def __getattr__(name):
|
|
9
|
+
raise ImportError(
|
|
10
|
+
f"NovaScript SDK is not yet released on PyPI. "
|
|
11
|
+
f"For early access: pip install novascript-sdk --index-url https://pip.muid.io/simple/"
|
|
12
|
+
)
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: novascript-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: NovaScript SDK - YouTube video metadata and transcript extraction. Coming soon!
|
|
5
|
+
Author-email: Torq Platform <dev@muid.io>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/muid-io/novascript-sdk
|
|
8
|
+
Keywords: youtube,transcript,metadata,video,api,sdk
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Requires-Python: >=3.11
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# NovaScript SDK
|
|
18
|
+
|
|
19
|
+
**Coming Soon!**
|
|
20
|
+
|
|
21
|
+
NovaScript SDK provides Python bindings for the NovaScript API - a service for extracting video metadata and transcripts from YouTube and other platforms.
|
|
22
|
+
|
|
23
|
+
## Features (Planned)
|
|
24
|
+
|
|
25
|
+
- Video metadata extraction (title, description, views, likes, etc.)
|
|
26
|
+
- Transcript extraction with multiple format support (JSON, text, SRT, VTT)
|
|
27
|
+
- Async-first design with httpx
|
|
28
|
+
- Smart language fallback for transcripts
|
|
29
|
+
|
|
30
|
+
## Installation
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install novascript-sdk
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Early Access
|
|
37
|
+
|
|
38
|
+
For early access, install from our development server:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
pip install novascript-sdk --index-url https://pip.muid.io/simple/
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
## Links
|
|
45
|
+
|
|
46
|
+
- [API Documentation](https://novascript.muid.io/docs)
|
|
47
|
+
- [GitHub](https://github.com/muid-io/novascript-sdk)
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
novascript_sdk
|