Socket
Socket
Sign inDemoInstall

bloatier

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    bloatier

Basic String Bloater/Debloater Algorithm.


Maintainers
1

Readme

Bloatier - A String Bloater/Debloater Algorithm

Description: My custom format algorithm with loosy RAM allocation and terribly huge time and space complexity that bloats and debloats string and string-like types.


Sample

Using bloat/debloat for basic stage format:

# Importing the package
from bloatier import bloatier

string_ = "This is a string"  # Our string to be bloated
bloated_string = bloatier.bloat(string_)  # Bloated string

# Print the bloated string
print("Bloated String:\n", bloated_string)

# Print the debloated string
print("Debloated String\n", bloatier.debloat(bloated_string))

Note: You can also use bloats/debloats for multi-stage format. (if you have enough RAM :>)


The string being used by the algorithm and the outputs are all stored in a dictionary "obtain" and can be acquired by using the acquired function.

There is a main bloatier class and 5 local functions related to the main class.

  • bloatier class
    • bloat method
    • bloats method
    • debloat method
    • debloats method
    • acquire method
  • bloat function
  • bloats function
  • debloat function
  • debloats function
  • acquire function

Keywords

FAQs


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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc