Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

openedx-mongodbproxy

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openedx-mongodbproxy - npm Package Compare versions

Comparing version
0.2.1
to
0.2.2
+2
-1
openedx_mongodbproxy.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: openedx-mongodbproxy
Version: 0.2.1
Version: 0.2.2
Summary: Proxy around MongoDB connection that automatically handles AutoReconnect exceptions.

@@ -12,2 +12,3 @@ Home-page: https://github.com/arngarden/MongoDBProxy

Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown

@@ -14,0 +15,0 @@ MongoDBProxy

Metadata-Version: 2.1
Name: openedx-mongodbproxy
Version: 0.2.1
Version: 0.2.2
Summary: Proxy around MongoDB connection that automatically handles AutoReconnect exceptions.

@@ -12,2 +12,3 @@ Home-page: https://github.com/arngarden/MongoDBProxy

Classifier: Programming Language :: Python :: 3.8
Description-Content-Type: text/markdown

@@ -14,0 +15,0 @@ MongoDBProxy

@@ -19,3 +19,2 @@ """

LONG_DESCRIPTION = None
README_MARKDOWN = None

@@ -26,15 +25,2 @@

try:
import pandoc
pandoc.core.PANDOC_PATH = 'pandoc'
# Converts the README.md file to ReST, since PyPI uses ReST for formatting,
# This allows to have one canonical README file, being the README.md
doc = pandoc.Document()
doc.markdown = README_MARKDOWN
LONG_DESCRIPTION = doc.rst
except ImportError:
# If pandoc isn't installed, e.g. when downloading from pip,
# just use the regular README.
LONG_DESCRIPTION = README_MARKDOWN
def load_requirements(*requirements_paths):

@@ -65,6 +51,7 @@ """

py_modules=['mongodb_proxy'],
version='0.2.1',
version='0.2.2',
description='Proxy around MongoDB connection that automatically handles AutoReconnect exceptions.',
author='Gustav Arngarden',
long_description=LONG_DESCRIPTION,
long_description=README_MARKDOWN,
long_description_content_type='text/markdown',
classifiers=[

@@ -77,5 +64,4 @@ 'License :: OSI Approved :: Apache Software License',

],
setup_requires=['pyandoc'],
install_requires=load_requirements('requirements/base.in'),
url="https://github.com/arngarden/MongoDBProxy"
)