🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

byz

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

byz

A placeholder Python SDK package for BSO

pipPyPI
Version
0.1.26
Maintainers
1

BSO SDK

A placeholder Python SDK package for BSO.

Installation

pip install bso

Usage

from bso import hello_world, add

# Say hello
print(hello_world())

# Add numbers
result = add(2, 3)
print(result)  # Output: 5

Development

To set up a development environment:

# Clone the repository
git clone https://github.com/yourorg/bso.git
cd bso

# Install in development mode with dev dependencies
pip install -e ".[dev]"

# Run tests
pytest

# Format code
black .

# Type check
mypy bso

Building and Publishing

To build the package:

python -m build

To publish to PyPI:

# First, install build tools
pip install build twine

# Build the package
python -m build

# Upload to PyPI (test first with testpypi)
twine upload dist/*

License

MIT License - see LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Keywords

sdk

FAQs

Did you know?

Socket

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.

Install

Related posts