
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Python library to add some replace method improvements focused on common replacements to optimize code.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Make sure you have Python and that the expected version is available from your command line. You can check this by running:
python --version
You should get some output like Python 3.6.3. If you do not have Python, please install the latest 3.x version from python.org
Additionally, you’ll need to make sure you have pip available. You can check this by running:
pip --version
If you installed Python from source, with an installer from python.org you should already have pip. If you’re on Linux and installed using your OS package manager, you may have to install pip separately, see Installing pip/setuptools/wheel with Linux Package Managers.
If pip isn’t already installed, then first try to bootstrap it from the standard library:
python -m ensurepip --default-pip
While pip alone is sufficient to install from pre-built binary archives, up to date copies of the setuptools and wheel projects are useful to ensure you can also install from source archives:
python -m pip install --upgrade pip setuptools wheel
To install the latest version of ImprovedReplace:
pip install -U improved-replace
And then you can import this library in Python:
from improved_replace import to_array
string = "Hello World"
string = to_array(string)
print(string)
# Output: ['Hello', 'World']
Or you can check the project in PyPI.
To run automated module tests you first need to install py.test:
pip install -U py.test
Then you must to download the source code of the module in his github repository, go to the tests folder with PowerShell and run pytest:
pytest
Pytest will detect all automatic tests to run and check them.
These are some examples of the automated test
def test_to_array():
"""Test to_array function."""
# Normal string
assert to_array("Hello World") == ["Hello", "World"]
# Many spaces
assert to_array(" H e l l o ") == ["H", "e", "l", "l", "o"]
# Only spaces
assert to_array(" ") == []
# Any spaces
assert to_array("HelloWorld!") == ["HelloWorld!"]
# Not a string
assert to_array(None) == None
This test is testing all the general cases of the function to_array
and since
the function is based on separating by space, the tests are based on that.
Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.
We use SemVer for versioning. For the versions available, see the tags on this repository.
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details
This is my first package of python and my first real open source project. The idea occurred to me when I had to replace a few commas many times with points or vice versa when i was practicing in the URI Online Judge.
Thank you all for getting here, remember this is my first project and i'll learn more thank to this
FAQs
Add replace method improvements
We found that improved-replace demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.