placo 0.8.10__0-cp310-cp310-macosx_10_9_x86_64.whl → 0.9.0__0-cp310-cp310-macosx_10_9_x86_64.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.
Potentially problematic release.
This version of placo might be problematic. Click here for more details.
- cmeel.prefix/lib/liblibplaco.dylib +0 -0
- cmeel.prefix/lib/python3.10/site-packages/placo.pyi +163 -9
- cmeel.prefix/lib/python3.10/site-packages/placo.so +0 -0
- {placo-0.8.10.dist-info → placo-0.9.0.dist-info}/METADATA +1 -1
- placo-0.9.0.dist-info/RECORD +12 -0
- placo-0.8.10.dist-info/RECORD +0 -12
- {placo-0.8.10.dist-info → placo-0.9.0.dist-info}/WHEEL +0 -0
- {placo-0.8.10.dist-info → placo-0.9.0.dist-info}/licenses/LICENSE +0 -0
- {placo-0.8.10.dist-info → placo-0.9.0.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -15,6 +15,7 @@ Contact6D = typing.NewType("Contact6D", None)
|
|
|
15
15
|
CubicSpline = typing.NewType("CubicSpline", None)
|
|
16
16
|
CubicSpline3D = typing.NewType("CubicSpline3D", None)
|
|
17
17
|
Distance = typing.NewType("Distance", None)
|
|
18
|
+
DistanceConstraint = typing.NewType("DistanceConstraint", None)
|
|
18
19
|
DistanceTask = typing.NewType("DistanceTask", None)
|
|
19
20
|
DynamicsCoMTask = typing.NewType("DynamicsCoMTask", None)
|
|
20
21
|
DynamicsConstraint = typing.NewType("DynamicsConstraint", None)
|
|
@@ -90,6 +91,7 @@ WPGTrajectoryPart = typing.NewType("WPGTrajectoryPart", None)
|
|
|
90
91
|
WalkPatternGenerator = typing.NewType("WalkPatternGenerator", None)
|
|
91
92
|
WalkTasks = typing.NewType("WalkTasks", None)
|
|
92
93
|
WheelTask = typing.NewType("WheelTask", None)
|
|
94
|
+
YawConstraint = typing.NewType("YawConstraint", None)
|
|
93
95
|
boost_type_index = typing.NewType("boost_type_index", None)
|
|
94
96
|
map_indexing_suite_map_string_double_entry = typing.NewType("map_indexing_suite_map_string_double_entry", None)
|
|
95
97
|
map_string_double = typing.NewType("map_string_double", None)
|
|
@@ -1183,6 +1185,65 @@ None( (placo.Distance)arg1) -> object :
|
|
|
1183
1185
|
"""
|
|
1184
1186
|
|
|
1185
1187
|
|
|
1188
|
+
class DistanceConstraint:
|
|
1189
|
+
def __init__(
|
|
1190
|
+
self,
|
|
1191
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
1192
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
1193
|
+
distance_max: float, # double
|
|
1194
|
+
) -> any:
|
|
1195
|
+
"""
|
|
1196
|
+
Constraints the distance betweek two points in the robot.
|
|
1197
|
+
|
|
1198
|
+
:param any frame_a:
|
|
1199
|
+
|
|
1200
|
+
:param any frame_b:
|
|
1201
|
+
|
|
1202
|
+
:param float distance_max:
|
|
1203
|
+
"""
|
|
1204
|
+
...
|
|
1205
|
+
|
|
1206
|
+
def configure(
|
|
1207
|
+
self,
|
|
1208
|
+
name: str, # std::string
|
|
1209
|
+
priority: str = "soft", # std::string
|
|
1210
|
+
weight: float = 1.0, # double
|
|
1211
|
+
) -> None:
|
|
1212
|
+
"""
|
|
1213
|
+
Configures the object.
|
|
1214
|
+
|
|
1215
|
+
:param str name: task name
|
|
1216
|
+
|
|
1217
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
1218
|
+
|
|
1219
|
+
:param float weight: task weight
|
|
1220
|
+
"""
|
|
1221
|
+
...
|
|
1222
|
+
|
|
1223
|
+
distance_max: any
|
|
1224
|
+
"""
|
|
1225
|
+
|
|
1226
|
+
None( (placo.DistanceConstraint)arg1) -> float :
|
|
1227
|
+
|
|
1228
|
+
C++ signature :
|
|
1229
|
+
double {lvalue} None(placo::kinematics::DistanceConstraint {lvalue})
|
|
1230
|
+
"""
|
|
1231
|
+
|
|
1232
|
+
name: any
|
|
1233
|
+
"""
|
|
1234
|
+
|
|
1235
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
1236
|
+
|
|
1237
|
+
C++ signature :
|
|
1238
|
+
std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
1239
|
+
"""
|
|
1240
|
+
|
|
1241
|
+
priority: str
|
|
1242
|
+
"""
|
|
1243
|
+
Priority [str]
|
|
1244
|
+
"""
|
|
1245
|
+
|
|
1246
|
+
|
|
1186
1247
|
class DistanceTask:
|
|
1187
1248
|
A: any
|
|
1188
1249
|
"""
|
|
@@ -4206,7 +4267,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4206
4267
|
"""
|
|
4207
4268
|
Computes all minimum distances between current collision pairs.
|
|
4208
4269
|
|
|
4209
|
-
:return: <Element 'para' at
|
|
4270
|
+
:return: <Element 'para' at 0x106235f80>
|
|
4210
4271
|
"""
|
|
4211
4272
|
...
|
|
4212
4273
|
|
|
@@ -4239,7 +4300,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4239
4300
|
|
|
4240
4301
|
:param any frame: the frame for which we want the jacobian
|
|
4241
4302
|
|
|
4242
|
-
:return: <Element 'para' at
|
|
4303
|
+
:return: <Element 'para' at 0x106236a70>
|
|
4243
4304
|
"""
|
|
4244
4305
|
...
|
|
4245
4306
|
|
|
@@ -4253,7 +4314,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryM
|
|
|
4253
4314
|
|
|
4254
4315
|
:param any frame: the frame for which we want the jacobian time variation
|
|
4255
4316
|
|
|
4256
|
-
:return: <Element 'para' at
|
|
4317
|
+
:return: <Element 'para' at 0x1062284a0>
|
|
4257
4318
|
"""
|
|
4258
4319
|
...
|
|
4259
4320
|
|
|
@@ -4565,7 +4626,7 @@ None( (placo.HumanoidRobot)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
4565
4626
|
|
|
4566
4627
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
4567
4628
|
|
|
4568
|
-
:return: <Element 'para' at
|
|
4629
|
+
:return: <Element 'para' at 0x106235850>
|
|
4569
4630
|
"""
|
|
4570
4631
|
...
|
|
4571
4632
|
|
|
@@ -5383,6 +5444,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5383
5444
|
"""
|
|
5384
5445
|
...
|
|
5385
5446
|
|
|
5447
|
+
def add_distance_constraint(
|
|
5448
|
+
self,
|
|
5449
|
+
frame_a: str, # std::string
|
|
5450
|
+
frame_b: str, # std::string
|
|
5451
|
+
distance_max: float, # double
|
|
5452
|
+
) -> DistanceConstraint:
|
|
5453
|
+
"""
|
|
5454
|
+
Adds a distance constraint.
|
|
5455
|
+
|
|
5456
|
+
:param str frame_a: frame A
|
|
5457
|
+
|
|
5458
|
+
:param str frame_b: frame B
|
|
5459
|
+
|
|
5460
|
+
:param float distance_max: maximum distance between the two frames
|
|
5461
|
+
"""
|
|
5462
|
+
...
|
|
5463
|
+
|
|
5386
5464
|
def add_distance_task(
|
|
5387
5465
|
self,
|
|
5388
5466
|
frame_a: str, # std::string
|
|
@@ -5587,6 +5665,23 @@ None( (placo.KinematicsSolver)arg1) -> int :
|
|
|
5587
5665
|
"""
|
|
5588
5666
|
...
|
|
5589
5667
|
|
|
5668
|
+
def add_yaw_constraint(
|
|
5669
|
+
self,
|
|
5670
|
+
frame_a: str, # std::string
|
|
5671
|
+
frame_b: str, # std::string
|
|
5672
|
+
alpha_max: float, # double
|
|
5673
|
+
) -> YawConstraint:
|
|
5674
|
+
"""
|
|
5675
|
+
Adds a yaw constraint.
|
|
5676
|
+
|
|
5677
|
+
:param str frame_a: frame A
|
|
5678
|
+
|
|
5679
|
+
:param str frame_b: frame B
|
|
5680
|
+
|
|
5681
|
+
:param float alpha_max: angle max for yaw of x-axis in frame b in a
|
|
5682
|
+
"""
|
|
5683
|
+
...
|
|
5684
|
+
|
|
5590
5685
|
def clear(
|
|
5591
5686
|
self,
|
|
5592
5687
|
) -> None:
|
|
@@ -7469,7 +7564,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7469
7564
|
"""
|
|
7470
7565
|
Computes all minimum distances between current collision pairs.
|
|
7471
7566
|
|
|
7472
|
-
:return: <Element 'para' at
|
|
7567
|
+
:return: <Element 'para' at 0x10604bf60>
|
|
7473
7568
|
"""
|
|
7474
7569
|
...
|
|
7475
7570
|
|
|
@@ -7483,7 +7578,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7483
7578
|
|
|
7484
7579
|
:param any frame: the frame for which we want the jacobian
|
|
7485
7580
|
|
|
7486
|
-
:return: <Element 'para' at
|
|
7581
|
+
:return: <Element 'para' at 0x106054a90>
|
|
7487
7582
|
"""
|
|
7488
7583
|
...
|
|
7489
7584
|
|
|
@@ -7497,7 +7592,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.GeometryMo
|
|
|
7497
7592
|
|
|
7498
7593
|
:param any frame: the frame for which we want the jacobian time variation
|
|
7499
7594
|
|
|
7500
|
-
:return: <Element 'para' at
|
|
7595
|
+
:return: <Element 'para' at 0x106056480>
|
|
7501
7596
|
"""
|
|
7502
7597
|
...
|
|
7503
7598
|
|
|
@@ -7738,7 +7833,7 @@ None( (placo.RobotWrapper)arg1) -> pinocchio.pinocchio_pywrap_default.Model :
|
|
|
7738
7833
|
|
|
7739
7834
|
:param bool stop_at_first: whether to stop at the first collision found
|
|
7740
7835
|
|
|
7741
|
-
:return: <Element 'para' at
|
|
7836
|
+
:return: <Element 'para' at 0x10604b830>
|
|
7742
7837
|
"""
|
|
7743
7838
|
...
|
|
7744
7839
|
|
|
@@ -9321,6 +9416,65 @@ None( (placo.WheelTask)arg1) -> float :
|
|
|
9321
9416
|
...
|
|
9322
9417
|
|
|
9323
9418
|
|
|
9419
|
+
class YawConstraint:
|
|
9420
|
+
def __init__(
|
|
9421
|
+
self,
|
|
9422
|
+
frame_a: any, # pinocchio::FrameIndex
|
|
9423
|
+
frame_b: any, # pinocchio::FrameIndex
|
|
9424
|
+
angle_max: float, # double
|
|
9425
|
+
) -> any:
|
|
9426
|
+
"""
|
|
9427
|
+
Constrains the yaw of frame b in frame a, such that the x-axis of frame b should remain with +- angle_max.
|
|
9428
|
+
|
|
9429
|
+
:param any frame_a:
|
|
9430
|
+
|
|
9431
|
+
:param any frame_b:
|
|
9432
|
+
|
|
9433
|
+
:param float angle_max:
|
|
9434
|
+
"""
|
|
9435
|
+
...
|
|
9436
|
+
|
|
9437
|
+
angle_max: any
|
|
9438
|
+
"""
|
|
9439
|
+
|
|
9440
|
+
None( (placo.YawConstraint)arg1) -> float :
|
|
9441
|
+
|
|
9442
|
+
C++ signature :
|
|
9443
|
+
double {lvalue} None(placo::kinematics::YawConstraint {lvalue})
|
|
9444
|
+
"""
|
|
9445
|
+
|
|
9446
|
+
def configure(
|
|
9447
|
+
self,
|
|
9448
|
+
name: str, # std::string
|
|
9449
|
+
priority: str = "soft", # std::string
|
|
9450
|
+
weight: float = 1.0, # double
|
|
9451
|
+
) -> None:
|
|
9452
|
+
"""
|
|
9453
|
+
Configures the object.
|
|
9454
|
+
|
|
9455
|
+
:param str name: task name
|
|
9456
|
+
|
|
9457
|
+
:param str priority: task priority (hard, soft or scaled)
|
|
9458
|
+
|
|
9459
|
+
:param float weight: task weight
|
|
9460
|
+
"""
|
|
9461
|
+
...
|
|
9462
|
+
|
|
9463
|
+
name: any
|
|
9464
|
+
"""
|
|
9465
|
+
|
|
9466
|
+
None( (placo.Prioritized)arg1) -> str :
|
|
9467
|
+
|
|
9468
|
+
C++ signature :
|
|
9469
|
+
std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char>> {lvalue} None(placo::tools::Prioritized {lvalue})
|
|
9470
|
+
"""
|
|
9471
|
+
|
|
9472
|
+
priority: str
|
|
9473
|
+
"""
|
|
9474
|
+
Priority [str]
|
|
9475
|
+
"""
|
|
9476
|
+
|
|
9477
|
+
|
|
9324
9478
|
class boost_type_index:
|
|
9325
9479
|
def __init__(
|
|
9326
9480
|
) -> any:
|
|
@@ -9553,4 +9707,4 @@ def wrap_angle(
|
|
|
9553
9707
|
...
|
|
9554
9708
|
|
|
9555
9709
|
|
|
9556
|
-
__groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
|
|
9710
|
+
__groups__ = {'placo::dynamics': ['AvoidSelfCollisionsDynamicsConstraint', 'Contact', 'Contact6D', 'DynamicsCoMTask', 'DynamicsConstraint', 'DynamicsFrameTask', 'DynamicsGearTask', 'DynamicsJointsTask', 'DynamicsOrientationTask', 'DynamicsPositionTask', 'DynamicsRelativeFrameTask', 'DynamicsRelativeOrientationTask', 'DynamicsRelativePositionTask', 'DynamicsSolver', 'DynamicsSolverResult', 'DynamicsTask', 'DynamicsTorqueTask', 'ExternalWrenchContact', 'LineContact', 'PointContact', 'PuppetContact', 'TaskContact'], 'placo::kinematics': ['AvoidSelfCollisionsKinematicsConstraint', 'AxisAlignTask', 'CentroidalMomentumTask', 'CoMPolygonConstraint', 'CoMTask', 'ConeConstraint', 'DistanceConstraint', 'DistanceTask', 'FrameTask', 'GearTask', 'JointSpaceHalfSpacesConstraint', 'JointsTask', 'KinematicsConstraint', 'KinematicsSolver', 'KineticEnergyRegularizationTask', 'ManipulabilityTask', 'OrientationTask', 'PositionTask', 'RegularizationTask', 'RelativeFrameTask', 'RelativeOrientationTask', 'RelativePositionTask', 'Task', 'WheelTask', 'YawConstraint'], 'placo::tools': ['AxisesMask', 'CubicSpline', 'CubicSpline3D', 'Polynom', 'Prioritized', 'Segment'], 'placo::model': ['Collision', 'Distance', 'RobotWrapper', 'RobotWrapper_State'], 'placo::problem': ['Expression', 'Integrator', 'IntegratorTrajectory', 'PolygonConstraint', 'Problem', 'ProblemConstraint', 'ProblemPolynom', 'QPError', 'Sparsity', 'SparsityInterval', 'Variable'], 'placo::humanoid': ['Footstep', 'FootstepsPlanner', 'FootstepsPlannerNaive', 'FootstepsPlannerRepetitive', 'HumanoidParameters', 'HumanoidRobot', 'LIPM', 'LIPMTrajectory', 'Support', 'SwingFoot', 'SwingFootCubic', 'SwingFootCubicTrajectory', 'SwingFootQuintic', 'SwingFootQuinticTrajectory', 'SwingFootTrajectory', 'WPGTrajectory', 'WPGTrajectoryPart', 'WalkPatternGenerator', 'WalkTasks']}
|
|
Binary file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
cmeel.prefix/lib/liblibplaco.dylib,sha256=A59S06V7Aea4lvbgim2BFx97DEG1m2IB3YrCB2ZU2YU,1688264
|
|
2
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=Ecu-e5XWxrcs5Ca1PZACw7T8-zX791atnE-QI9WxMLQ,197943
|
|
3
|
+
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=-1ux82g5DKMqkfxjFR4k8fakF1AyawWJDvj2Ewqy1_Q,7064848
|
|
4
|
+
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
+
cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
+
cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
+
cmeel.prefix/lib/python3.10/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
+
placo-0.9.0.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
+
placo-0.9.0.dist-info/METADATA,sha256=TPffHbvHnORg7JqUME69Tzf179PvC5sokN6xY2AhY5g,2620
|
|
10
|
+
placo-0.9.0.dist-info/WHEEL,sha256=APmVEh1L_55UCtY5TQhEj2dpYCuDyHQ2_u87TOsUIRk,112
|
|
11
|
+
placo-0.9.0.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
placo-0.9.0.dist-info/RECORD,,
|
placo-0.8.10.dist-info/RECORD
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
cmeel.prefix/lib/liblibplaco.dylib,sha256=qQRl1MpNoriDONx1z4CIUXt2-iTdcaSeBHauuBYrPR4,1669120
|
|
2
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.pyi,sha256=l7ojJ4y7PDQgXebYQ8RdHx8jYel4lWAJCsQWfU75i2Y,194686
|
|
3
|
-
cmeel.prefix/lib/python3.10/site-packages/placo.so,sha256=5knzFgHMeRqf9Y_qp8JgES2bDYOqcsIHKZhl4NWQsPA,6991808
|
|
4
|
-
cmeel.prefix/lib/python3.10/site-packages/placo_utils/__init__.py,sha256=UN-fc5KfBWQ-_qkm0Ajouh-T9tBGm5aUtuzBiH1tRtk,80
|
|
5
|
-
cmeel.prefix/lib/python3.10/site-packages/placo_utils/tf.py,sha256=fFRXNbeLlXzn5VOqYl7hcSuvOOtTDTiLi_Lpd9_l6wA,36
|
|
6
|
-
cmeel.prefix/lib/python3.10/site-packages/placo_utils/view.py,sha256=7KiLYGpTKaPJtFHZ6kjERdOzJiPSDUtkIKHbziHpkYk,928
|
|
7
|
-
cmeel.prefix/lib/python3.10/site-packages/placo_utils/visualization.py,sha256=MiUn91MtezIpaP-bBj5g5PqVQNbDWdKkZxbvS_nu93I,8330
|
|
8
|
-
placo-0.8.10.dist-info/licenses/LICENSE,sha256=q2bBXvk4Eh7TmP11LoIOIGSUuJbR30JBI6ZZ37g52T4,1061
|
|
9
|
-
placo-0.8.10.dist-info/METADATA,sha256=1LTdooqrP_YI0_MPBR5qsfSucytLvTeG84QY0MxVZ_A,2621
|
|
10
|
-
placo-0.8.10.dist-info/WHEEL,sha256=APmVEh1L_55UCtY5TQhEj2dpYCuDyHQ2_u87TOsUIRk,112
|
|
11
|
-
placo-0.8.10.dist-info/top_level.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
-
placo-0.8.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|