Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
okeanos-LoD
Commits
25ef868c
Commit
25ef868c
authored
Jun 22, 2015
by
efikalti
Browse files
[LAM-19] python script for random data generator
parent
3b9b59df
Changes
1
Hide whitespace changes
Inline
Side-by-side
example/data-generator.py
0 → 100755
View file @
25ef868c
#!/usr/bin/python
import
random
def
main
():
filename
=
'/usr/share/dict/american-english'
lines
=
list
()
hashtags
=
list
()
message
=
''
tags
=
''
f
=
open
(
filename
)
for
i
in
range
(
20
):
j
=
random
.
randrange
(
1
,
99171
)
lines
.
append
(
j
)
for
i
in
range
(
5
):
j
=
random
.
randrange
(
1
,
99171
)
hashtags
.
append
(
j
)
i
=
0
for
line
in
f
:
if
i
in
lines
:
message
=
message
+
line
.
strip
()
+
' '
if
i
in
hashtags
:
tags
=
tags
+
'#'
+
line
.
strip
()
+
' '
i
+=
1
f
.
close
()
print
message
,
tags
if
__name__
==
'__main__'
:
main
()
\ No newline at end of file
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