svy 0.0.4__cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl

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.
@@ -0,0 +1,33 @@
1
+ Metadata-Version: 2.4
2
+ Name: svy
3
+ Version: 0.0.4
4
+ Summary: End-to-end surveys: design, sample, analyze, report.
5
+ Author: Mamadou S Diallo
6
+ Author-email: Mamadou S Diallo <msdiallo@samplics.org>
7
+ Keywords: sampling,sample,weighting,estimation,survey
8
+ Classifier: Programming Language :: Python :: Implementation :: CPython
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Topic :: Scientific/Engineering
15
+ Requires-Python: >=3.11
16
+ Description-Content-Type: text/markdown
17
+ Requires-Dist: httpx>=0.28.1
18
+ Requires-Dist: numpy>=2.3
19
+ Requires-Dist: msgspec>=0.19.0
20
+ Requires-Dist: packaging>=21
21
+ Requires-Dist: patsy
22
+ Requires-Dist: polars[pandas,pyarrow]>=1.33.1
23
+ Requires-Dist: scipy>=1.16.0
24
+ Requires-Dist: svy-io
25
+ Provides-Extra: report
26
+ Requires-Dist: rich>=14.1; extra == "report"
27
+ Requires-Dist: great-tables>=0.18; extra == "report"
28
+ Dynamic: author
29
+ Dynamic: requires-python
30
+
31
+ # svy: The Python toolkit for modern, end-to-end survey research.
32
+
33
+ ##
@@ -0,0 +1,7 @@
1
+ svy.cpython-313-aarch64-linux-gnu.so,sha256=cTuvgJrPqlPwp8u2Yyaj21Y_2avYy7PwUFSgxjPrjtU,7558824
2
+ svy.pyi,sha256=xYcE2rjUxNj3kyLmvDP2WWVNnjJSxKHrcMzvnf915kE,3558
3
+ svy-0.0.4.dist-info/METADATA,sha256=go5cx6jqtQro1eKo0960ZbhjffjRUC7eG7MuaeJ76UY,1132
4
+ svy-0.0.4.dist-info/WHEEL,sha256=edGJrtLByCdSiHBSAlb_3PniS6A-rAjqWSCgGFMjrxk,188
5
+ svy-0.0.4.dist-info/entry_points.txt,sha256=IObkdwEMVwhU2xmTN-r4bk4s04ZrmMId47gz74Ert-g,42
6
+ svy-0.0.4.dist-info/top_level.txt,sha256=mGEerPDvPzZwfrSZqaI5GcIwlMeoK7Aj6ei0WmxhF_8,4
7
+ svy-0.0.4.dist-info/RECORD,,
@@ -0,0 +1,7 @@
1
+ Wheel-Version: 1.0
2
+ Generator: Nuitka (2.8.6)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-manylinux_2_17_aarch64
5
+ Tag: cp313-cp313-manylinux2014_aarch64
6
+ Tag: cp313-cp313-manylinux_2_28_aarch64
7
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ svy = svy.__main__:main
@@ -0,0 +1 @@
1
+ svy
Binary file
svy.pyi ADDED
@@ -0,0 +1,104 @@
1
+ # This file was generated by Nuitka
2
+
3
+ # Stubs included by default
4
+ from __future__ import annotations
5
+ from __future__ import annotations
6
+ from svy.core.containers import ChiSquare, FDist
7
+ from svy.core.describe import DescribeResult
8
+ from svy.core.enumerations import CaseStyle, EstMethod, FitMethod, LetterCase, MeasurementType, ModelType, OnePropSizeMethod, PPSMethod, PopParam, QuantileMethod, SingletonMethod, TableType, TableUnits
9
+ from svy.core.estimate import Estimate, ParamEst
10
+ from svy.core.expr import col, lit, when
11
+ from svy.core.io import create_from_sas, create_from_spss, create_from_stata, read_sas, read_spss, read_stata
12
+ from svy.core.sample import Design, Sample
13
+ from svy.core.size import SampSize, SampSizeConfigs, Target, TargetMean, TargetProp, TargetTwoMeans, TargetTwoProps
14
+ from svy.core.table import CellEst, Table, TableStats
15
+ from svy.core.ttest import TTestOneGroup, TTestTwoGroups
16
+ from svy.core.types import Category, DF, DT, Number
17
+ from svy.datasets.dataset import load_dataset
18
+ from svy.errors import CertaintyError, DimensionError, MethodError, ProbError, SinglePSUError, SvyError
19
+ from svy.utils import enable_debug, enable_logging, temporary_log_level
20
+ import logging
21
+ import os
22
+ import sys
23
+
24
+ __all__ = ['CaseStyle', 'FitMethod', 'LetterCase', 'MeasurementType', 'ModelType', 'PopParam', 'QuantileMethod', 'EstMethod', 'PPSMethod', 'SingletonMethod', 'OnePropSizeMethod', 'CertaintyError', 'DimensionError', 'MethodError', 'ProbError', 'SvyError', 'SinglePSUError', 'CellEst', 'ChiSquare', 'DescribeResult', 'Design', 'Estimate', 'FDist', 'ParamEst', 'Sample', 'SampSize', 'SampSizeConfigs', 'Table', 'TableStats', 'TableType', 'TableUnits', 'Target', 'TargetMean', 'TargetProp', 'TargetTwoProps', 'TargetTwoMeans', 'TTestOneGroup', 'TTestTwoGroups', 'create_from_spss', 'create_from_sas', 'create_from_stata', 'load_dataset', 'read_stata', 'read_spss', 'read_sas', 'Category', 'DF', 'DT', 'Number', 'col', 'lit', 'when', 'enable_logging', 'enable_debug', 'temporary_log_level']
25
+ __version__ = '0.0.4'
26
+ def _maybe_install_rich() -> None:
27
+ ...
28
+
29
+
30
+ __name__ = ...
31
+
32
+
33
+
34
+ # Modules used internally, to allow implicit dependencies to be seen:
35
+ import os
36
+ import __future__
37
+ import logging
38
+ import sys
39
+ import svy.errors.CertaintyError
40
+ import svy.errors.DimensionError
41
+ import svy.errors.MethodError
42
+ import svy.errors.ProbError
43
+ import svy.errors.SinglePSUError
44
+ import svy.errors.SvyError
45
+ import svy.utils.enable_debug
46
+ import svy.utils.enable_logging
47
+ import svy.utils.temporary_log_level
48
+ import rich
49
+ import rich.pretty
50
+ import rich.traceback
51
+ import importlib
52
+ import importlib.metadata
53
+ import numpy
54
+ import polars
55
+ import typing
56
+ import msgspec
57
+ import datetime
58
+ import builtins
59
+ import shutil
60
+ import io
61
+ import rich.console
62
+ import rich.padding
63
+ import rich.table
64
+ import rich.text
65
+ import rich.panel
66
+ import msgspec.structs
67
+ import enum
68
+ import re
69
+ import math
70
+ import dataclasses
71
+ import time
72
+ import pathlib
73
+ import pathlib.Path
74
+ import svy.engine.io._read_sas
75
+ import svy.engine.io._read_spss
76
+ import svy.engine.io._read_stata
77
+ import svy.engine.io._write_sas
78
+ import svy.engine.io._write_spss
79
+ import svy.engine.io._write_stata
80
+ import threading
81
+ import copy
82
+ import numpy.typing
83
+ import collections
84
+ import collections.abc
85
+ import svy.errors.LabelError
86
+ import json
87
+ import tempfile
88
+ import httpx
89
+ import warnings
90
+ import patsy
91
+ import scipy
92
+ import scipy.stats
93
+ import svy_io
94
+ import pyarrow
95
+ import inspect
96
+ import numpy._core
97
+ import numpy._core.numeric
98
+ import textwrap
99
+ import _frozen_importlib_external
100
+ import decimal
101
+ import scipy.linalg
102
+ import contextlib
103
+ import rich.logging
104
+ import hashlib