-
Notifications
You must be signed in to change notification settings - Fork 0
Using features in Py3REPL
Erkhemee edited this page Jul 18, 2026
·
1 revision
- What it is?
- Fetches things from internet, and returns string. Nothing returned means error occured, website doesn't found or you're offline
- How to use?
fetcher("https://any-website.you/want/")
- What it is?
- Persistent storage you can save everything, except functions and classes
- How to use?
- To save/append things, use
storage.save(name, item)orstorage[name] = item - To load/get things, use
storage.load(name)orstorage[name] - To delete/remove things, use
storage.delete(name)ordel storage[name]
- To save/append things, use
- What it is?
- History to look back at your history, saves your history to persistent storage too! (but it's hidden)
- How to use?
-
history()or%history,history(True)for raw list
-
- What it is?
- History limiter, shows statics of current limit & history size, avoiding memory leak or storage fill. Also saves current limit to persistent storage (but it's hidden)
- How to use?
-
limit()or%limitto see statics -
limit(number_to_set)or%limit number-to-setto set limit
-
- What it is?
- Clears terminal, useful for when you messed up
- How to use?
-
clear()or%clear
-