funboost 49.2__py3-none-any.whl → 49.3__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.
Potentially problematic release.
This version of funboost might be problematic. Click here for more details.
- funboost/__init__.py +1 -1
- funboost/concurrent_pool/async_pool_executor.py +8 -10
- funboost/consumers/rocketmq_consumer.py +2 -2
- funboost/publishers/redis_publisher_priority.py +1 -1
- {funboost-49.2.dist-info → funboost-49.3.dist-info}/METADATA +85 -19
- {funboost-49.2.dist-info → funboost-49.3.dist-info}/RECORD +10 -10
- {funboost-49.2.dist-info → funboost-49.3.dist-info}/LICENSE +0 -0
- {funboost-49.2.dist-info → funboost-49.3.dist-info}/WHEEL +0 -0
- {funboost-49.2.dist-info → funboost-49.3.dist-info}/entry_points.txt +0 -0
- {funboost-49.2.dist-info → funboost-49.3.dist-info}/top_level.txt +0 -0
funboost/__init__.py
CHANGED
|
@@ -48,7 +48,7 @@ if sys.platform == "darwin": # mac 上会出错
|
|
|
48
48
|
import selectors
|
|
49
49
|
selectors.DefaultSelector = selectors.PollSelector
|
|
50
50
|
|
|
51
|
-
class
|
|
51
|
+
class AsyncPoolExecutor(FunboostFileLoggerMixin,FunboostBaseConcurrentPool):
|
|
52
52
|
"""
|
|
53
53
|
使api和线程池一样,最好的性能做法是submit也弄成 async def,生产和消费在同一个线程同一个loop一起运行,但会对调用链路的兼容性产生破坏,从而调用方式不兼容线程池。
|
|
54
54
|
"""
|
|
@@ -80,8 +80,12 @@ class AsyncPoolExecutorLtPy310(FunboostFileLoggerMixin,FunboostBaseConcurrentPoo
|
|
|
80
80
|
# time.sleep(0.01)
|
|
81
81
|
|
|
82
82
|
def _diff_init(self):
|
|
83
|
-
|
|
84
|
-
|
|
83
|
+
if sys.version_info.minor < 10:
|
|
84
|
+
# self._sem = asyncio.Semaphore(self._size, loop=self.loop)
|
|
85
|
+
self._queue = asyncio.Queue(maxsize=self._size, loop=self.loop)
|
|
86
|
+
else:
|
|
87
|
+
# self._sem = asyncio.Semaphore(self._size) # python3.10后,很多类和方法都删除了loop传参
|
|
88
|
+
self._queue = asyncio.Queue(maxsize=self._size)
|
|
85
89
|
|
|
86
90
|
|
|
87
91
|
def submit(self, func, *args, **kwargs):
|
|
@@ -101,7 +105,7 @@ class AsyncPoolExecutorLtPy310(FunboostFileLoggerMixin,FunboostBaseConcurrentPoo
|
|
|
101
105
|
try:
|
|
102
106
|
await func(*args, **kwargs)
|
|
103
107
|
except BaseException as e:
|
|
104
|
-
traceback.
|
|
108
|
+
self.logger.exception(f'func:{func}, args:{args}, kwargs:{kwargs} exc_type:{type(e)} traceback_exc:{traceback.format_exc()}')
|
|
105
109
|
# self._queue.task_done()
|
|
106
110
|
|
|
107
111
|
async def __run(self):
|
|
@@ -135,17 +139,11 @@ class AsyncPoolExecutorLtPy310(FunboostFileLoggerMixin,FunboostBaseConcurrentPoo
|
|
|
135
139
|
|
|
136
140
|
|
|
137
141
|
|
|
138
|
-
class AsyncPoolExecutorGtPy310(AsyncPoolExecutorLtPy310):
|
|
139
|
-
|
|
140
|
-
def _diff_init(self):
|
|
141
|
-
self._sem = asyncio.Semaphore(self._size, ) # python3.10后,很多类和方法都删除了loop传参
|
|
142
|
-
self._queue = asyncio.Queue(maxsize=self._size, )
|
|
143
142
|
|
|
144
143
|
|
|
145
144
|
|
|
146
145
|
|
|
147
146
|
|
|
148
|
-
AsyncPoolExecutor = AsyncPoolExecutorLtPy310 if sys.version_info.minor < 10 else AsyncPoolExecutorGtPy310
|
|
149
147
|
|
|
150
148
|
|
|
151
149
|
|
|
@@ -22,12 +22,12 @@ class RocketmqConsumer(AbstractConsumer):
|
|
|
22
22
|
except BaseException as e:
|
|
23
23
|
# print(traceback.format_exc())
|
|
24
24
|
raise ImportError(f'rocketmq包 只支持linux和mac {e}')
|
|
25
|
-
consumer = PushConsumer(self.GROUP_ID)
|
|
25
|
+
consumer = PushConsumer(f'{self.GROUP_ID}_{self._queue_name}')
|
|
26
26
|
consumer.set_namesrv_addr(BrokerConnConfig.ROCKETMQ_NAMESRV_ADDR)
|
|
27
27
|
consumer.set_thread_count(1)
|
|
28
28
|
consumer.set_message_batch_max_size(self.consumer_params.concurrent_num)
|
|
29
29
|
|
|
30
|
-
self._publisher = RocketmqPublisher(publisher_params=PublisherParams(queue_name=self._queue_name))
|
|
30
|
+
self._publisher = RocketmqPublisher(publisher_params=PublisherParams(queue_name=self._queue_name,))
|
|
31
31
|
|
|
32
32
|
def callback(rocketmq_msg):
|
|
33
33
|
# self.logger.debug(f'从rocketmq的 [{self._queue_name}] 主题的queue_id {rocketmq_msg.queue_id} 中 取出的消息是:{rocketmq_msg.body}')
|
|
@@ -28,7 +28,7 @@ class RedisPriorityPublisher(FlushRedisQueueMixin,AbstractPublisher, RedisMixin,
|
|
|
28
28
|
:return:
|
|
29
29
|
"""
|
|
30
30
|
priority = self._get_from_other_extra_params('priroty', msg)
|
|
31
|
-
x_max_priority = self.publisher_params.broker_exclusive_config
|
|
31
|
+
x_max_priority = self.publisher_params.broker_exclusive_config['x-max-priority']
|
|
32
32
|
queue_name = self.queue_name
|
|
33
33
|
if x_max_priority and priority:
|
|
34
34
|
priority = min(priority, x_max_priority) # 防止有傻瓜发布消息的优先级priroty比最大支持的优先级还高。
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: funboost
|
|
3
|
-
Version: 49.
|
|
3
|
+
Version: 49.3
|
|
4
4
|
Summary: pip install funboost,python全功能分布式函数调度框架,funboost的功能是全面性重量级,用户能想得到的功能99%全都有;funboost的使用方式是轻量级,只有@boost一行代码需要写。支持python所有类型的并发模式和一切知名消息队列中间件,支持如 celery dramatiq等框架整体作为funboost中间件,python函数加速器,框架包罗万象,用户能想到的控制功能全都有。一统编程思维,兼容50% python业务场景,适用范围广。只需要一行代码即可分布式执行python一切函数,funboost web manager 方便查看和管理消费函数;99%用过funboost的pythoner 感受是 简易 方便 强劲 强大,相见恨晚
|
|
5
5
|
Home-page: https://github.com/ydf0509/funboost
|
|
6
6
|
Author: bfzs
|
|
@@ -160,8 +160,10 @@ Broker。funboost源码高扩展性的设计,造成“万物皆可为Broker”
|
|
|
160
160
|
框架对代码没有入侵,可以加到任意已有项目而对项目python文件目录结构0要求,
|
|
161
161
|
不像 celery django scrapy 这样的框架,要从一开始就开始规划好项目目录结构,如果不想用框架了,
|
|
162
162
|
或者想改变使用其他框架框架,那么已经所写的代码组织形式就几乎成了废物,需要大改特改.
|
|
163
|
-
但是funboost
|
|
163
|
+
但是funboost完全不会这样,就算是加上或去掉@boost装饰器,对你的项目影响为0,用户照常使用,
|
|
164
164
|
所以用户可以对任意项目,任意时候,引入使用funboost或者去掉使用funboost,代码组织形式不需要发生变化.
|
|
165
|
+
(即使不想用funboost了,也不需要亲自去掉@boost装饰器,因为函数有@boost装饰器对函数自身的直接调用运行没有任何影响,
|
|
166
|
+
用户照样可以直接例如 fun(x,y)是直接运行函数 , fun.push(x,y) 才是发送到消息队列)
|
|
165
167
|
|
|
166
168
|
通过funboost web manager 管理系统,支持全面 查看 监控 管理 funboost的任务消费。
|
|
167
169
|
</pre>
|
|
@@ -573,26 +575,32 @@ if __name__ == "__main__":
|
|
|
573
575
|
|
|
574
576
|
|
|
575
577
|
|
|
576
|
-
## 1.3.2 funboost
|
|
578
|
+
## 1.3.2 funboost集中演示一个功能更多的综合例子
|
|
577
579
|
|
|
578
580
|
```python
|
|
579
581
|
|
|
582
|
+
|
|
580
583
|
"""
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
584
|
+
一个展示更全面 funboost 用法的例子
|
|
585
|
+
包含了
|
|
586
|
+
1.继承BoosterParams,为了每个装饰器少写入参
|
|
587
|
+
2.rpc获取结果
|
|
588
|
+
3.连续丝滑启动多个消费函数
|
|
589
|
+
4.定时任务
|
|
585
590
|
"""
|
|
586
|
-
from funboost import boost, BrokerEnum,BoosterParams,ctrl_c_recv,ConcurrentModeEnum
|
|
591
|
+
from funboost import boost, BrokerEnum,BoosterParams,ctrl_c_recv,ConcurrentModeEnum,ApsJobAdder
|
|
587
592
|
import time
|
|
588
593
|
|
|
589
594
|
class MyBoosterParams(BoosterParams): # 自定义的参数类,继承BoosterParams,用于减少每个消费函数装饰器的重复相同入参个数
|
|
590
|
-
broker_kind: str = BrokerEnum.
|
|
595
|
+
broker_kind: str = BrokerEnum.REDIS_ACK_ABLE
|
|
591
596
|
max_retry_times: int = 3
|
|
592
597
|
concurrent_mode: str = ConcurrentModeEnum.THREADING
|
|
593
598
|
|
|
594
599
|
|
|
595
|
-
@boost(MyBoosterParams(queue_name='s1_queue', qps=1,
|
|
600
|
+
@boost(MyBoosterParams(queue_name='s1_queue', qps=1,
|
|
601
|
+
# do_task_filtering=True, # 可开启任务过滤,防止重复入参消费。
|
|
602
|
+
is_using_rpc_mode=True, # 开启rpc模式,支持rpc获取结果
|
|
603
|
+
))
|
|
596
604
|
def step1(a:int,b:int):
|
|
597
605
|
print(f'a={a},b={b}')
|
|
598
606
|
time.sleep(0.7)
|
|
@@ -601,20 +609,75 @@ def step1(a:int,b:int):
|
|
|
601
609
|
return a+b
|
|
602
610
|
|
|
603
611
|
|
|
604
|
-
@boost(MyBoosterParams(queue_name='s2_queue', qps=3,
|
|
605
|
-
|
|
612
|
+
@boost(MyBoosterParams(queue_name='s2_queue', qps=3,
|
|
613
|
+
max_retry_times=5,# 可以在此覆盖MyBoosterParams中的默认值,例如为step2单独设置最大重试次数为5
|
|
614
|
+
))
|
|
615
|
+
def step2(c:int,d:int,e:int=666):
|
|
606
616
|
time.sleep(3)
|
|
607
617
|
print(f'c={c},d={d},e={e}')
|
|
608
618
|
return c* d * e
|
|
609
619
|
|
|
610
620
|
|
|
611
621
|
if __name__ == '__main__':
|
|
612
|
-
|
|
613
|
-
|
|
622
|
+
step1.clear() # 清空队列
|
|
623
|
+
step2.clear() # 清空队列
|
|
624
|
+
|
|
614
625
|
step1.consume() # 调用.consume是非阻塞的启动消费,是在单独的子线程中循环拉取消息的。
|
|
615
626
|
# 有的人还担心阻塞而手动使用 threading.Thread(target=step1.consume).start() 来启动消费,这是完全多此一举的错误写法。
|
|
616
|
-
step2.consume() #
|
|
617
|
-
|
|
627
|
+
step2.consume() # 所以可以在当前主线程连续无阻塞丝滑的启动多个函数消费。
|
|
628
|
+
step2.multi_process_consume(3) # 这是多进程叠加了多线程消费,另外开启了3个进程,叠加了默认的线程并发。
|
|
629
|
+
|
|
630
|
+
async_result = step1.push(100,b=200)
|
|
631
|
+
print('step1的rpc结果是:',async_result.result) # rpc阻塞等待消step1的费结果返回
|
|
632
|
+
|
|
633
|
+
for i in range(100):
|
|
634
|
+
step1.push(i,i*2) # 向 step1函数的队列发送消息,入参和手动调用函数那样很相似。
|
|
635
|
+
step1.publish ({'a':i,'b':i*2},task_id=f'task_{i}') # publish 第一个入参是字典,比push能传递更多funboost的辅助参数,类似celery的apply_async和delay的关系。一个简单,一个复杂但强大。
|
|
636
|
+
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
"""
|
|
640
|
+
1.funboost 使用 ApsJobAdder.add_push_job来添加定时任务,不是add_job。
|
|
641
|
+
2.funboost是轻度封装的知名apscheduler框架,所以定时任务的语法和apscheduler是一样的,没有自己发明语法和入参
|
|
642
|
+
用户需要苦学apscheduler教程,一切定时都是要学apscheduler知识,定时和funboost知识关系很小。
|
|
643
|
+
3.funboost的定时任务目的是定时推送消息到消息队列中,而不是定时直接在当前程序中执行某个消费函数。
|
|
644
|
+
|
|
645
|
+
下面是三种方式添加定时任务,这些定时方式都是知名apscheduler包的定时方式,和funboost没关系。
|
|
646
|
+
"""
|
|
647
|
+
# 方式1:指定日期执行一次
|
|
648
|
+
ApsJobAdder(step2,
|
|
649
|
+
job_store_kind='redis', # 使用reids作为 apscheduler的 jobstrores
|
|
650
|
+
is_auto_start=True, # 添加任务,并同时顺便启动了定时器 执行了apscheduler对象.start()
|
|
651
|
+
).add_push_job(
|
|
652
|
+
trigger='date',
|
|
653
|
+
run_date='2025-06-30 16:25:40',
|
|
654
|
+
args=(7, 8,9),
|
|
655
|
+
id='date_job1',
|
|
656
|
+
replace_existing=True,
|
|
657
|
+
)
|
|
658
|
+
|
|
659
|
+
# 方式2:固定间隔执行
|
|
660
|
+
ApsJobAdder(step2, job_store_kind='redis').add_push_job(
|
|
661
|
+
trigger='interval',
|
|
662
|
+
seconds=30,
|
|
663
|
+
args=(4, 6,10),
|
|
664
|
+
id='interval_job1',
|
|
665
|
+
replace_existing=True,
|
|
666
|
+
)
|
|
667
|
+
|
|
668
|
+
# 方式3:使用cron表达式定时执行
|
|
669
|
+
ApsJobAdder(step2, job_store_kind='redis').add_push_job(
|
|
670
|
+
trigger='cron',
|
|
671
|
+
day_of_week='*',
|
|
672
|
+
hour=23,
|
|
673
|
+
minute=49,
|
|
674
|
+
second=50,
|
|
675
|
+
kwargs={"c": 50, "d": 60,"e":70},
|
|
676
|
+
replace_existing=True,
|
|
677
|
+
id='cron_job1')
|
|
678
|
+
|
|
679
|
+
ctrl_c_recv() # 用于阻塞代码,阻止主线程退出,使主线程永久运行。 相当于 你在代码最末尾,加了个 while 1:time.sleep(10),使主线程永不结束。apscheduler background定时器守护线程需要这样保持定时器不退出。
|
|
680
|
+
|
|
618
681
|
|
|
619
682
|
```
|
|
620
683
|
|
|
@@ -682,14 +745,17 @@ python比其他语言更需要分布式函数调度框架来执行函数,有
|
|
|
682
745
|
|
|
683
746
|
## 1.6 funboost支持支持celery框架整体作为funboost的broker (2023.4新增)
|
|
684
747
|
```
|
|
685
|
-
见11.1章节代码例子,celery框架整体作为funboost的broker,funboost的发布和消费将只作为极简api
|
|
748
|
+
见11.1章节代码例子,celery框架整体作为funboost的broker,funboost的发布和消费将只作为极简api,
|
|
749
|
+
核心的消费调度和发布和定时功能,都是由celery框架来完成,funboost框架的发布和调度代码不实际起作用。
|
|
686
750
|
用户操作funboost的api,语法和使用其他消息队列中间件类型一样,funboost自动化操作celery。
|
|
687
751
|
|
|
688
752
|
用户无需操作celery本身,无需敲击celery难记的命令行启动消费、定时、flower;
|
|
689
753
|
用户无需小心翼翼纠结亲自使用celery时候怎么规划目录结构 文件夹命名 需要怎么在配置写include 写task_routes,
|
|
690
|
-
完全不存在需要固定的celery
|
|
754
|
+
完全不存在需要固定的celery目录结构,不需要手动配置懵逼的任务路由,
|
|
755
|
+
不需要配置每个函数怎么使用不同的队列名字,funboost自动搞定这些。
|
|
691
756
|
|
|
692
|
-
用户只需要使用简单的funboost语法就能操控celery框架了。funboost使用celery作为broker_kind
|
|
757
|
+
用户只需要使用简单的funboost语法就能操控celery框架了。funboost使用celery作为broker_kind,
|
|
758
|
+
远远的暴击亲自使用无法ide下代码补全的celery框架的语法。
|
|
693
759
|
```
|
|
694
760
|
|
|
695
761
|
```
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
funboost/__init__.py,sha256=
|
|
1
|
+
funboost/__init__.py,sha256=KGQZa6kICOEwjNZzjGGC4u_0YSiV0xWLbjafCsWHGX0,4093
|
|
2
2
|
funboost/__init__old.py,sha256=9Kv3cPLnPkbzMRnuJFVkPsuDdx1CdcSIuITkpdncZSc,20382
|
|
3
3
|
funboost/__main__.py,sha256=BetXBv7PkVeeK-UENiFq_KEEIzvObMI0rd8S1DHRdLU,1139
|
|
4
4
|
funboost/constant.py,sha256=Mie1szuOrJxMfkvAcRQLmo8Wstrk8OHWEn6owVLaJ-g,10047
|
|
@@ -16,7 +16,7 @@ funboost/assist/taskiq_helper.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPja
|
|
|
16
16
|
funboost/beggar_version_implementation/beggar_redis_consumer.py,sha256=x5cH6Vc3_UooY2oPeC9MlpMewrGd9qXCx6gEWi1fGa0,3941
|
|
17
17
|
funboost/concurrent_pool/__init__.py,sha256=C27xYXj7c1NGuVeG7K2LxKH7JKnGwfPfITyon6xFaoE,803
|
|
18
18
|
funboost/concurrent_pool/async_helper.py,sha256=Q2EVZeS_A29-S6i9VszC6HNNW-RkICF8v3t_9GJMwFw,3942
|
|
19
|
-
funboost/concurrent_pool/async_pool_executor.py,sha256=
|
|
19
|
+
funboost/concurrent_pool/async_pool_executor.py,sha256=328ukGPtVg9fVQ1qc1XCCqnLaPVZFQNUExx91dwiqIk,6742
|
|
20
20
|
funboost/concurrent_pool/base_pool_type.py,sha256=h3xcadufMAf49CoNe5VkUyIxlniMeNtDjadqB5IsiKA,194
|
|
21
21
|
funboost/concurrent_pool/bounded_processpoolexcutor_gt_py37.py,sha256=pWqpKAP0Z0cuHdSHJ5ti6EpNndnIoYkPE6IOl4BvbJw,4775
|
|
22
22
|
funboost/concurrent_pool/bounded_processpoolexcutor_py36.py,sha256=CMRSjwnUAhNT2fj44SVNEYRehprlxjQADYkgw9hTVlw,3063
|
|
@@ -72,7 +72,7 @@ funboost/consumers/redis_consumer_simple.py,sha256=trPrMHSVU1Y_fY-xz5tFFmt1zjV-9
|
|
|
72
72
|
funboost/consumers/redis_filter.py,sha256=GYx4dTgTv05oyP-2fKLpOeRdzot-J9ZO7H_8fsbhHfQ,8810
|
|
73
73
|
funboost/consumers/redis_pubsub_consumer.py,sha256=8V8EqobKpEXzpsQx_H3A-JBKLsWOsE0n16g62tUMMYY,1122
|
|
74
74
|
funboost/consumers/redis_stream_consumer.py,sha256=gkdP-BxU8U6cE5bVBVQCfgAMeQmsz6gQyQgqi6r2kf8,6553
|
|
75
|
-
funboost/consumers/rocketmq_consumer.py,sha256=
|
|
75
|
+
funboost/consumers/rocketmq_consumer.py,sha256=QCAdw2UBGPlakTcXdiykvPx4cl9yDMSib44BbmzBHfY,1717
|
|
76
76
|
funboost/consumers/rq_consumer.py,sha256=JX84k6Jiv4pBiQMmnhdJ7s7Qz4ub5TWS4T7qTF-WdlM,876
|
|
77
77
|
funboost/consumers/sqlachemy_consumer.py,sha256=PawUaNV7EZWBQVWXkGaXy1Z16hUgxU4BLDeUFR83ewM,1300
|
|
78
78
|
funboost/consumers/tcp_consumer.py,sha256=9uXzbkgEU-r4kH07v4ASxUSTe-JEo-EgJ1228pju4W4,2035
|
|
@@ -197,7 +197,7 @@ funboost/publishers/rabbitmq_pika_publisher.py,sha256=QygZv96tYmfJcs8Dukv3J_x134
|
|
|
197
197
|
funboost/publishers/rabbitmq_rabbitpy_publisher.py,sha256=GGXPKxE6-mAjqMIKqwvR9d7L-zuJQcQoU9uRsQLNGas,1953
|
|
198
198
|
funboost/publishers/redis_publisher.py,sha256=EDnQSt73FE2PGq0WHyvsMuaoD_6wp_tuZveWrMF7iLY,3439
|
|
199
199
|
funboost/publishers/redis_publisher_lpush.py,sha256=xEWuCTtbDcKFLTxGrECrbIVapFfUwqX2-GHenMClu-Q,278
|
|
200
|
-
funboost/publishers/redis_publisher_priority.py,sha256=
|
|
200
|
+
funboost/publishers/redis_publisher_priority.py,sha256=JYIH_gWpBtLrck1apVbgaR5y8SkfgUAj1Jvwmt_FwxM,2209
|
|
201
201
|
funboost/publishers/redis_publisher_simple.py,sha256=CxUqi2_ykOhKhQFByNJ8nUaFjjchA-YzSE72ng1_OiM,760
|
|
202
202
|
funboost/publishers/redis_pubsub_publisher.py,sha256=GA3TzN91OT2d-Ei76rp_Sd3Au8IcihFupo36izB8dis,737
|
|
203
203
|
funboost/publishers/redis_queue_flush_mixin.py,sha256=d-AgJiCuX25mOwP2gMorGbXCaLuFpqWO4jAJXJDBfk0,732
|
|
@@ -329,9 +329,9 @@ funboost/utils/pysnooper_ydf/utils.py,sha256=evSmGi_Oul7vSP47AJ0DLjFwoCYCfunJZ1m
|
|
|
329
329
|
funboost/utils/pysnooper_ydf/variables.py,sha256=QejRDESBA06KG9OH4sBT4J1M55eaU29EIHg8K_igaXo,3693
|
|
330
330
|
funboost/utils/times/__init__.py,sha256=Y4bQD3SIA_E7W2YvHq2Qdi0dGM4H2DxyFNdDOuFOq1w,2417
|
|
331
331
|
funboost/utils/times/version.py,sha256=11XfnZVVzOgIhXXdeN_mYfdXThfrsbQHpA0wCjz-hpg,17
|
|
332
|
-
funboost-49.
|
|
333
|
-
funboost-49.
|
|
334
|
-
funboost-49.
|
|
335
|
-
funboost-49.
|
|
336
|
-
funboost-49.
|
|
337
|
-
funboost-49.
|
|
332
|
+
funboost-49.3.dist-info/LICENSE,sha256=9EPP2ktG_lAPB8PjmWV-c9BiaJHc_FP6pPLcUrUwx0E,11562
|
|
333
|
+
funboost-49.3.dist-info/METADATA,sha256=l7XQ_hREppMcSatkLuBb902bihAqTBEs1XFee37rZC0,43106
|
|
334
|
+
funboost-49.3.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
335
|
+
funboost-49.3.dist-info/entry_points.txt,sha256=yMSSAGRzRAAhGyNNQHw24MooKlDZsaJ499_D6fPl58A,96
|
|
336
|
+
funboost-49.3.dist-info/top_level.txt,sha256=K8WuKnS6MRcEWxP1NvbmCeujJq6TEfbsB150YROlRw0,9
|
|
337
|
+
funboost-49.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|