Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
岳巧源
/
sku_upload_script
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
84ca9f79
authored
Sep 09, 2024
by
岳巧源
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
add function
parent
5415c30e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
handle.py
handle.py
View file @
84ca9f79
...
@@ -5,6 +5,24 @@ import pika
...
@@ -5,6 +5,24 @@ import pika
import
requests
import
requests
def
is_number
(
s
):
"""check if the input is number"""
if
s
.
lower
()
==
"nan"
:
return
False
try
:
float
(
s
)
return
True
except
ValueError
:
pass
try
:
import
unicodedata
unicodedata
.
numeric
(
s
)
return
True
except
(
TypeError
,
ValueError
):
pass
return
False
class
Producer
:
class
Producer
:
"""init rabbitmq connection and push message"""
"""init rabbitmq connection and push message"""
def
__init__
(
self
,
config
:
dict
):
def
__init__
(
self
,
config
:
dict
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment