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

crefi

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crefi - npm Package Compare versions

Comparing version
2.0.1
to
2.0.2
+3
-2
crefi.egg-info/PKG-INFO

@@ -1,4 +0,4 @@

Metadata-Version: 1.0
Metadata-Version: 1.1
Name: crefi
Version: 2.0.1
Version: 2.0.2
Summary: A tool to generate different IO's and create files on any mount point

@@ -11,1 +11,2 @@ Home-page: https://github.com/vijaykumar-koppad/Crefi

Platform: UNKNOWN
Requires: xattr
+3
-0

@@ -6,2 +6,3 @@ #!/usr/bin/python

import argparse
from version import __version__
from multiprocessing import Process

@@ -57,2 +58,4 @@ from crefi_helper import singledir, multipledir

ArgumentDefaultsHelpFormatter)
parser.add_argument('-V','--version', action='version',
version='%(prog)s {version}'.format(version=__version__))
parser.add_argument("-n", dest="files", type=int, default=100,

@@ -59,0 +62,0 @@ help="number of files in each level ")

@@ -1,4 +0,4 @@

Metadata-Version: 1.0
Metadata-Version: 1.1
Name: crefi
Version: 2.0.1
Version: 2.0.2
Summary: A tool to generate different IO's and create files on any mount point

@@ -11,1 +11,2 @@ Home-page: https://github.com/vijaykumar-koppad/Crefi

Platform: UNKNOWN
Requires: xattr
from setuptools import setup
exec(open('version.py').read())
setup(
name = 'crefi',
version = '2.0.1',
version = __version__,
author = 'Vijaykumar Koppad',

@@ -13,2 +15,3 @@ author_email = 'vijaykumar.koppad@gmail.com',

py_modules = ['crefi','crefi_helper','logger'],
requires = ["xattr"],
entry_points = """

@@ -15,0 +18,0 @@ [console_scripts]