Metadata-Version: 2.1
Name: BD103
Version: 0.0.4
Summary: Assorted Developer Functions by BD103
Home-page: https://repl.it/@BD103/BD103-Python-Package
Author: BD103
Author-email: dont@stalk.me
License: UNKNOWN
Description: # BD103's Personal Coding Package
        A bunch of random developer related functions and modules that I use.
        ## Usage
        Because I am a noob, using this package is a bit different.
        ## Patch Notes
        ### 0.0.4
        Fixed `LICENSE`.
        ### 0.0.3
        Updated short description. Added `__all__` variable in `__init__.py`. Created `parser.py`. Updated `README.md` to have full module names. Renamed `color()` function to `print()`. Updated 0.0.1 description. Added `load.py` module. Created the `parser.py` module.
        ```python
        ''' Parser '''
        bd103.parser.grid(path) # Loads a text file and creates a list. Each item is a sepperate line of the file. Returns the list (array)
        bd103.parser.space(text, identifier=" ") # Parses given string and returns an array. Each item is sepperated by spaces. "hi there" would return ["hi", "there"]
        ''' Load Bar '''
        bd103.load.load(length=100) # Automatically makes a useless loading bar
        bd103.load.loadbar(value, length=100) # Allows you to manually create a load bar that syncs with data.
        ```
        ### 0.0.2
        Emptied `__init__.py` to fix error. Updated `setup.py` and redid `README.md`.
        ### 0.0.1
        Initial package. Contains a basic color formatting module.
        ```python
        ''' Functions '''
        bd103.color.print(text, color) # Prints with text then resets formatting
        bd103.color.paint(color) # Sets color permanently until reset
        
        ''' Colors '''
        reset = "reset
        red = "red"
        yellow = "yellow"
        green = "green"
        cyan = "cyan"
        blue = "blue"
        magenta = "magenta"
        black = "black"
        white = "white"
        ```
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
