FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python2-osc/examples/simple_client.py at python2 · kjcole/python2-osc · GitHub
kjcole
/
python2-osc
Public
forked from
mwicat/python2-osc
Notifications
You must be signed in to change notification settings
Fork
1
Star
2
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python2-osc
/
examples
/
simple_client.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
34 lines (28 loc) · 992 Bytes
Breadcrumbs
python2-osc
/
examples
/
simple_client.py
Copy path
File metadata and controls
executable file
·
34 lines (28 loc) · 992 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
"""Small example OSC client
This program sends 10 random values between 0.0 and 1.0 to the /debug
address, waiting for 1 seconds between each value.
"""
import
argparse
import
random
import
time
from
pythonosc
import
osc_message_builder
from
pythonosc
import
udp_client
if
__name__
==
"__main__"
:
parser
=
argparse
.
ArgumentParser
()
parser
.
add_argument
(
"--ip"
,
default
=
"127.0.0.1"
,
help
=
"The ip of the OSC server"
)
parser
.
add_argument
(
"--port"
,
type
=
int
,
default
=
8000
,
help
=
"The port the OSC server is listening on"
)
args
=
parser
.
parse_args
()
client
=
udp_client
.
UDPClient
(
args
.
ip
,
args
.
port
)
for
x
in
range
(
10
):
msg
=
osc_message_builder
.
OscMessageBuilder
(
address
=
"/debug"
)
msg
.
add_arg
(
random
.
random
())
msg
=
msg
.
build
()
client
.
send
(
msg
)
time
.
sleep
(
1
)
Back
|
FazBrowse Home
|
New Git URL