Giter Club home page Giter Club logo

Comments (7)

psthomas avatar psthomas commented on August 26, 2024 1

I was trying to do something similar and might have a solution. If you want to do this from within a notebook, it's possible to run nbstripout as a part a bash command in a cell:

# Both original and the cleaned example are in the current working directory
notebook_path = './notebook.ipynb'
cleaned_path = './notebook_clean.ipynb'

# Bash commands within notebooks are preceeded by "!"
!cat {notebook_path} | nbstripout > {cleaned_path}

I've been running a command like this in a cell to make it more versatile and provide some feedback:

import os
from datetime import datetime

notebook_path = os.path.join(os.getcwd(),'notebook.ipynb')
cleaned_path = os.path.join(os.getcwd(),'notebook_clean.ipynb')

!cat {notebook_path} | nbstripout > {cleaned_path}

date_str = datetime.now().strftime('%Y-%m-%d %H:%M:%S')
print('{0} Cleaned file created at: {1}'.format(date_str, cleaned_path))
2017-06-23 12:57:40 Cleaned file created at: <current directory>/notebook_clean.ipynb

Note: I think there might be an error in readme.rst because the shell pipeline example doesn't use cat while the docstring in nbstripout.py does. I can open a separate issue if needed.

from nbstripout.

kynan avatar kynan commented on August 26, 2024

There is a (as you rightly point out undocumented) way of doing it programmatically - do what is done in main(). Something like this (untested):

import io
from nbstripout import strip_output, read, write, NO_CONVERT

if __name__ == '__main__':
    filename = ...
    outfile = ...
    with io.open(filename, 'r', encoding='utf8') as f:
        nb = read(f, as_version=NO_CONVERT)
    nb = strip_output(nb)
    with io.open(outfile, 'w', encoding='utf8') as f:
        write(nb, f)

from nbstripout.

stanleyng8 avatar stanleyng8 commented on August 26, 2024

I tried the above in Python3.6 with Anaconda on Mac OsX and with just the import statement, I am getting the following error.

File "/Users/stanley/anaconda3/envs/py36/lib/python3.6/site-packages/nbstripout.py", line 96, in <module>
  output_stream = io.TextIOWrapper(sys.stdout.buffer, encoding='utf-8')

AttributeError: 'OutStream' object has no attribute 'buffer'

I looked at the nbstripout.py code and the code is specifically for Python3 yet this is where the error is coming from. Any ideas for a fix?

from nbstripout.

kynan avatar kynan commented on August 26, 2024

Are you trying the import from within a notebook? This will not work because sys.stdout is a ipykernel.iostream.OutStream in that case.

from nbstripout.

stanleyng8 avatar stanleyng8 commented on August 26, 2024

Thanks for the comments. I was running nbstripout with Python 3.6 as a script and not a notebook.

from nbstripout.

kynan avatar kynan commented on August 26, 2024

@stanleyng8 I can not reproduce this issue: have tried with Python 3.6 from anaconda. Which nbstripout version are you using?

from nbstripout.

stanleyng8 avatar stanleyng8 commented on August 26, 2024

Thanks Florian but I have decided not to pursue this avenue any further.

from nbstripout.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.