Metadata-Version: 2.4
Name: BeginnerLib
Version: 1.9.0
Summary: Beginner-friendly library bundling common Python utilities into a single file.
Author: Robin Parksepp
Description-Content-Type: text/markdown
Requires-Dist: pyautogui

BeginnerLib
BeginnerLib is a simple, beginner-friendly Python helper library designed to make your early coding journey smoother. Instead of remembering dozens of standard-library modules, you can import everything in one shot and start building faster.
Whether you’re experimenting, learning, or prototyping, BeginnerLib gives you quick access to core Python tools for files, math, time, networking, parsing, debugging, and even basic GUI work.
-------------------------
📦 Installation:
-------------------------
pip install BeginnerLib
-------------------------
📘 What BeginnerLib Includes
Below is the full list of modules bundled inside BeginnerLib, grouped by category. These are all standard Python libraries — BeginnerLib simply brings them together so you don’t have to import them one by one.
🔧 Core Utilities
These provide essential tools used in almost every Python project.
Included:
sys – system-specific parameters, exiting Python, reading arguments
os – interacting with the operating system
pathlib – easy file and directory paths as objects
time – timing, sleeping, timestamps
datetime – dates, times, calendars
random – random numbers, choices, shuffling
math – math functions like sqrt, sin, pow
functools – decorators, caching, partial functions
itertools – looping, combinations, permutations, infinite iterators
---------------------------------------------------------------------
📁 File & Data Handling
Work with files and store data easily.
Included:
csv – reading/writing CSV files
json – parse JSON text and files
pickle – save/load Python objects
shutil – file operations (copy, move, delete)
glob – find files using patterns like *.txt
----------------------------------------------
🌐 Networking & Web
For simple online or socket-based communication.
Included:
socket – low-level networking
urllib – fetching URLs
http – HTTP protocol tools
ssl – secure connection handling
----------------------------------
🔤 Text, Parsing & Strings
These modules help with text processing, searching, cleaning, and formatting.
Included:
re – regular expressions and text searching
string – string constants like ascii_letters, punctuation
html – escape/unescape HTML strings
-----------------------------------------------------------
🐞 Debugging & Logging
Useful for tracking errors and understanding what your program is doing.
Included:
logging – flexible logging for apps
traceback – detailed error trace information
warnings – issue and manage warning messages
----------------------------------------------
🖼 GUI & Graphics
Great for beginners who want to try basic visual programs.
Included:
tkinter – Python’s built-in GUI framework
turtle – simple graphics for drawing and animation
---------------------------------------------------
🚀 How to Use
--------------
BeginnerLib’s purpose is simplicity. You just:
import BeginnerLib
Now all included modules are available inside the library.
Example:
-------------------------
import BeginnerLib as bl
---------------------------------
print(bl.random.randint(1, 10))                                                             print(bl.datetime.datetime.now())                                                                  wait(10)                                                                                       print(random(10,100))
----------------------------------
🎯 Why BeginnerLib Exists
Learning Python is fun… until you have to remember 20 modules, what each one does, and how to import them.
BeginnerLib solves that by bundling them together into a single import.
It’s perfect for:
beginners learning the basics
quick testing
school projects
small tools
experiments
And because it uses only standard-library modules, it’s fast, safe, and has zero external dependencies.
--------------------------------------------------------------------------------------------------------
📝 Version History
BeginnerLib has evolved over time:
0.1.0 — first release
0.2.0 → 0.6.0 — improvements, cleanup
0.6.7 — meme update (“SIX SEVENN”)
0.8.0, 0.9.0 — stability updates
1.1.0 — major improvement
1.2.0 — current version, polished structure
1.3.0 - added PyAutoGUI
1.6.7 - made python easier (more on that later)
1.7.0 - updated readme
1.8.0 - updated readme again
1.9.0 - updated readme AGAIN
--------------------------------------------
✅ Making Python Easier
-------------------------------------------------------------------------------
For some people, python might be a little hard so I made the most basic functions easy to use.
----------------------------------------------------------------------------------
prt("Hello") - prints "Hello"
inp("how old are you") - input asking you "how old are you"
wait(10) - waits 10 seconds
random(0,100) - chooses number between 0 and 100
click(10, 10) - mouse goes to position 10, 10 on the screen and clicks there
----------------------------------------------------------------------------------
