1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
|
%global _empty_manifest_terminate_build 0
Name: python-discord-logger
Version: 1.2.3
Release: 1
Summary: Discord Logger is a custom message logger to Discord for Python 3
License: MIT License
URL: https://github.com/chinnichaitanya/python-discord-logger
Source0: https://mirrors.nju.edu.cn/pypi/web/packages/78/a4/00ff06490b22bc9cfece34f80ce2d3e43603d8efbf8ac4c74a228c819dc6/discord-logger-1.2.3.tar.gz
BuildArch: noarch
Requires: python3-discord-webhook
Requires: python3-pyyaml
%description
# Python Discord Logger
A custom message logger to Discord for Python 3.
This project was inspired from [`winston-discord-transport`](https://github.com/sidhantpanda/winston-discord-transport) for NodeJS
and built using [discord-webhook](https://github.com/lovvskillz/python-discord-webhook), which offers an easy interface for
constructing and sending messages through a Discord webhook.
If you are looking for a Slack alternative, please check [python-slack-logger](https://github.com/chinnichaitanya/python-slack-logger).
<a href="https://pypi.org/project/discord-logger/"><img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/discord-logger"></a>
[](https://badge.fury.io/py/discord-logger)
<a href="https://pepy.tech/project/discord-logger"><img alt="Downloads" src="https://static.pepy.tech/badge/discord-logger"></a>
<a href="https://pypi.org/project/discord-logger/#files"><img alt="PyPI - Wheel" src="https://img.shields.io/pypi/wheel/discord-logger"></a>
[](https://github.com/chinnichaitanya/python-discord-logger/blob/master/LICENSE)
[](https://github.com/python/black)
## Install
Install via pip: `pip install discord-logger`
## Basic Usage
```python
from discord_logger import DiscordLogger
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"display_hostname": True,
"default_level": "info",
}
logger = DiscordLogger(webhook_url="your discord webhook url", **options)
logger.construct(title="Health Check", description="All services are running normally!")
response = logger.send()
```

## Configure various options
There are numerous configurations available to customise the bot.
```python
options = {
# Application name would replace the webhook name set during creating of the webhook
# It would appear as the name of the bot
# If unset, the default value would be "Application"
"application_name": "My Server",
# Service name would be the name of the service sending the message to your Discord channel
# This would usually be the name of the application sending the notification
# If unset, the default value would be "Status Bot"
"service_name": "Backend API",
# Service icon URL is the icon image for your application
# This field accepts a URL to the icon image
# If unspecified, the icon wouldn't be set
# If misconfigured, the icon wouldn't load and a blank space would appear before the service name
"service_icon_url": "your icon url",
# Usually services would run in staging and production environments
# This field is to specify the environment from which the application is reponding for easy identification
# If unset, this block would not appear in the message
"service_environment": "Production",
# An option to specify whether or not to display the hostname in the messages
# The hostname is set by default, but it could be disabled by specifically setting this to `False`
"display_hostname": True,
# The default importance level of the message
# The left bar color of the message would change depending on this
# Available options are
# - default: 2040357
# - error: 14362664
# - warn: 16497928
# - info: 2196944
# - verbose: 6559689
# - debug: 2196944
# - success: 2210373
# If the `error` field is set during the construction of the message, the `level` is automatically set to `error`
# If nothing is specified, `default` color would be used
"default_level": "info",
}
```
## Emojis inbuilt! 😃
An appropriate emoji is automatically added before the title depending on the `level`.
Following is the map between `level` and the emoji added.
- default = `:loudspeaker:` 📢
- error = `:x:` ❌
- warn = `:warning:` ⚠️
- info = `:bell:` 🔔
- verbose = `:mega:` 📣
- debug = `:microscope:` 🔬
- success = `:rocket:` 🚀
## Examples
### Set Service Name, Icon and Environment for easy identification
You can configure the log message with service name, icon and environment for easy identification. The `Host` field which is the hostname of the server is automatically added for every message.
You can even send any meta information like the data in the variables, module names, metrics etc with the `metadata` field while constructing the message.
These data should be passed as a dictionary.
```python
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Health Check",
description="Issue in establishing DB connections!",
error="Traceback (most recent call last):\n ValueError: Database connect accepts only string as a parameter!",
metadata={"module": "DBConnector", "host": 123.332},
)
response = logger.send()
```

### Send messages without Hostname
In case you do not want the hostname to be displayed in the message, disable it by setting `"display_hostname": False` in the `options` as follows.
```python
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
"display_hostname": False,
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(title="Health Check", description="All services are running normally!")
response = logger.send()
```

### Send messages with different log-levels
The log-level indicates the importance of the message. It changes the color of the discord message in particular. Currently supported levels are,
- `error`
- `warn`
- `info`
- `verbose`
- `debug`
- `success`
The log-level can be set during construction of the message like through the parameter `level`.
If the parameter isn't provided, it'll be set to the one given in `default_level`. Any invalid input would be ignored and the log-level would be automatically be set to `default`.
Any complicated nested dictionary can be passed to the `metadata` field and the message gets forrmatted accordingly for easy reading.
```python
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Celery Task Manager",
description="Successfully completed training job for model v1.3.3!",
level="success",
metadata={
"Metrics": {
"Accuracy": 78.9,
"Inference time": "0.8 sec",
"Model size": "32 MB",
},
"Deployment status": "progress",
},
)
response = logger.send()
```

### Send complete error traceback
The `error` field can contain any error message. It will be automatically be formatted in the final message. For example, you can send a complete traceback of an error message to debug faster!
```python
import traceback
from discord_logger import DiscordLogger
def get_traceback(e):
tb = (
"Traceback (most recent call last):\n"
+ "".join(traceback.format_list(traceback.extract_tb(e.__traceback__)))
+ type(e).__name__
+ ": "
+ str(e)
)
return tb
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
err = KeyError("`email` field cannot be None")
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Runtime Exception",
description=err.__str__(),
error=get_traceback(err),
metadata={"email": None, "module": "auth", "method": "POST"},
)
response = logger.send()
```

%package -n python3-discord-logger
Summary: Discord Logger is a custom message logger to Discord for Python 3
Provides: python-discord-logger
BuildRequires: python3-devel
BuildRequires: python3-setuptools
BuildRequires: python3-pip
%description -n python3-discord-logger
# Python Discord Logger
A custom message logger to Discord for Python 3.
This project was inspired from [`winston-discord-transport`](https://github.com/sidhantpanda/winston-discord-transport) for NodeJS
and built using [discord-webhook](https://github.com/lovvskillz/python-discord-webhook), which offers an easy interface for
constructing and sending messages through a Discord webhook.
If you are looking for a Slack alternative, please check [python-slack-logger](https://github.com/chinnichaitanya/python-slack-logger).
<a href="https://pypi.org/project/discord-logger/"><img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/discord-logger"></a>
[](https://badge.fury.io/py/discord-logger)
<a href="https://pepy.tech/project/discord-logger"><img alt="Downloads" src="https://static.pepy.tech/badge/discord-logger"></a>
<a href="https://pypi.org/project/discord-logger/#files"><img alt="PyPI - Wheel" src="https://img.shields.io/pypi/wheel/discord-logger"></a>
[](https://github.com/chinnichaitanya/python-discord-logger/blob/master/LICENSE)
[](https://github.com/python/black)
## Install
Install via pip: `pip install discord-logger`
## Basic Usage
```python
from discord_logger import DiscordLogger
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"display_hostname": True,
"default_level": "info",
}
logger = DiscordLogger(webhook_url="your discord webhook url", **options)
logger.construct(title="Health Check", description="All services are running normally!")
response = logger.send()
```

## Configure various options
There are numerous configurations available to customise the bot.
```python
options = {
# Application name would replace the webhook name set during creating of the webhook
# It would appear as the name of the bot
# If unset, the default value would be "Application"
"application_name": "My Server",
# Service name would be the name of the service sending the message to your Discord channel
# This would usually be the name of the application sending the notification
# If unset, the default value would be "Status Bot"
"service_name": "Backend API",
# Service icon URL is the icon image for your application
# This field accepts a URL to the icon image
# If unspecified, the icon wouldn't be set
# If misconfigured, the icon wouldn't load and a blank space would appear before the service name
"service_icon_url": "your icon url",
# Usually services would run in staging and production environments
# This field is to specify the environment from which the application is reponding for easy identification
# If unset, this block would not appear in the message
"service_environment": "Production",
# An option to specify whether or not to display the hostname in the messages
# The hostname is set by default, but it could be disabled by specifically setting this to `False`
"display_hostname": True,
# The default importance level of the message
# The left bar color of the message would change depending on this
# Available options are
# - default: 2040357
# - error: 14362664
# - warn: 16497928
# - info: 2196944
# - verbose: 6559689
# - debug: 2196944
# - success: 2210373
# If the `error` field is set during the construction of the message, the `level` is automatically set to `error`
# If nothing is specified, `default` color would be used
"default_level": "info",
}
```
## Emojis inbuilt! 😃
An appropriate emoji is automatically added before the title depending on the `level`.
Following is the map between `level` and the emoji added.
- default = `:loudspeaker:` 📢
- error = `:x:` ❌
- warn = `:warning:` ⚠️
- info = `:bell:` 🔔
- verbose = `:mega:` 📣
- debug = `:microscope:` 🔬
- success = `:rocket:` 🚀
## Examples
### Set Service Name, Icon and Environment for easy identification
You can configure the log message with service name, icon and environment for easy identification. The `Host` field which is the hostname of the server is automatically added for every message.
You can even send any meta information like the data in the variables, module names, metrics etc with the `metadata` field while constructing the message.
These data should be passed as a dictionary.
```python
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Health Check",
description="Issue in establishing DB connections!",
error="Traceback (most recent call last):\n ValueError: Database connect accepts only string as a parameter!",
metadata={"module": "DBConnector", "host": 123.332},
)
response = logger.send()
```

### Send messages without Hostname
In case you do not want the hostname to be displayed in the message, disable it by setting `"display_hostname": False` in the `options` as follows.
```python
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
"display_hostname": False,
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(title="Health Check", description="All services are running normally!")
response = logger.send()
```

### Send messages with different log-levels
The log-level indicates the importance of the message. It changes the color of the discord message in particular. Currently supported levels are,
- `error`
- `warn`
- `info`
- `verbose`
- `debug`
- `success`
The log-level can be set during construction of the message like through the parameter `level`.
If the parameter isn't provided, it'll be set to the one given in `default_level`. Any invalid input would be ignored and the log-level would be automatically be set to `default`.
Any complicated nested dictionary can be passed to the `metadata` field and the message gets forrmatted accordingly for easy reading.
```python
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Celery Task Manager",
description="Successfully completed training job for model v1.3.3!",
level="success",
metadata={
"Metrics": {
"Accuracy": 78.9,
"Inference time": "0.8 sec",
"Model size": "32 MB",
},
"Deployment status": "progress",
},
)
response = logger.send()
```

### Send complete error traceback
The `error` field can contain any error message. It will be automatically be formatted in the final message. For example, you can send a complete traceback of an error message to debug faster!
```python
import traceback
from discord_logger import DiscordLogger
def get_traceback(e):
tb = (
"Traceback (most recent call last):\n"
+ "".join(traceback.format_list(traceback.extract_tb(e.__traceback__)))
+ type(e).__name__
+ ": "
+ str(e)
)
return tb
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
err = KeyError("`email` field cannot be None")
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Runtime Exception",
description=err.__str__(),
error=get_traceback(err),
metadata={"email": None, "module": "auth", "method": "POST"},
)
response = logger.send()
```

%package help
Summary: Development documents and examples for discord-logger
Provides: python3-discord-logger-doc
%description help
# Python Discord Logger
A custom message logger to Discord for Python 3.
This project was inspired from [`winston-discord-transport`](https://github.com/sidhantpanda/winston-discord-transport) for NodeJS
and built using [discord-webhook](https://github.com/lovvskillz/python-discord-webhook), which offers an easy interface for
constructing and sending messages through a Discord webhook.
If you are looking for a Slack alternative, please check [python-slack-logger](https://github.com/chinnichaitanya/python-slack-logger).
<a href="https://pypi.org/project/discord-logger/"><img alt="PyPI - Python Version" src="https://img.shields.io/pypi/pyversions/discord-logger"></a>
[](https://badge.fury.io/py/discord-logger)
<a href="https://pepy.tech/project/discord-logger"><img alt="Downloads" src="https://static.pepy.tech/badge/discord-logger"></a>
<a href="https://pypi.org/project/discord-logger/#files"><img alt="PyPI - Wheel" src="https://img.shields.io/pypi/wheel/discord-logger"></a>
[](https://github.com/chinnichaitanya/python-discord-logger/blob/master/LICENSE)
[](https://github.com/python/black)
## Install
Install via pip: `pip install discord-logger`
## Basic Usage
```python
from discord_logger import DiscordLogger
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"display_hostname": True,
"default_level": "info",
}
logger = DiscordLogger(webhook_url="your discord webhook url", **options)
logger.construct(title="Health Check", description="All services are running normally!")
response = logger.send()
```

## Configure various options
There are numerous configurations available to customise the bot.
```python
options = {
# Application name would replace the webhook name set during creating of the webhook
# It would appear as the name of the bot
# If unset, the default value would be "Application"
"application_name": "My Server",
# Service name would be the name of the service sending the message to your Discord channel
# This would usually be the name of the application sending the notification
# If unset, the default value would be "Status Bot"
"service_name": "Backend API",
# Service icon URL is the icon image for your application
# This field accepts a URL to the icon image
# If unspecified, the icon wouldn't be set
# If misconfigured, the icon wouldn't load and a blank space would appear before the service name
"service_icon_url": "your icon url",
# Usually services would run in staging and production environments
# This field is to specify the environment from which the application is reponding for easy identification
# If unset, this block would not appear in the message
"service_environment": "Production",
# An option to specify whether or not to display the hostname in the messages
# The hostname is set by default, but it could be disabled by specifically setting this to `False`
"display_hostname": True,
# The default importance level of the message
# The left bar color of the message would change depending on this
# Available options are
# - default: 2040357
# - error: 14362664
# - warn: 16497928
# - info: 2196944
# - verbose: 6559689
# - debug: 2196944
# - success: 2210373
# If the `error` field is set during the construction of the message, the `level` is automatically set to `error`
# If nothing is specified, `default` color would be used
"default_level": "info",
}
```
## Emojis inbuilt! 😃
An appropriate emoji is automatically added before the title depending on the `level`.
Following is the map between `level` and the emoji added.
- default = `:loudspeaker:` 📢
- error = `:x:` ❌
- warn = `:warning:` ⚠️
- info = `:bell:` 🔔
- verbose = `:mega:` 📣
- debug = `:microscope:` 🔬
- success = `:rocket:` 🚀
## Examples
### Set Service Name, Icon and Environment for easy identification
You can configure the log message with service name, icon and environment for easy identification. The `Host` field which is the hostname of the server is automatically added for every message.
You can even send any meta information like the data in the variables, module names, metrics etc with the `metadata` field while constructing the message.
These data should be passed as a dictionary.
```python
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Health Check",
description="Issue in establishing DB connections!",
error="Traceback (most recent call last):\n ValueError: Database connect accepts only string as a parameter!",
metadata={"module": "DBConnector", "host": 123.332},
)
response = logger.send()
```

### Send messages without Hostname
In case you do not want the hostname to be displayed in the message, disable it by setting `"display_hostname": False` in the `options` as follows.
```python
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
"display_hostname": False,
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(title="Health Check", description="All services are running normally!")
response = logger.send()
```

### Send messages with different log-levels
The log-level indicates the importance of the message. It changes the color of the discord message in particular. Currently supported levels are,
- `error`
- `warn`
- `info`
- `verbose`
- `debug`
- `success`
The log-level can be set during construction of the message like through the parameter `level`.
If the parameter isn't provided, it'll be set to the one given in `default_level`. Any invalid input would be ignored and the log-level would be automatically be set to `default`.
Any complicated nested dictionary can be passed to the `metadata` field and the message gets forrmatted accordingly for easy reading.
```python
from discord_logger import DiscordLogger
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Celery Task Manager",
description="Successfully completed training job for model v1.3.3!",
level="success",
metadata={
"Metrics": {
"Accuracy": 78.9,
"Inference time": "0.8 sec",
"Model size": "32 MB",
},
"Deployment status": "progress",
},
)
response = logger.send()
```

### Send complete error traceback
The `error` field can contain any error message. It will be automatically be formatted in the final message. For example, you can send a complete traceback of an error message to debug faster!
```python
import traceback
from discord_logger import DiscordLogger
def get_traceback(e):
tb = (
"Traceback (most recent call last):\n"
+ "".join(traceback.format_list(traceback.extract_tb(e.__traceback__)))
+ type(e).__name__
+ ": "
+ str(e)
)
return tb
webhook_url = "your discord webhook url"
options = {
"application_name": "My Server",
"service_name": "Backend API",
"service_icon_url": "your icon url",
"service_environment": "Production",
"default_level": "info",
}
err = KeyError("`email` field cannot be None")
logger = DiscordLogger(webhook_url=webhook_url, **options)
logger.construct(
title="Runtime Exception",
description=err.__str__(),
error=get_traceback(err),
metadata={"email": None, "module": "auth", "method": "POST"},
)
response = logger.send()
```

%prep
%autosetup -n discord-logger-1.2.3
%build
%py3_build
%install
%py3_install
install -d -m755 %{buildroot}/%{_pkgdocdir}
if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
mv %{buildroot}/doclist.lst .
%files -n python3-discord-logger -f filelist.lst
%dir %{python3_sitelib}/*
%files help -f doclist.lst
%{_docdir}/*
%changelog
* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.2.3-1
- Package Spec generated
|