polysim-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.
- polysim_sdk-0.0.1/PKG-INFO +31 -0
- polysim_sdk-0.0.1/README.md +15 -0
- polysim_sdk-0.0.1/polysim_sdk/__init__.py +10 -0
- polysim_sdk-0.0.1/polysim_sdk.egg-info/PKG-INFO +31 -0
- polysim_sdk-0.0.1/polysim_sdk.egg-info/SOURCES.txt +7 -0
- polysim_sdk-0.0.1/polysim_sdk.egg-info/dependency_links.txt +1 -0
- polysim_sdk-0.0.1/polysim_sdk.egg-info/top_level.txt +1 -0
- polysim_sdk-0.0.1/pyproject.toml +26 -0
- polysim_sdk-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: polysim-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Python SDK for the PolySimulator trading API (placeholder — full release coming soon)
|
|
5
|
+
Author-email: PolySimulator <admin@polysimulator.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://polysimulator.com
|
|
8
|
+
Project-URL: Documentation, https://docs.polysimulator.com
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# polysim-sdk
|
|
18
|
+
|
|
19
|
+
**This is a placeholder release.** The official PolySimulator Python SDK is in final
|
|
20
|
+
preparation and will be published under this name soon.
|
|
21
|
+
|
|
22
|
+
PolySimulator is a paper-trading simulator for prediction markets with a
|
|
23
|
+
Polymarket-compatible REST API. Until the SDK ships, the API is plain REST and easy
|
|
24
|
+
to use directly:
|
|
25
|
+
|
|
26
|
+
- Docs: https://docs.polysimulator.com
|
|
27
|
+
- Quickstart: https://docs.polysimulator.com/quickstart
|
|
28
|
+
- Machine-readable reference: https://api.polysimulator.com/llms.txt
|
|
29
|
+
|
|
30
|
+
Published by the PolySimulator team (admin@polysimulator.com) to reserve the package
|
|
31
|
+
name ahead of the SDK release. If you have questions: https://polysimulator.com
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# polysim-sdk
|
|
2
|
+
|
|
3
|
+
**This is a placeholder release.** The official PolySimulator Python SDK is in final
|
|
4
|
+
preparation and will be published under this name soon.
|
|
5
|
+
|
|
6
|
+
PolySimulator is a paper-trading simulator for prediction markets with a
|
|
7
|
+
Polymarket-compatible REST API. Until the SDK ships, the API is plain REST and easy
|
|
8
|
+
to use directly:
|
|
9
|
+
|
|
10
|
+
- Docs: https://docs.polysimulator.com
|
|
11
|
+
- Quickstart: https://docs.polysimulator.com/quickstart
|
|
12
|
+
- Machine-readable reference: https://api.polysimulator.com/llms.txt
|
|
13
|
+
|
|
14
|
+
Published by the PolySimulator team (admin@polysimulator.com) to reserve the package
|
|
15
|
+
name ahead of the SDK release. If you have questions: https://polysimulator.com
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""PolySimulator SDK placeholder.
|
|
2
|
+
|
|
3
|
+
The official SDK has not shipped yet. The PolySimulator API is plain REST —
|
|
4
|
+
see https://docs.polysimulator.com/quickstart to start now.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
__version__ = "0.0.1"
|
|
8
|
+
|
|
9
|
+
SDK_STATUS = "coming-soon"
|
|
10
|
+
DOCS_URL = "https://docs.polysimulator.com"
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: polysim-sdk
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Official Python SDK for the PolySimulator trading API (placeholder — full release coming soon)
|
|
5
|
+
Author-email: PolySimulator <admin@polysimulator.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://polysimulator.com
|
|
8
|
+
Project-URL: Documentation, https://docs.polysimulator.com
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
14
|
+
Requires-Python: >=3.9
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
|
|
17
|
+
# polysim-sdk
|
|
18
|
+
|
|
19
|
+
**This is a placeholder release.** The official PolySimulator Python SDK is in final
|
|
20
|
+
preparation and will be published under this name soon.
|
|
21
|
+
|
|
22
|
+
PolySimulator is a paper-trading simulator for prediction markets with a
|
|
23
|
+
Polymarket-compatible REST API. Until the SDK ships, the API is plain REST and easy
|
|
24
|
+
to use directly:
|
|
25
|
+
|
|
26
|
+
- Docs: https://docs.polysimulator.com
|
|
27
|
+
- Quickstart: https://docs.polysimulator.com/quickstart
|
|
28
|
+
- Machine-readable reference: https://api.polysimulator.com/llms.txt
|
|
29
|
+
|
|
30
|
+
Published by the PolySimulator team (admin@polysimulator.com) to reserve the package
|
|
31
|
+
name ahead of the SDK release. If you have questions: https://polysimulator.com
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
polysim_sdk
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "polysim-sdk"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Official Python SDK for the PolySimulator trading API (placeholder — full release coming soon)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
authors = [{name = "PolySimulator", email = "admin@polysimulator.com"}]
|
|
12
|
+
requires-python = ">=3.9"
|
|
13
|
+
classifiers = [
|
|
14
|
+
"Development Status :: 1 - Planning",
|
|
15
|
+
"Intended Audience :: Developers",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
"Topic :: Office/Business :: Financial :: Investment",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://polysimulator.com"
|
|
23
|
+
Documentation = "https://docs.polysimulator.com"
|
|
24
|
+
|
|
25
|
+
[tool.setuptools]
|
|
26
|
+
packages = ["polysim_sdk"]
|