Skip to content

Using features in Py3REPL

Erkhemee edited this page Jul 18, 2026 · 1 revision

Feature: fetcher

  • 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/")

Feature: storage

  • 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) or storage[name] = item
    • To load/get things, use storage.load(name) or storage[name]
    • To delete/remove things, use storage.delete(name) or del storage[name]

Feature: history

  • 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

Feature: limit

  • 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 %limit to see statics
    • limit(number_to_set) or %limit number-to-set to set limit

Feature: clear

  • What it is?
    • Clears terminal, useful for when you messed up
  • How to use?
    • clear() or %clear

Clone this wiki locally