P H
P H

Reputation: 344

How do I view python files in bitbucket?

I have committed my python file myfilename.ipynb in a git repository. But when I am trying to view my pull request in bitbucket, it shows like below:

enter image description here

Isn't there a nice view to python files like below in bitbucket?

enter image description here

Upvotes: 0

Views: 814

Answers (1)

AKX
AKX

Reputation: 169268

ipynb files (not ipnb) are IPython Notebook files, not Python source files (and internally, they're JSON files containing cells which may contain e.g. Python source or images or other data).

While e.g. GitHub has rich preview and diff for notebooks, BitBucket might not.

Upvotes: 1

Related Questions