Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Lyrical
django-botscout
Commits
77da3d07
Commit
77da3d07
authored
Dec 04, 2013
by
Will LaShell
Browse files
Merge branch 'release/0.0.1'
parents
994bae0f
ef4c7faa
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
77da3d07
...
...
@@ -4,3 +4,5 @@
.*project
.DS_Store
.settings/
dist/
django_botscout.egg-info/
\ No newline at end of file
botscout/forms.py
View file @
77da3d07
...
...
@@ -43,7 +43,7 @@ class BotScoutForm(object):
'mail'
:
data
.
get
(
email_field
,
None
)}
if
using_ip
:
test_data
[
'ip'
]
=
self
.
request
.
META
.
get
(
'REMOTE_ADDR'
,
None
)
test_data
=
dict
((
x
,
y
)
for
x
,
y
in
test_data
.
iteritems
()
if
y
is
not
None
)
test_data
=
dict
((
x
,
y
.
strip
()
)
for
x
,
y
in
test_data
.
iteritems
()
if
y
is
not
None
)
cached_data
=
bot_cache
.
get_many
([
'botscout:%s:%s'
%
(
x
,
hashlib
.
sha256
(
y
).
hexdigest
())
for
x
,
y
in
test_data
.
iteritems
()])
if
any
(
cached_data
.
values
()):
...
...
setup.py
0 → 100644
View file @
77da3d07
import
os
from
setuptools
import
setup
,
find_packages
README
=
open
(
os
.
path
.
join
(
os
.
path
.
dirname
(
__file__
),
'README.md'
)).
read
()
os
.
chdir
(
os
.
path
.
normpath
(
os
.
path
.
join
(
os
.
path
.
abspath
(
__file__
),
os
.
pardir
)))
setup
(
name
=
'django-botscout'
,
version
=
'0.0.1'
,
author
=
'Joey Wilhelm'
,
author_email
=
'tarkatronic@gmail.com'
,
license
=
'License :: OSI Approved'
,
long_description
=
README
,
url
=
'http://labs.lyrical.net/lyrical/django-botscout'
,
packages
=
find_packages
(),
include_package_data
=
True
,
zip_safe
=
False
,
classifiers
=
[
'Development Status :: 4 - Beta'
,
'Environment :: Web Environment'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved'
,
'Operating System :: OS Independent'
,
'Programming Language :: Python'
,
'Framework :: Django'
],
)
\ 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