Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.11 KB

TODO.md

File metadata and controls

35 lines (26 loc) · 1.11 KB

Todos

Features

  • Add a registry to patched objects
  • Add ability to unpatch objects
  • Add context manager to temporarily add or remove patches

Settings and config

❯ jupyter lab path
Application directory:   /Users/tpvasconcelos/Library/Caches/pypoetry/virtualenvs/dca-9Qm21AwB-py3.7/share/jupyter/lab
User Settings directory: /Users/tpvasconcelos/.jupyter/lab/user-settings
Workspaces directory: /Users/tpvasconcelos/.jupyter/lab/workspaces

General Data Science

pandas

  • did you mean .value_counts() ?
  • Styling preset
  • The pandas SQLDatabase and SQLiteDatabase caching patches still try to connect to DB before accessing the cache this is probably happening during instantiation of the class. This makes the caching unusable when unconnected to the internet.

Bugs

  • FileExistsError when a method is patched multiple times. The solution is to create a registry for patched methods such that we don't double-patch methods.