pycarlo 0.10.74__py3-none-any.whl → 0.10.76__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.
pycarlo/lib/schema.py CHANGED
@@ -735,6 +735,17 @@ class AutoOperator(sgqlc.types.Enum):
735
735
  __choices__ = ("AUTO", "AUTO_HIGH", "AUTO_LOW")
736
736
 
737
737
 
738
+ class AwsEnvConfiguration(sgqlc.types.Enum):
739
+ """Enumeration Choices:
740
+
741
+ * `primary`None
742
+ * `secondary`None
743
+ """
744
+
745
+ __schema__ = schema
746
+ __choices__ = ("primary", "secondary")
747
+
748
+
738
749
  class BiContainerModelType(sgqlc.types.Enum):
739
750
  """Enumeration Choices:
740
751
 
@@ -11800,6 +11811,47 @@ class AccountUsageObject(sgqlc.types.Type):
11800
11811
  """Timestamp of the usage record."""
11801
11812
 
11802
11813
 
11814
+ class ActiveNodeDetails(sgqlc.types.Type):
11815
+ """Active node information"""
11816
+
11817
+ __schema__ = schema
11818
+ __field_names__ = (
11819
+ "name",
11820
+ "stack_arn",
11821
+ "uuid",
11822
+ "code_version",
11823
+ "template_version",
11824
+ "private_cidr",
11825
+ "private_ip_addresses",
11826
+ )
11827
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
11828
+ """Node Name"""
11829
+
11830
+ stack_arn = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="stackArn")
11831
+ """Stack ARN"""
11832
+
11833
+ uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
11834
+ """Node UUID"""
11835
+
11836
+ code_version = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="codeVersion")
11837
+ """Code Version"""
11838
+
11839
+ template_version = sgqlc.types.Field(
11840
+ sgqlc.types.non_null(String), graphql_name="templateVersion"
11841
+ )
11842
+ """Template Version"""
11843
+
11844
+ private_cidr = sgqlc.types.Field(
11845
+ sgqlc.types.non_null(sgqlc.types.list_of(String)), graphql_name="privateCidr"
11846
+ )
11847
+ """Private CIDR"""
11848
+
11849
+ private_ip_addresses = sgqlc.types.Field(
11850
+ sgqlc.types.non_null(sgqlc.types.list_of(String)), graphql_name="privateIpAddresses"
11851
+ )
11852
+ """List of Private IP addresses"""
11853
+
11854
+
11803
11855
  class AddAllowListEntry(sgqlc.types.Type):
11804
11856
  __schema__ = schema
11805
11857
  __field_names__ = ("success", "project_name", "dataset")
@@ -13298,6 +13350,82 @@ class AwsAgentUpgradeLogEntry(sgqlc.types.Type):
13298
13350
  """Resource type, for example: 'AWS::Lambda::Function'."""
13299
13351
 
13300
13352
 
13353
+ class AwsInformation(sgqlc.types.Type):
13354
+ """AWS information"""
13355
+
13356
+ __schema__ = schema
13357
+ __field_names__ = (
13358
+ "account_id",
13359
+ "region",
13360
+ "secondary_region",
13361
+ "is_secondary",
13362
+ "env_configuration",
13363
+ )
13364
+ account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="accountId")
13365
+ """AWS Account ID"""
13366
+
13367
+ region = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="region")
13368
+ """AWS Region"""
13369
+
13370
+ secondary_region = sgqlc.types.Field(String, graphql_name="secondaryRegion")
13371
+ """AWS Secondary Region"""
13372
+
13373
+ is_secondary = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isSecondary")
13374
+ """Is this the Secondary Region?"""
13375
+
13376
+ env_configuration = sgqlc.types.Field(
13377
+ sgqlc.types.non_null(AwsEnvConfiguration), graphql_name="envConfiguration"
13378
+ )
13379
+ """Active AWS Environment Configuration"""
13380
+
13381
+
13382
+ class AwsPrivateLinkDetails(sgqlc.types.Type):
13383
+ """AWS Private Link information"""
13384
+
13385
+ __schema__ = schema
13386
+ __field_names__ = ("account_id", "mcd_principal", "regions")
13387
+ account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="accountId")
13388
+ """AWS Account ID"""
13389
+
13390
+ mcd_principal = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcdPrincipal")
13391
+ """MCD Principal"""
13392
+
13393
+ regions = sgqlc.types.Field(
13394
+ sgqlc.types.non_null(sgqlc.types.list_of("AwsPrivateLinkRegionDetails")),
13395
+ graphql_name="regions",
13396
+ )
13397
+ """List of AWS Private Link regions"""
13398
+
13399
+
13400
+ class AwsPrivateLinkRegionDetails(sgqlc.types.Type):
13401
+ """AWS Private Link region information"""
13402
+
13403
+ __schema__ = schema
13404
+ __field_names__ = (
13405
+ "region",
13406
+ "connection_vpc_id",
13407
+ "data_store_vpc_endpoint_id",
13408
+ "agent_vpc_endpoint_id",
13409
+ )
13410
+ region = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="region")
13411
+ """AWS Region"""
13412
+
13413
+ connection_vpc_id = sgqlc.types.Field(
13414
+ sgqlc.types.non_null(String), graphql_name="connectionVpcId"
13415
+ )
13416
+ """Connection VPC ID"""
13417
+
13418
+ data_store_vpc_endpoint_id = sgqlc.types.Field(
13419
+ sgqlc.types.non_null(String), graphql_name="dataStoreVpcEndpointId"
13420
+ )
13421
+ """Data Store VPC Endpoint ID"""
13422
+
13423
+ agent_vpc_endpoint_id = sgqlc.types.Field(
13424
+ sgqlc.types.non_null(String), graphql_name="agentVpcEndpointId"
13425
+ )
13426
+ """Agent VPC Endpoint ID"""
13427
+
13428
+
13301
13429
  class AzureAgentCleanupTasks(sgqlc.types.Type):
13302
13430
  __schema__ = schema
13303
13431
  __field_names__ = ("deleted_instances",)
@@ -13439,6 +13567,21 @@ class AzureDevopsSourceSelection(sgqlc.types.Type):
13439
13567
  repository_id = sgqlc.types.Field(String, graphql_name="repositoryId")
13440
13568
 
13441
13569
 
13570
+ class AzureInformation(sgqlc.types.Type):
13571
+ """Azure information"""
13572
+
13573
+ __schema__ = schema
13574
+ __field_names__ = ("subscription_id", "primary_region", "secondary_region")
13575
+ subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="subscriptionId")
13576
+ """Azure Subscription ID"""
13577
+
13578
+ primary_region = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="primaryRegion")
13579
+ """Azure Region"""
13580
+
13581
+ secondary_region = sgqlc.types.Field(String, graphql_name="secondaryRegion")
13582
+ """Azure Secondary Region"""
13583
+
13584
+
13442
13585
  class BiContainer(sgqlc.types.Type):
13443
13586
  __schema__ = schema
13444
13587
  __field_names__ = ("id", "account", "uuid", "data_collector", "type", "name", "connections")
@@ -14492,6 +14635,22 @@ class CollectionDataSetEdge(sgqlc.types.Type):
14492
14635
  """A cursor for use in pagination"""
14493
14636
 
14494
14637
 
14638
+ class CollectionDetails(sgqlc.types.Type):
14639
+ """Collection platform information"""
14640
+
14641
+ __schema__ = schema
14642
+ __field_names__ = ("private_link_details", "active_node_details")
14643
+ private_link_details = sgqlc.types.Field(
14644
+ "PrivateLinkDetails", graphql_name="privateLinkDetails"
14645
+ )
14646
+ """Private Link information"""
14647
+
14648
+ active_node_details = sgqlc.types.Field(
14649
+ sgqlc.types.list_of(ActiveNodeDetails), graphql_name="activeNodeDetails"
14650
+ )
14651
+ """List of active nodes"""
14652
+
14653
+
14495
14654
  class CollectionNode(sgqlc.types.Type):
14496
14655
  __schema__ = schema
14497
14656
  __field_names__ = ("id", "status", "stack_arn", "assigned_on", "resources")
@@ -20965,6 +21124,56 @@ class HolidayName(sgqlc.types.Type):
20965
21124
  """Textual description of when the holiday occurs"""
20966
21125
 
20967
21126
 
21127
+ class HostingDomainDetails(sgqlc.types.Type):
21128
+ """Hosting domain information"""
21129
+
21130
+ __schema__ = schema
21131
+ __field_names__ = ("ui", "api", "integrations")
21132
+ ui = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="ui")
21133
+ """Frontend URL"""
21134
+
21135
+ api = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="api")
21136
+ """GraphQL API URL"""
21137
+
21138
+ integrations = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="integrations")
21139
+ """Integrations Gateway URL"""
21140
+
21141
+
21142
+ class HostingInformation(sgqlc.types.Type):
21143
+ """Hosting information"""
21144
+
21145
+ __schema__ = schema
21146
+ __field_names__ = (
21147
+ "domain_details",
21148
+ "login_details",
21149
+ "infrastructure_details",
21150
+ "network_details",
21151
+ "collection_details",
21152
+ )
21153
+ domain_details = sgqlc.types.Field(
21154
+ sgqlc.types.non_null(HostingDomainDetails), graphql_name="domainDetails"
21155
+ )
21156
+ """Hosting domain information"""
21157
+
21158
+ login_details = sgqlc.types.Field(
21159
+ sgqlc.types.non_null("LoginDetails"), graphql_name="loginDetails"
21160
+ )
21161
+ """Login information"""
21162
+
21163
+ infrastructure_details = sgqlc.types.Field(
21164
+ sgqlc.types.non_null("InfrastructureDetails"), graphql_name="infrastructureDetails"
21165
+ )
21166
+ """Infrastructure information"""
21167
+
21168
+ network_details = sgqlc.types.Field(
21169
+ sgqlc.types.non_null("NetworkDetails"), graphql_name="networkDetails"
21170
+ )
21171
+ """Network information"""
21172
+
21173
+ collection_details = sgqlc.types.Field(CollectionDetails, graphql_name="collectionDetails")
21174
+ """Collection platform information"""
21175
+
21176
+
20968
21177
  class IncidentCategoryCount(sgqlc.types.Type):
20969
21178
  __schema__ = schema
20970
21179
  __field_names__ = ("incident_category", "category_count")
@@ -21302,6 +21511,29 @@ class IndexedFieldSpecType(sgqlc.types.Type):
21302
21511
  )
21303
21512
 
21304
21513
 
21514
+ class InfrastructureDetails(sgqlc.types.Type):
21515
+ """Infrastructure information"""
21516
+
21517
+ __schema__ = schema
21518
+ __field_names__ = ("cloud_designation", "tenant_id", "hosting_type", "aws", "azure")
21519
+ cloud_designation = sgqlc.types.Field(
21520
+ sgqlc.types.non_null(String), graphql_name="cloudDesignation"
21521
+ )
21522
+ """Cloud Designation"""
21523
+
21524
+ tenant_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="tenantId")
21525
+ """Tenant ID"""
21526
+
21527
+ hosting_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="hostingType")
21528
+ """Environment Hosting Type"""
21529
+
21530
+ aws = sgqlc.types.Field(sgqlc.types.non_null(AwsInformation), graphql_name="aws")
21531
+ """AWS information"""
21532
+
21533
+ azure = sgqlc.types.Field(AzureInformation, graphql_name="azure")
21534
+ """Azure information"""
21535
+
21536
+
21305
21537
  class Insight(sgqlc.types.Type):
21306
21538
  """Available data on a specific element of the system created by DS"""
21307
21539
 
@@ -22837,6 +23069,15 @@ class ListTagsOutput(sgqlc.types.Type):
22837
23069
  """Tags list."""
22838
23070
 
22839
23071
 
23072
+ class LoginDetails(sgqlc.types.Type):
23073
+ """Login information"""
23074
+
23075
+ __schema__ = schema
23076
+ __field_names__ = ("sso",)
23077
+ sso = sgqlc.types.Field(sgqlc.types.non_null("SsoDetails"), graphql_name="sso")
23078
+ """SSO information"""
23079
+
23080
+
22840
23081
  class LogsIntegrationOutput(sgqlc.types.Type):
22841
23082
  """A Logs integration (for monitor execution logging)"""
22842
23083
 
@@ -40625,6 +40866,40 @@ class NestedHighlightSnippets(sgqlc.types.Type):
40625
40866
  """Highlighted snippet of inner hit"""
40626
40867
 
40627
40868
 
40869
+ class NetworkDetails(sgqlc.types.Type):
40870
+ """Network information"""
40871
+
40872
+ __schema__ = schema
40873
+ __field_names__ = (
40874
+ "collection_public_ip_addresses",
40875
+ "saas_public_ip_addresses",
40876
+ "external_webhook_public_ip_addresses",
40877
+ "data_platform_public_ip_addresses",
40878
+ )
40879
+ collection_public_ip_addresses = sgqlc.types.Field(
40880
+ sgqlc.types.non_null(sgqlc.types.list_of(String)),
40881
+ graphql_name="collectionPublicIpAddresses",
40882
+ )
40883
+ """List of public IP addresses used by the collection platform"""
40884
+
40885
+ saas_public_ip_addresses = sgqlc.types.Field(
40886
+ sgqlc.types.non_null(sgqlc.types.list_of(String)), graphql_name="saasPublicIpAddresses"
40887
+ )
40888
+ """List of public IP addresses used by the SaaS platform"""
40889
+
40890
+ external_webhook_public_ip_addresses = sgqlc.types.Field(
40891
+ sgqlc.types.non_null(sgqlc.types.list_of(String)),
40892
+ graphql_name="externalWebhookPublicIpAddresses",
40893
+ )
40894
+ """List of public IP addresses used by the webhooks"""
40895
+
40896
+ data_platform_public_ip_addresses = sgqlc.types.Field(
40897
+ sgqlc.types.non_null(sgqlc.types.list_of(String)),
40898
+ graphql_name="dataPlatformPublicIpAddresses",
40899
+ )
40900
+ """List of public IP addresses used by the data platform"""
40901
+
40902
+
40628
40903
  class NextPageInfo(sgqlc.types.Type):
40629
40904
  __schema__ = schema
40630
40905
  __field_names__ = ("has_next_page", "end_cursor")
@@ -41962,6 +42237,15 @@ class PrimaryRcaData(sgqlc.types.Type):
41962
42237
  rca_uuid = sgqlc.types.Field(UUID, graphql_name="rcaUuid")
41963
42238
 
41964
42239
 
42240
+ class PrivateLinkDetails(sgqlc.types.Type):
42241
+ """Private Link information"""
42242
+
42243
+ __schema__ = schema
42244
+ __field_names__ = ("aws",)
42245
+ aws = sgqlc.types.Field(sgqlc.types.non_null(AwsPrivateLinkDetails), graphql_name="aws")
42246
+ """AWS Private Link information"""
42247
+
42248
+
41965
42249
  class ProjectAllowType(sgqlc.types.Type):
41966
42250
  __schema__ = schema
41967
42251
  __field_names__ = ("project_name", "datasets")
@@ -42255,6 +42539,7 @@ class Query(sgqlc.types.Type):
42255
42539
  "get_dbt_job_executions",
42256
42540
  "get_exec_dashboard_metrics",
42257
42541
  "get_exec_dashboard_tables",
42542
+ "get_hosting_info",
42258
42543
  "get_deployment_info",
42259
42544
  "get_custom_users",
42260
42545
  "get_unified_users",
@@ -47347,9 +47632,34 @@ class Query(sgqlc.types.Type):
47347
47632
  * `audience_ids` (`[UUID]`): Audience UUIDs.
47348
47633
  """
47349
47634
 
47350
- get_deployment_info = sgqlc.types.Field(DeploymentInfo, graphql_name="getDeploymentInfo")
47351
- """(general availability) Get the current deployment environment
47635
+ get_hosting_info = sgqlc.types.Field(
47636
+ HostingInformation,
47637
+ graphql_name="getHostingInfo",
47638
+ args=sgqlc.types.ArgDict(
47639
+ (
47640
+ (
47641
+ "env_configuration",
47642
+ sgqlc.types.Arg(
47643
+ AwsEnvConfiguration, graphql_name="envConfiguration", default=None
47644
+ ),
47645
+ ),
47646
+ )
47647
+ ),
47648
+ )
47649
+ """(general availability) Get the current hosting environment
47352
47650
  information for the current authorized user
47651
+
47652
+ Arguments:
47653
+
47654
+ * `env_configuration` (`AwsEnvConfiguration`): Type of env
47655
+ configuration to get the hosting information for
47656
+ (primary/secondary). If not specified, primary is assumed
47657
+ """
47658
+
47659
+ get_deployment_info = sgqlc.types.Field(DeploymentInfo, graphql_name="getDeploymentInfo")
47660
+ """(general availability) DEPRECATED. Get the current deployment
47661
+ environment information for the current authorized
47662
+ user
47353
47663
  """
47354
47664
 
47355
47665
  get_custom_users = sgqlc.types.Field(
@@ -60102,6 +60412,18 @@ class SqlQueryTable(sgqlc.types.Type):
60102
60412
  """MCONs of the table"""
60103
60413
 
60104
60414
 
60415
+ class SsoDetails(sgqlc.types.Type):
60416
+ """SSO information"""
60417
+
60418
+ __schema__ = schema
60419
+ __field_names__ = ("entity_id", "sso_url")
60420
+ entity_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="entityId")
60421
+ """SSO Entity ID"""
60422
+
60423
+ sso_url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="ssoUrl")
60424
+ """ACS endpoint URL / SSO URL"""
60425
+
60426
+
60105
60427
  class StartDatabricksCluster(sgqlc.types.Type):
60106
60428
  """Start Databricks Cluster."""
60107
60429
 
@@ -64421,6 +64743,7 @@ class Warehouse(sgqlc.types.Type):
64421
64743
  "deleted_at",
64422
64744
  "deleted_by",
64423
64745
  "config",
64746
+ "created_by",
64424
64747
  "connections",
64425
64748
  "tables",
64426
64749
  "incidents",
@@ -64482,6 +64805,9 @@ class Warehouse(sgqlc.types.Type):
64482
64805
 
64483
64806
  config = sgqlc.types.Field(JSONString, graphql_name="config")
64484
64807
 
64808
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
64809
+ """User who created this warehouse"""
64810
+
64485
64811
  connections = sgqlc.types.Field(
64486
64812
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
64487
64813
  graphql_name="connections",
@@ -65930,6 +66256,7 @@ class AuthUser(sgqlc.types.Type, Node):
65930
66256
  "user_settings",
65931
66257
  "invitees",
65932
66258
  "warehouse_deleted_by",
66259
+ "created_warehouses",
65933
66260
  "eventmodel_set",
65934
66261
  "eventdetectorfeedbackmodel_created_by",
65935
66262
  "eventdetectorfeedbackmodel_updated_by",
@@ -66140,6 +66467,12 @@ class AuthUser(sgqlc.types.Type, Node):
66140
66467
  graphql_name="warehouseDeletedBy",
66141
66468
  )
66142
66469
 
66470
+ created_warehouses = sgqlc.types.Field(
66471
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
66472
+ graphql_name="createdWarehouses",
66473
+ )
66474
+ """User who created this warehouse"""
66475
+
66143
66476
  eventmodel_set = sgqlc.types.Field(
66144
66477
  sgqlc.types.non_null(EventConnection),
66145
66478
  graphql_name="eventmodelSet",
@@ -71859,6 +72192,7 @@ class User(sgqlc.types.Type, Node):
71859
72192
  "user_settings",
71860
72193
  "invitees",
71861
72194
  "warehouse_deleted_by",
72195
+ "created_warehouses",
71862
72196
  "eventmodel_set",
71863
72197
  "eventdetectorfeedbackmodel_created_by",
71864
72198
  "eventdetectorfeedbackmodel_updated_by",
@@ -72072,6 +72406,12 @@ class User(sgqlc.types.Type, Node):
72072
72406
  graphql_name="warehouseDeletedBy",
72073
72407
  )
72074
72408
 
72409
+ created_warehouses = sgqlc.types.Field(
72410
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
72411
+ graphql_name="createdWarehouses",
72412
+ )
72413
+ """User who created this warehouse"""
72414
+
72075
72415
  eventmodel_set = sgqlc.types.Field(
72076
72416
  sgqlc.types.non_null(EventConnection),
72077
72417
  graphql_name="eventmodelSet",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.74
3
+ Version: 0.10.76
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -35,10 +35,10 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
35
35
  pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
36
36
  pycarlo/lib/README.md,sha256=QGNeUefPzLKGyZqn5aITpcFgkC9WQTNS292BGisRFHk,139
37
37
  pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- pycarlo/lib/schema.json,sha256=3B_0jf4rgTsudSSHH8ooJD5C9G9UDAjnxjyB96EKUwk,5975740
39
- pycarlo/lib/schema.py,sha256=iCukLXAiFyJIYvYvRICMlKzY0nTUmRFdvCbZXjo5g4g,2582393
40
- pycarlo-0.10.74.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.74.dist-info/METADATA,sha256=9y4ch90UNiIfzuHL0IUQC_9N0EoysTyINgTxWNkzQfU,8741
42
- pycarlo-0.10.74.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.74.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.74.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=QB6jjG2OnaqXJ32SeLydo_t2PuKsXL34X5Rp74Y1CB8,6005210
39
+ pycarlo/lib/schema.py,sha256=ik2h44dmoIeBcdE0c9r3ke5TjH-BJXD0PfCRc3CynXQ,2593114
40
+ pycarlo-0.10.76.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.76.dist-info/METADATA,sha256=AsTbBNe-uYB4b1p6lnVo5DjMEsnySZhKHEazhA1hk8k,8741
42
+ pycarlo-0.10.76.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.76.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.76.dist-info/RECORD,,