vivarium-public-health 3.0.8__py3-none-any.whl → 3.0.10__py3-none-any.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.
- vivarium_public_health/__init__.py +38 -0
 - vivarium_public_health/_version.py +1 -1
 - vivarium_public_health/disease/__init__.py +1 -0
 - vivarium_public_health/results/__init__.py +1 -0
 - vivarium_public_health/treatment/scale_up.py +1 -1
 - {vivarium_public_health-3.0.8.dist-info → vivarium_public_health-3.0.10.dist-info}/METADATA +1 -1
 - {vivarium_public_health-3.0.8.dist-info → vivarium_public_health-3.0.10.dist-info}/RECORD +10 -10
 - {vivarium_public_health-3.0.8.dist-info → vivarium_public_health-3.0.10.dist-info}/WHEEL +1 -1
 - {vivarium_public_health-3.0.8.dist-info → vivarium_public_health-3.0.10.dist-info}/LICENSE.txt +0 -0
 - {vivarium_public_health-3.0.8.dist-info → vivarium_public_health-3.0.10.dist-info}/top_level.txt +0 -0
 
| 
         @@ -8,6 +8,44 @@ from vivarium_public_health.__about__ import ( 
     | 
|
| 
       8 
8 
     | 
    
         
             
                __uri__,
         
     | 
| 
       9 
9 
     | 
    
         
             
            )
         
     | 
| 
       10 
10 
     | 
    
         
             
            from vivarium_public_health._version import __version__
         
     | 
| 
      
 11 
     | 
    
         
            +
            from vivarium_public_health.disease import (
         
     | 
| 
      
 12 
     | 
    
         
            +
                SI,
         
     | 
| 
      
 13 
     | 
    
         
            +
                SIR,
         
     | 
| 
      
 14 
     | 
    
         
            +
                SIS,
         
     | 
| 
      
 15 
     | 
    
         
            +
                DiseaseModel,
         
     | 
| 
      
 16 
     | 
    
         
            +
                DiseaseState,
         
     | 
| 
      
 17 
     | 
    
         
            +
                NeonatalSWC_with_incidence,
         
     | 
| 
      
 18 
     | 
    
         
            +
                NeonatalSWC_without_incidence,
         
     | 
| 
      
 19 
     | 
    
         
            +
                RecoveredState,
         
     | 
| 
      
 20 
     | 
    
         
            +
                RiskAttributableDisease,
         
     | 
| 
      
 21 
     | 
    
         
            +
                SIR_fixed_duration,
         
     | 
| 
      
 22 
     | 
    
         
            +
                SIS_fixed_duration,
         
     | 
| 
      
 23 
     | 
    
         
            +
                SusceptibleState,
         
     | 
| 
      
 24 
     | 
    
         
            +
                TransientDiseaseState,
         
     | 
| 
      
 25 
     | 
    
         
            +
            )
         
     | 
| 
      
 26 
     | 
    
         
            +
            from vivarium_public_health.plugins import CausesConfigurationParser
         
     | 
| 
      
 27 
     | 
    
         
            +
            from vivarium_public_health.population import (
         
     | 
| 
      
 28 
     | 
    
         
            +
                BasePopulation,
         
     | 
| 
      
 29 
     | 
    
         
            +
                FertilityAgeSpecificRates,
         
     | 
| 
      
 30 
     | 
    
         
            +
                FertilityCrudeBirthRate,
         
     | 
| 
      
 31 
     | 
    
         
            +
                FertilityDeterministic,
         
     | 
| 
      
 32 
     | 
    
         
            +
                Mortality,
         
     | 
| 
      
 33 
     | 
    
         
            +
            )
         
     | 
| 
      
 34 
     | 
    
         
            +
            from vivarium_public_health.results import (
         
     | 
| 
      
 35 
     | 
    
         
            +
                CategoricalRiskObserver,
         
     | 
| 
      
 36 
     | 
    
         
            +
                DisabilityObserver,
         
     | 
| 
      
 37 
     | 
    
         
            +
                DiseaseObserver,
         
     | 
| 
      
 38 
     | 
    
         
            +
                MortalityObserver,
         
     | 
| 
      
 39 
     | 
    
         
            +
                ResultsStratifier,
         
     | 
| 
      
 40 
     | 
    
         
            +
            )
         
     | 
| 
      
 41 
     | 
    
         
            +
            from vivarium_public_health.risks import (
         
     | 
| 
      
 42 
     | 
    
         
            +
                LBWSGRisk,
         
     | 
| 
      
 43 
     | 
    
         
            +
                LBWSGRiskEffect,
         
     | 
| 
      
 44 
     | 
    
         
            +
                NonLogLinearRiskEffect,
         
     | 
| 
      
 45 
     | 
    
         
            +
                Risk,
         
     | 
| 
      
 46 
     | 
    
         
            +
                RiskEffect,
         
     | 
| 
      
 47 
     | 
    
         
            +
            )
         
     | 
| 
      
 48 
     | 
    
         
            +
            from vivarium_public_health.treatment import AbsoluteShift, LinearScaleUp, TherapeuticInertia
         
     | 
| 
       11 
49 
     | 
    
         | 
| 
       12 
50 
     | 
    
         
             
            __all__ = [
         
     | 
| 
       13 
51 
     | 
    
         
             
                __author__,
         
     | 
| 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            __version__ = "3.0. 
     | 
| 
      
 1 
     | 
    
         
            +
            __version__ = "3.0.10"
         
     | 
| 
         @@ -13,8 +13,8 @@ import pandas as pd 
     | 
|
| 
       13 
13 
     | 
    
         
             
            from vivarium import Component
         
     | 
| 
       14 
14 
     | 
    
         
             
            from vivarium.framework.engine import Builder
         
     | 
| 
       15 
15 
     | 
    
         
             
            from vivarium.framework.lookup import LookupTable
         
     | 
| 
       16 
     | 
    
         
            -
            from vivarium.framework.time import Time
         
     | 
| 
       17 
16 
     | 
    
         
             
            from vivarium.framework.values import Pipeline
         
     | 
| 
      
 17 
     | 
    
         
            +
            from vivarium.types import Time
         
     | 
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
            from vivarium_public_health.utilities import EntityString
         
     | 
| 
       20 
20 
     | 
    
         | 
| 
         @@ -1,6 +1,6 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            Metadata-Version: 2.1
         
     | 
| 
       2 
2 
     | 
    
         
             
            Name: vivarium_public_health
         
     | 
| 
       3 
     | 
    
         
            -
            Version: 3.0. 
     | 
| 
      
 3 
     | 
    
         
            +
            Version: 3.0.10
         
     | 
| 
       4 
4 
     | 
    
         
             
            Summary: Components for modelling diseases, risks, and interventions with ``vivarium``
         
     | 
| 
       5 
5 
     | 
    
         
             
            Home-page: https://github.com/ihmeuw/vivarium_public_health
         
     | 
| 
       6 
6 
     | 
    
         
             
            Author: The vivarium developers
         
     | 
| 
         @@ -1,8 +1,8 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            vivarium_public_health/__about__.py,sha256=RgWycPypKZS80TpSX7o41cREnG8PfguNHDHLuLyl820,487
         
     | 
| 
       2 
     | 
    
         
            -
            vivarium_public_health/__init__.py,sha256= 
     | 
| 
       3 
     | 
    
         
            -
            vivarium_public_health/_version.py,sha256= 
     | 
| 
      
 2 
     | 
    
         
            +
            vivarium_public_health/__init__.py,sha256=jYSQDGc86QMEW4iZ7wO1JCSP189n1zScIn6QKG470Kw,1321
         
     | 
| 
      
 3 
     | 
    
         
            +
            vivarium_public_health/_version.py,sha256=xS-MdV9u-8rYsWMV1VgxiWeHHmEWb63Js1BsRGmz0xo,23
         
     | 
| 
       4 
4 
     | 
    
         
             
            vivarium_public_health/utilities.py,sha256=5cl9jjVkOQ1UeXT4DjDMAhaBNNjAsDo-SVJwpv6FDw0,3071
         
     | 
| 
       5 
     | 
    
         
            -
            vivarium_public_health/disease/__init__.py,sha256= 
     | 
| 
      
 5 
     | 
    
         
            +
            vivarium_public_health/disease/__init__.py,sha256=VUJHDLlE6ngo2qHNQUtZ8OWH5H_T7_ao-xsYKDkRmHw,443
         
     | 
| 
       6 
6 
     | 
    
         
             
            vivarium_public_health/disease/model.py,sha256=0WIYDEx-hwlUJp6Zl8m8bUMoWxuVkOWsJvh_YlZiOPs,8234
         
     | 
| 
       7 
7 
     | 
    
         
             
            vivarium_public_health/disease/models.py,sha256=01UK7yB2zGPFzmlIpvhd-XnGe6vSCMDza3QTidgY7Nc,3479
         
     | 
| 
       8 
8 
     | 
    
         
             
            vivarium_public_health/disease/special_disease.py,sha256=3vS1WsO__IwOK0Oe_CUmh3aaKrXIf2CANtmiqlS3pjc,14614
         
     | 
| 
         @@ -22,7 +22,7 @@ vivarium_public_health/population/add_new_birth_cohorts.py,sha256=k65Li0LYWl-JFH 
     | 
|
| 
       22 
22 
     | 
    
         
             
            vivarium_public_health/population/base_population.py,sha256=4lUc8EZwzj5Ba36lSmW9yyxcRuBSMLqi_8Fy69ssq5E,17026
         
     | 
| 
       23 
23 
     | 
    
         
             
            vivarium_public_health/population/data_transformations.py,sha256=QVh_63Wwg9BUkaQm1pMSvBb-wsYrsgyADKIERAiEOVg,22188
         
     | 
| 
       24 
24 
     | 
    
         
             
            vivarium_public_health/population/mortality.py,sha256=w7b_TUssHjRcnULdXu7MXKfZBjCrlYWbB94oO3JWogI,10264
         
     | 
| 
       25 
     | 
    
         
            -
            vivarium_public_health/results/__init__.py,sha256= 
     | 
| 
      
 25 
     | 
    
         
            +
            vivarium_public_health/results/__init__.py,sha256=rKUZGlRXJgEyFY4a_WJeg3XnC0l34S5guYZ0N9JJS4E,319
         
     | 
| 
       26 
26 
     | 
    
         
             
            vivarium_public_health/results/columns.py,sha256=V-L3JgTcsk51Zx9PcUwSgaE1iZjuGyfZ8aShPjynadU,495
         
     | 
| 
       27 
27 
     | 
    
         
             
            vivarium_public_health/results/disability.py,sha256=JQm3Q7CoGCT2AgxaoH6MKkvnq4xF83wfFmEvEOvTmvA,9876
         
     | 
| 
       28 
28 
     | 
    
         
             
            vivarium_public_health/results/disease.py,sha256=OwxhPrfDsCnCZSaw8Yiq2AnibWikoqI-gM7xDdhFLcM,12529
         
     | 
| 
         @@ -40,10 +40,10 @@ vivarium_public_health/risks/implementations/__init__.py,sha256=47DEQpj8HBSa-_TI 
     | 
|
| 
       40 
40 
     | 
    
         
             
            vivarium_public_health/risks/implementations/low_birth_weight_and_short_gestation.py,sha256=kxuJwkpJzGF8CqwNEemEA7CrohcxKQJtvUXLJtD1xm0,17948
         
     | 
| 
       41 
41 
     | 
    
         
             
            vivarium_public_health/treatment/__init__.py,sha256=wONElu9aJbBYwpYIovYPYaN_GYfVhPXtTeFWSdQMgA0,222
         
     | 
| 
       42 
42 
     | 
    
         
             
            vivarium_public_health/treatment/magic_wand.py,sha256=i9N57-MEuQv5B6dQ5iVMTAdOPghYcgiRRz-dTzigf1s,1980
         
     | 
| 
       43 
     | 
    
         
            -
            vivarium_public_health/treatment/scale_up.py,sha256= 
     | 
| 
      
 43 
     | 
    
         
            +
            vivarium_public_health/treatment/scale_up.py,sha256=9Cl3_MaCNPtUPPKXf3hWYepIwMCFlFY24jt2jeyFQO4,7006
         
     | 
| 
       44 
44 
     | 
    
         
             
            vivarium_public_health/treatment/therapeutic_inertia.py,sha256=8Z97s7GfcpfLu1U1ESJSqeEk4L__a3M0GbBV21MFg2s,2346
         
     | 
| 
       45 
     | 
    
         
            -
            vivarium_public_health-3.0. 
     | 
| 
       46 
     | 
    
         
            -
            vivarium_public_health-3.0. 
     | 
| 
       47 
     | 
    
         
            -
            vivarium_public_health-3.0. 
     | 
| 
       48 
     | 
    
         
            -
            vivarium_public_health-3.0. 
     | 
| 
       49 
     | 
    
         
            -
            vivarium_public_health-3.0. 
     | 
| 
      
 45 
     | 
    
         
            +
            vivarium_public_health-3.0.10.dist-info/LICENSE.txt,sha256=mN4bNLUQNcN9njYRc_3jCZkfPySVpmM6MRps104FxA4,1548
         
     | 
| 
      
 46 
     | 
    
         
            +
            vivarium_public_health-3.0.10.dist-info/METADATA,sha256=pPeIbY7zeBd-vNNaZMJQL51VeEZ1GanLuxYpDs24ZtU,4062
         
     | 
| 
      
 47 
     | 
    
         
            +
            vivarium_public_health-3.0.10.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
         
     | 
| 
      
 48 
     | 
    
         
            +
            vivarium_public_health-3.0.10.dist-info/top_level.txt,sha256=VVInlpzCFD0UNNhjOq_j-a29odzjwUwYFTGfvqbi4dY,23
         
     | 
| 
      
 49 
     | 
    
         
            +
            vivarium_public_health-3.0.10.dist-info/RECORD,,
         
     | 
    
        {vivarium_public_health-3.0.8.dist-info → vivarium_public_health-3.0.10.dist-info}/LICENSE.txt
    RENAMED
    
    | 
         
            File without changes
         
     | 
    
        {vivarium_public_health-3.0.8.dist-info → vivarium_public_health-3.0.10.dist-info}/top_level.txt
    RENAMED
    
    | 
         
            File without changes
         
     |