Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
D
D0020E-projekt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Henrik Tjäder
D0020E-projekt
Commits
8ecde78a
Commit
8ecde78a
authored
Mar 2, 2015
by
Daniel Björk
Browse files
Options
Downloads
Patches
Plain Diff
Added pymongo connect and insert of stability(+pos placeholder)
parent
5ce0fbc0
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
UDP-client-server.py
+19
-0
19 additions, 0 deletions
UDP-client-server.py
with
19 additions
and
0 deletions
UDP-client-server.py
+
19
−
0
View file @
8ecde78a
...
...
@@ -11,6 +11,16 @@ import pymongo
# For timestamping in MongoDB
import
datetime
#pymongo connect
DBConHost
=
'
localhost
'
DBConPort
=
27017
DBName
=
'
matningar
'
DBTableName
=
'
stability
'
DBCon
=
MongoClient
(
DBConHost
,
DBConPort
)
DB
=
DBCon
[
DBName
]
DBTableStability
=
DB
[
DBTableName
]
#DEFINE INPUTS HERE
#CLIENT - SENDER
...
...
@@ -223,6 +233,15 @@ def udp_client_send(UDP_DEST_IP, UDP_DEST_PORT,
print
(
"
MOS:
"
,
mos
)
post
=
{
#"timestamp" : int(time.time()),
#Not needed since first 4bits of _id is timestamp
"
stability
"
:
mos
,
"
position
"
:
False
# Position appended here
}
DBTableStability
.
insert
(
post
);
#START THE THREADS FOR SENDER AND RECEIVER
if
__name__
==
"
__main__
"
:
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment