mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-04-22 10:28:02 +00:00
8 lines
234 B
Python
8 lines
234 B
Python
from nbconvert.writers.base import WriterBase
|
|
|
|
|
|
class HelloWriter(WriterBase):
|
|
def write(self, output, resources, notebook_name=None, **kw):
|
|
with open("hello.txt", "w") as outfile:
|
|
outfile.write("hello world")
|