
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
iniparser2 is An INI parser or a Config parser.
this package is the improved version of iniparser with more features.
pip install iniparser2
pip install iniparser2 --upgrade
pip install git+https://github.com/HugeBrain16/iniparser2.git
pip install .
python setup.py install
import iniparser2
string = """
[me]
name = josh
age = 0
"""
parser = iniparser2.INI()
parser.read(string)
print(parser)
import iniparser2
parser = iniparser2.INI()
parser.set_section("me")
parser.set("name", "josh", section="me")
parser.set("age", 0, section="me")
print(parser)
or
import iniparser2
parser = iniparser2.INI()
parser.set_section("me")
parser["me"]["name"] = "josh"
parser["me"]["age"] = 0
print(parser)
import iniparser2
parser = iniparser2.INI()
parser.read_file("filename.ini")
print(parser)
file.ini
car = 1
bike = 1
main.py
import iniparser2
parser = iniparser2.INI(convert_property=True)
parser.read_file("file.ini")
parser.set("car", parser.get("car") + 1)
parser.remove_property("bike")
parser.write("file.ini")
parser.read_file("file.ini")
print(parser)
or
import iniparser2
parser = iniparser2.INI(convert_property=True)
parser.read_file("file.ini")
parser["car"] += 1
del parser["bike"]
parser.write("file.ini")
parser.read_file("file.ini")
print(parser)
exceptions because why not
ParsingError
ParseSectionError
ParsePropertyError
ParseDuplicateError
DuplicateError
PropertyError
SectionError
FAQs
An INI parser or config parser
We found that iniparser2 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.