Pythonista-Issues
Pythonista-Issues copied to clipboard
Issue tracker for Pythonista (iOS)
Can we have Scripy included in the next version?
Hi. Really need help. When I install (pip install NumPy) in Pythonista and launch my code it gives ,e an error (you should not try to import NumPy from its...
python 3.10.4 Pythonista 3.4 Site-package Yaml is 3.11 AttributeError: module 'collections' has no attribute 'Hashable' Solution #1: upgrade YAML, see https://github.com/yaml/pyyaml/commit/9959328b41ee577c6f14e3a0184b07dd0ecadb8c alternative solution: copy the yaml directory from site-packages (built-in)...
# Problem Using drop_duplicates from pandas crashes the App. Crashes with example code from pandas documentation. ## Sample Code ``` import pandas as pd df = pd.DataFrame({ 'brand': ['Yum Yum',...
I am learn this from doc, from objc_util import * MPMusicPlayerController = ObjCClass('MPMusicPlayerController') player = MPMusicPlayerController.systemMusicPlayer() now_playing = player.nowPlayingItem() if now_playing: artist = now_playing.valueForProperty_('artist') title = now_playing.valueForProperty_('title') print('Now playing: %s...
In the calculator demo as provided, the only check for adding a decimal point is whether the last character of the input is a decimal point. This allows entering numbers...
When importing numpy with an alias as ``` import numpy as np ``` writing `np.z` or similar does not offer auto completion. However, `numpy.z` does. This is not specific to...
Pythonista app icon folder we may see in Apple iOS and iPadOS file manager app is a default icon, not Pythonista icon. It is not a bug, only esthetic. Thanks...
The example (mentioned in closed issue support #501) **System Information** * Pythonista N/A (N/A), Default interpreter 3.10.4 * iOS 16.5, model iPad7,5, resolution (portrait) 1536.0 x 2048.0 @ 2.0 When...
It's a minor difference, but shouldn't the `match` and `case` statements added in Python 3.10 be recognized by the editor? [What's New In Python 3.10 - Structural Pattern Matching](https://docs.python.org/3/whatsnew/3.10.html#pep-634-structural-pattern-matching) [PEP...