Skip to content

Commit

Permalink
0.3.0a4
Browse files Browse the repository at this point in the history
  • Loading branch information
pierky committed Feb 16, 2017
1 parent 8743c6e commit ba3d5c9
Show file tree
Hide file tree
Showing 12 changed files with 37 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

0.3.0a4
-------

- Fix an issue with transformations.

0.3.0a3
-------

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2014 Pier Carlo Chiodi
Copyright (c) 2014-2017 Pier Carlo Chiodi

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 3 additions & 0 deletions pierky/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.

try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
Expand Down
2 changes: 2 additions & 0 deletions pierky/p2es/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.
3 changes: 3 additions & 0 deletions pierky/p2es/errors.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.

class P2ESError(Exception):
pass
3 changes: 3 additions & 0 deletions pierky/p2es/es.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.

import json
import urllib2

Expand Down
3 changes: 3 additions & 0 deletions pierky/p2es/readers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.

import json
try:
from queue import Queue, Empty
Expand Down
3 changes: 3 additions & 0 deletions pierky/p2es/threads.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.

import threading

class P2ESThread(threading.Thread):
Expand Down
3 changes: 3 additions & 0 deletions pierky/p2es/transformations.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.

# See TRANSFORMATIONS.md file for details

import json
Expand Down
5 changes: 4 additions & 1 deletion pierky/p2es/version.py
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
__version__ = "0.3.0a3"
# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.

__version__ = "0.3.0a4"
3 changes: 3 additions & 0 deletions pierky/p2es/writers.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.

import datetime
import json
try:
Expand Down
5 changes: 4 additions & 1 deletion scripts/pmacct-to-elasticsearch
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
#!/usr/bin/env python

# This code is Copyright 2014-2017 by Pier Carlo Chiodi.
# See full license in LICENSE file.

import argparse
from copy import deepcopy
import datetime
Expand Down Expand Up @@ -236,7 +239,7 @@ def main():
description="pmacct-to-elasticsearch {}: a tool to read "
"pmacct's output and to store it into "
"ElasticSearch.".format(CURRENT_RELEASE),
epilog="Copyright (c) {} - Pier Carlo Chiodi - "
epilog="Copyright (c) 2014-{} - Pier Carlo Chiodi - "
"https://pierky.com".format(2017)
)
parser.add_argument(
Expand Down

0 comments on commit ba3d5c9

Please sign in to comment.