New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

jsonquery

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jsonquery - pypi Package Compare versions

Comparing version
1.0.0
to
1.0.1
+3
-1
jsonquery.egg-info/PKG-INFO
Metadata-Version: 1.1
Name: jsonquery
Version: 1.0.0
Version: 1.0.1
Summary: Basic json -> sqlalchemy query builder

@@ -177,4 +177,6 @@ Home-page: http://jsonquery.readthedocs.org/

* duesenfranz_ - Python 3 compatibility
* svisser_ - Python 3 compatibility
.. _duesenfranz: https://github.com/duesenfranz
.. _svisser: https://github.com/svisser

@@ -181,0 +183,0 @@

@@ -8,3 +8,3 @@ import operator

if PYTHON_VERSION > (3, 0, 0): # pragma: no cover
if PYTHON_VERSION >= (3,): # pragma: no cover
# PYTHON 3k: strings == unicode

@@ -11,0 +11,0 @@ is_string = lambda s: isinstance(s, str)

Metadata-Version: 1.1
Name: jsonquery
Version: 1.0.0
Version: 1.0.1
Summary: Basic json -> sqlalchemy query builder

@@ -177,4 +177,6 @@ Home-page: http://jsonquery.readthedocs.org/

* duesenfranz_ - Python 3 compatibility
* svisser_ - Python 3 compatibility
.. _duesenfranz: https://github.com/duesenfranz
.. _svisser: https://github.com/svisser

@@ -181,0 +183,0 @@

@@ -169,3 +169,5 @@ jsonquery

* duesenfranz_ - Python 3 compatibility
* svisser_ - Python 3 compatibility
.. _duesenfranz: https://github.com/duesenfranz
.. _svisser: https://github.com/svisser

@@ -11,5 +11,5 @@ [run]

[egg_info]
tag_date = 0
tag_svn_revision = 0
tag_date = 0
tag_build =

@@ -7,4 +7,6 @@ """ Setup file """

HERE = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(HERE, 'README.rst')).read()
CHANGES = open(os.path.join(HERE, 'CHANGES.rst')).read()
with open(os.path.join(HERE, 'README.rst')) as readme_file:
README = readme_file.read()
with open(os.path.join(HERE, 'CHANGES.rst')) as changes_file:
CHANGES = changes_file.read()
# Remove custom RST extensions for pypi

@@ -24,3 +26,3 @@ CHANGES = re.sub(r'\(\s*:(issue|pr|sha):.*?\)', '', CHANGES)

name='jsonquery',
version='1.0.0',
version='1.0.1',
description="Basic json -> sqlalchemy query builder",

@@ -27,0 +29,0 @@ long_description=README + '\n\n' + CHANGES,