Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ the `streamparse user group`_ and we'll give you a hand.
From there, get to work on your improvement and submit a pull request when ready which
we'll review.

.. _open issues: https://github.com/Parsely/streamparse/issues?state=open
.. _open issues: https://github.com/pystorm/streamparse/issues?state=open
.. _streamparse user group: https://groups.google.com/forum/#!forum/streamparse


Expand All @@ -33,15 +33,13 @@ Style Guidelines
We'll work with you to get pull requests merged into streamparse. But to help us out, generally
following PEP8 guidelines will result in less back and forth.

Parse.ly's CTO, Andrew Montalenti, has published on Github an `Elements of Python Style`_ with
style suggestions for Python beyond PEP8.
This project's creator, Andrew Montalenti, has published on GitHub an `Elements
of Python Style`_ with style suggestions for Python beyond PEP8.


.. _Elements of Python Style: https://github.com/amontalenti/elements-of-python-style


Contributor License Agreement
-----------------------------
No contributor license agreement is needed for streamparse. All pull requests are understood
No contributor license agreement is needed for streamparse. All pull requests are understood
to be acceptable to release under streamparse's license, Apache 2.0.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ APPENDIX: How to apply the Apache License to your work.
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2013 Parsely, Inc.
Copyright Andrew Montalenti

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,19 +51,19 @@ Alphabetical, by last name:
Changelog
---------

See the `releases <https://github.com/Parsely/streamparse/releases>`__ page on
See the `releases <https://github.com/pystorm/streamparse/releases>`__ page on
GitHub.

Roadmap
-------

See the `Roadmap <https://github.com/Parsely/streamparse/wiki/Roadmap>`__.
See the `Roadmap <https://github.com/pystorm/streamparse/wiki/Roadmap>`__.

.. |logo| image:: https://raw.githubusercontent.com/Parsely/streamparse/master/doc/images/streamparse-logo.png
.. |logo| image:: https://raw.githubusercontent.com/pystorm/streamparse/master/doc/images/streamparse-logo.png
.. |Build Status| image:: https://github.com/pystorm/streamparse/actions/workflows/test.yml/badge.svg
:target: https://github.com/pystorm/streamparse/actions/workflows/test.yml
:alt: Build Status
.. |Docs Status| image:: https://readthedocs.org/projects/streamparse/badge/?version=latest
:target: https://streamparse.readthedocs.io/en/stable/?badge=latest
:alt: Documentation Status
.. |Demo| image:: https://raw.githubusercontent.com/Parsely/streamparse/master/doc/source/images/quickstart.gif
.. |Demo| image:: https://raw.githubusercontent.com/pystorm/streamparse/master/doc/source/images/quickstart.gif
8 changes: 4 additions & 4 deletions doc/conf.py
Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, I realize I made a mistake here. Should use my name in the conf.py metadata fields where needed, not "pystorm". Will fix.

Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

# General information about the project.
project = "streamparse"
copyright = "2014-2024, Parsely"
copyright = "Andrew Montalenti"

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -212,7 +212,7 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
("index", "streamparse.tex", "streamparse Documentation", "Parsely", "manual")
("index", "streamparse.tex", "streamparse Documentation", "pystorm", "manual")
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down Expand Up @@ -240,7 +240,7 @@

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [("index", "streamparse", "streamparse Documentation", ["Parsely"], 1)]
man_pages = [("index", "streamparse", "streamparse Documentation", ["pystorm"], 1)]

# If true, show URL addresses after external links.
# man_show_urls = False
Expand All @@ -256,7 +256,7 @@
"index",
"streamparse",
"streamparse Documentation",
"Parsely",
"pystorm",
"streamparse",
"Run Python on real-time streams of data.",
"Miscellaneous",
Expand Down
4 changes: 2 additions & 2 deletions doc/faq.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ Is streamparse compatible with Python 3?
Yes, streamparse is fully compatible with Python 3 starting with version 3.3
which we use in our `unit tests`_.

.. _unit tests: https://github.com/Parsely/streamparse/blob/master/.travis.yml
.. _unit tests: https://github.com/pystorm/streamparse/blob/master/.travis.yml

How can I contribute to streamparse?
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Please see the `CONTRIBUTING`_ document in Github

.. _CONTRIBUTING: https://github.com/Parsely/streamparse/blob/master/CONTRIBUTING.rst
.. _CONTRIBUTING: https://github.com/pystorm/streamparse/blob/master/CONTRIBUTING.rst


How do I trigger some code before or after I submit my topology?
Expand Down
4 changes: 2 additions & 2 deletions examples/kafka-jvm/chef/cookbooks/streamparse/metadata.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
maintainer "Parsely"
maintainer_email "hello@parsely.com"
maintainer "Andrew Montalenti"
maintainer_email "git@amontalenti.com"
name "streamparse"
license "Apache 2.0"
description "Installs/Configures streamparse"
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
"""
Copyright 2014-2020 Parsely, Inc.
Copyright Andrew Montalenti

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -43,9 +43,9 @@ def readme():
setup(
name="streamparse",
version=get_version(),
author="Parsely, Inc.",
author_email="hello@parsely.com",
url="https://github.com/Parsely/streamparse",
author="Andrew Montalenti",
author_email="git@amontalenti.com",
url="https://github.com/pystorm/streamparse",
description=(
"streamparse lets you run Python code against real-time "
"streams of data. Integrates with Apache Storm."
Expand Down
4 changes: 2 additions & 2 deletions streamparse/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
This package makes it easier to work with Storm and Python.

:organization: Parsely
:organization: pystorm
"""

import logging
Expand Down Expand Up @@ -51,7 +51,7 @@
]

__license__ = """
Copyright 2014-2020 Parsely, Inc.
Copyright Andrew Montalenti

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions streamparse/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2014-2020 Parsely, Inc.
# Copyright Andrew Montalenti

# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -16,7 +16,7 @@
This module exists solely for version information so we only have to change it
in one place. Based on the suggestion `here. <http://bit.ly/16LbuJF>`_

:organization: Parsely
:organization: pystorm
"""


Expand Down