polysim-sdk 0.2.0__tar.gz → 0.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.
- polysim_sdk-0.2.2/.gitignore +148 -0
- polysim_sdk-0.2.2/PKG-INFO +41 -0
- polysim_sdk-0.2.2/README.md +21 -0
- polysim_sdk-0.2.2/pyproject.toml +34 -0
- polysim_sdk-0.2.0/.gitignore +0 -18
- polysim_sdk-0.2.0/PKG-INFO +0 -503
- polysim_sdk-0.2.0/README.md +0 -471
- polysim_sdk-0.2.0/polysim_clob_client/__init__.py +0 -51
- polysim_sdk-0.2.0/polysim_clob_client/client.py +0 -939
- polysim_sdk-0.2.0/polysim_clob_client/clob_types.py +0 -174
- polysim_sdk-0.2.0/polysim_clob_client/constants.py +0 -52
- polysim_sdk-0.2.0/polysim_clob_client/exceptions.py +0 -31
- polysim_sdk-0.2.0/polysim_clob_client/order_builder/__init__.py +0 -5
- polysim_sdk-0.2.0/polysim_clob_client/order_builder/constants.py +0 -12
- polysim_sdk-0.2.0/polysim_sdk/__init__.py +0 -52
- polysim_sdk-0.2.0/polysim_sdk/_http.py +0 -413
- polysim_sdk-0.2.0/polysim_sdk/aio.py +0 -705
- polysim_sdk-0.2.0/polysim_sdk/client.py +0 -819
- polysim_sdk-0.2.0/polysim_sdk/constants.py +0 -44
- polysim_sdk-0.2.0/polysim_sdk/exceptions.py +0 -90
- polysim_sdk-0.2.0/polysim_sdk/pagination.py +0 -126
- polysim_sdk-0.2.0/polysim_sdk/sse.py +0 -282
- polysim_sdk-0.2.0/polysim_sdk/updown.py +0 -167
- polysim_sdk-0.2.0/polysim_sdk/ws.py +0 -211
- polysim_sdk-0.2.0/pyproject.toml +0 -70
- {polysim_sdk-0.2.0 → polysim_sdk-0.2.2}/LICENSE +0 -0
- {polysim_sdk-0.2.0 → polysim_sdk-0.2.2}/NOTICE +0 -0
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
# -----------------------
|
|
2
|
+
# GENERAL / OS / IDE
|
|
3
|
+
# -----------------------
|
|
4
|
+
.DS_Store
|
|
5
|
+
Thumbs.db
|
|
6
|
+
ehthumbs.db
|
|
7
|
+
# Claude Code runtime artifacts (settings.json is committed; runtime
|
|
8
|
+
# state like the scheduler lock and local overrides are not).
|
|
9
|
+
.claude/scheduled_tasks.lock
|
|
10
|
+
.claude/settings.local.json
|
|
11
|
+
# ignore everything in .vscode/ except the committed MCP + extension recommendations
|
|
12
|
+
.vscode/*
|
|
13
|
+
!.vscode/mcp.json
|
|
14
|
+
!.vscode/extensions.json
|
|
15
|
+
.idea/
|
|
16
|
+
*.log
|
|
17
|
+
*.suo
|
|
18
|
+
*.ntvs*
|
|
19
|
+
*.njsproj
|
|
20
|
+
*.sln
|
|
21
|
+
*.sw?
|
|
22
|
+
|
|
23
|
+
# -----------------------
|
|
24
|
+
# ENVIRONMENT SECRETS (CRITICAL)
|
|
25
|
+
# -----------------------
|
|
26
|
+
.env
|
|
27
|
+
.env.local
|
|
28
|
+
.env.*
|
|
29
|
+
!.env.example
|
|
30
|
+
!.env.defaults
|
|
31
|
+
!.env.defaults.*
|
|
32
|
+
|
|
33
|
+
# -----------------------
|
|
34
|
+
# PYTHON / BACKEND
|
|
35
|
+
# -----------------------
|
|
36
|
+
__pycache__/
|
|
37
|
+
*.py[cod]
|
|
38
|
+
*$py.class
|
|
39
|
+
*.manifest
|
|
40
|
+
*.spec
|
|
41
|
+
|
|
42
|
+
# Virtual Environments
|
|
43
|
+
venv/
|
|
44
|
+
env/
|
|
45
|
+
.venv/
|
|
46
|
+
pip-wheel-metadata/
|
|
47
|
+
|
|
48
|
+
# Testing & Coverage
|
|
49
|
+
.pytest_cache/
|
|
50
|
+
.coverage
|
|
51
|
+
htmlcov/
|
|
52
|
+
|
|
53
|
+
# -----------------------
|
|
54
|
+
# NODE / FRONTEND
|
|
55
|
+
# -----------------------
|
|
56
|
+
node_modules/
|
|
57
|
+
npm-debug.log*
|
|
58
|
+
yarn-debug.log*
|
|
59
|
+
yarn-error.log*
|
|
60
|
+
pnpm-debug.log*
|
|
61
|
+
|
|
62
|
+
# Build Outputs
|
|
63
|
+
dist/
|
|
64
|
+
dist-ssr/
|
|
65
|
+
build/
|
|
66
|
+
.next/
|
|
67
|
+
out/
|
|
68
|
+
|
|
69
|
+
# Cache
|
|
70
|
+
.cache/
|
|
71
|
+
.parcel-cache/
|
|
72
|
+
.vite/
|
|
73
|
+
.turbo/
|
|
74
|
+
|
|
75
|
+
# Misc Frontend
|
|
76
|
+
multi_replacements.json
|
|
77
|
+
|
|
78
|
+
context/
|
|
79
|
+
|
|
80
|
+
# TypeScript Build Info
|
|
81
|
+
*.tsbuildinfo
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
legaldata.html
|
|
85
|
+
|
|
86
|
+
designs/polysim_logo
|
|
87
|
+
|
|
88
|
+
plan-hftDataTradingApi.prompt.md
|
|
89
|
+
|
|
90
|
+
.agent
|
|
91
|
+
.agents
|
|
92
|
+
.playwright-mcp/
|
|
93
|
+
.worktrees/
|
|
94
|
+
|
|
95
|
+
docs/reports/
|
|
96
|
+
supabase/
|
|
97
|
+
dump.rdb
|
|
98
|
+
|
|
99
|
+
# -----------------------
|
|
100
|
+
# LEGAL / NOTICE CAMPAIGN PER-RECIPIENT LOGS
|
|
101
|
+
# These contain per-recipient personal data (email + auth user_id
|
|
102
|
+
# paired with Resend message ids) and must never be committed.
|
|
103
|
+
# The hand-built archived-users suppression CSV
|
|
104
|
+
# (tos_notice_suppression_archived_2026_05_10.csv) is intentionally
|
|
105
|
+
# committed and is excluded by name.
|
|
106
|
+
# -----------------------
|
|
107
|
+
tos_notice_send_log_*.csv
|
|
108
|
+
tos_notice_recipients_*.csv
|
|
109
|
+
archive_notice_send_log_*.csv
|
|
110
|
+
archive_notice_recipients_*.csv
|
|
111
|
+
s2_launch_send_log_*.csv
|
|
112
|
+
|
|
113
|
+
# -----------------------
|
|
114
|
+
# CAMPAIGN RECIPIENT LISTS (scripts/maillists/)
|
|
115
|
+
# Real recipient lists contain operator-supplied private addresses (our own
|
|
116
|
+
# mailboxes + friends' personal emails) and must never be committed (PR #1965
|
|
117
|
+
# review). Only the *.csv.example TEMPLATES are tracked; copy a template to
|
|
118
|
+
# the un-suffixed name and fill it in locally at send time.
|
|
119
|
+
# -----------------------
|
|
120
|
+
scripts/maillists/*.csv
|
|
121
|
+
!scripts/maillists/*.csv.example
|
|
122
|
+
|
|
123
|
+
# -----------------------
|
|
124
|
+
# PITCHDOCS ASSETS
|
|
125
|
+
# -----------------------
|
|
126
|
+
pitchdocs/assets/png/
|
|
127
|
+
pitchdocs/assets/svg/
|
|
128
|
+
|
|
129
|
+
*png
|
|
130
|
+
*jpg
|
|
131
|
+
*jpeg
|
|
132
|
+
*.pdf
|
|
133
|
+
!frontend/public/logos/PolySimulator_Donation_transparent.png
|
|
134
|
+
.claude/worktrees/
|
|
135
|
+
|
|
136
|
+
# -----------------------
|
|
137
|
+
# LOCAL-ONLY WORKING FILES (not committed)
|
|
138
|
+
# -----------------------
|
|
139
|
+
# Generated cache of GitHub issues used by local tooling.
|
|
140
|
+
.compact-issues.json
|
|
141
|
+
# Local QA pass notes (contain account emails / Stripe test details).
|
|
142
|
+
.qa-findings.md
|
|
143
|
+
# Sensitive legal / business-strategy docs (incorporation, founders
|
|
144
|
+
# agreement, business plan, GDPR architecture). Kept local pending review;
|
|
145
|
+
# remove this line (or `git add -f`) when a doc is cleared for committing.
|
|
146
|
+
docs/legal/business-plan/
|
|
147
|
+
# Standalone Remotion launch-video sub-project (kept local for now).
|
|
148
|
+
launch-video/
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: polysim-sdk
|
|
3
|
+
Version: 0.2.2
|
|
4
|
+
Summary: Deprecated alias — the PolySimulator Python SDK is now published as 'polysimulator'. Installs it for you.
|
|
5
|
+
Project-URL: Homepage, https://polysimulator.com
|
|
6
|
+
Project-URL: Documentation, https://docs.polysimulator.com
|
|
7
|
+
Project-URL: Repository, https://github.com/Bavariance/polysimulator-sdk
|
|
8
|
+
Author: Bavariance
|
|
9
|
+
License-Expression: Apache-2.0
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
License-File: NOTICE
|
|
12
|
+
Keywords: api-sdk,paper-trading,polymarket,polysimulator,trading
|
|
13
|
+
Classifier: Development Status :: 7 - Inactive
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Topic :: Office/Business :: Financial
|
|
17
|
+
Requires-Python: >=3.10
|
|
18
|
+
Requires-Dist: polysimulator>=0.2.0
|
|
19
|
+
Description-Content-Type: text/markdown
|
|
20
|
+
|
|
21
|
+
# polysim-sdk → renamed to `polysimulator`
|
|
22
|
+
|
|
23
|
+
**This package has been renamed.** The PolySimulator Python SDK is now published as
|
|
24
|
+
**[`polysimulator`](https://pypi.org/project/polysimulator/)**.
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install polysimulator
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
`polysim-sdk` is now a thin alias that pulls in `polysimulator` automatically, so
|
|
31
|
+
existing installs keep working. **The import paths are unchanged:**
|
|
32
|
+
|
|
33
|
+
```python
|
|
34
|
+
from polysim_sdk import PolySimClient # native client (sync + async)
|
|
35
|
+
from polysim_clob_client.client import ClobClient # py-clob-client drop-in
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Please switch your dependency from `polysim-sdk` to `polysimulator`.
|
|
39
|
+
|
|
40
|
+
- Docs: https://docs.polysimulator.com
|
|
41
|
+
- Source: https://github.com/Bavariance/polysimulator
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# polysim-sdk → renamed to `polysimulator`
|
|
2
|
+
|
|
3
|
+
**This package has been renamed.** The PolySimulator Python SDK is now published as
|
|
4
|
+
**[`polysimulator`](https://pypi.org/project/polysimulator/)**.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
pip install polysimulator
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
`polysim-sdk` is now a thin alias that pulls in `polysimulator` automatically, so
|
|
11
|
+
existing installs keep working. **The import paths are unchanged:**
|
|
12
|
+
|
|
13
|
+
```python
|
|
14
|
+
from polysim_sdk import PolySimClient # native client (sync + async)
|
|
15
|
+
from polysim_clob_client.client import ClobClient # py-clob-client drop-in
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Please switch your dependency from `polysim-sdk` to `polysimulator`.
|
|
19
|
+
|
|
20
|
+
- Docs: https://docs.polysimulator.com
|
|
21
|
+
- Source: https://github.com/Bavariance/polysimulator
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "polysim-sdk"
|
|
7
|
+
version = "0.2.2"
|
|
8
|
+
description = "Deprecated alias — the PolySimulator Python SDK is now published as 'polysimulator'. Installs it for you."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
license = "Apache-2.0"
|
|
12
|
+
license-files = ["LICENSE", "NOTICE"]
|
|
13
|
+
authors = [{ name = "Bavariance" }]
|
|
14
|
+
keywords = ["polymarket", "polysimulator", "trading", "paper-trading", "api-sdk"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Development Status :: 7 - Inactive",
|
|
17
|
+
"Intended Audience :: Developers",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Office/Business :: Financial",
|
|
20
|
+
]
|
|
21
|
+
dependencies = ["polysimulator>=0.2.0"]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://polysimulator.com"
|
|
25
|
+
Documentation = "https://docs.polysimulator.com"
|
|
26
|
+
Repository = "https://github.com/Bavariance/polysimulator-sdk"
|
|
27
|
+
|
|
28
|
+
# Metadata-only wheel: ships NO modules (no file conflict with `polysimulator`,
|
|
29
|
+
# which provides the real `polysim_sdk` / `polysim_clob_client` import packages).
|
|
30
|
+
[tool.hatch.build.targets.wheel]
|
|
31
|
+
bypass-selection = true
|
|
32
|
+
|
|
33
|
+
[tool.hatch.build.targets.sdist]
|
|
34
|
+
include = ["README.md", "LICENSE", "NOTICE", "pyproject.toml"]
|
polysim_sdk-0.2.0/.gitignore
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
# Python build / packaging artifacts
|
|
2
|
-
dist/
|
|
3
|
-
build/
|
|
4
|
-
*.egg-info/
|
|
5
|
-
__pycache__/
|
|
6
|
-
*.py[cod]
|
|
7
|
-
|
|
8
|
-
# Virtualenv
|
|
9
|
-
.venv/
|
|
10
|
-
venv/
|
|
11
|
-
|
|
12
|
-
# Tooling caches
|
|
13
|
-
.mypy_cache/
|
|
14
|
-
.pytest_cache/
|
|
15
|
-
.ruff_cache/
|
|
16
|
-
|
|
17
|
-
# Local throwaway smoke scripts (never committed — may contain wiring to live keys)
|
|
18
|
-
_smoke_*.py
|