qpython

Pycrypto 2.6.1 for android smartphone

我的梦境 提交于 2019-12-08 13:11:22
问题 I am doing a project where I am required to do an encryption on Windows system and then I need to decrypt the message on an Android smartphone. I am using Python with pycrypto 2.6.1 module on Windows and qpython app on the smartphone. Qpython is not recognizing the the encryption code I am using on Windows and it is telling me that no module Crypto can be found. How do I implement pycrypto 2.6.1 module on smartphone? 回答1: https://drive.google.com/file/d/0B9cgr9L98QxzR0t3S0VoUWxQeTg/view?usp

QPython development environment using mac or windows

感情迁移 提交于 2019-12-06 05:54:06
Being new to QPython, didn't find any reference about developing on a Mac or Pc, eventually deploying the code on the Android device. In contrast to developing the code itself on the Android device which seems very awkward specially for larger projects. I wish to write the code using a "normal" IDE such as IntelliJ using my Mac or Windows, eventually deploy it on an Android device, and execute with QPython. So the following questions come to mind: Best practice to transfer source code to an Android device with QPython installed (not using the QR Code which is limited to few KB's of code) Is it

Can you update QPython3 version of Python3?

两盒软妹~` 提交于 2019-12-04 06:23:14
I want to install biopython on Qpython3 but it says that I have python 3.2 and need version 3.3 or greater. Is there no version of QPython3 available with a higher version? Can I update it somehow? -Thanks There's something in the wiki about changing the core http://wiki.qpython.org/zh/diveinto/#how-to-replace-the-python-core but it is rather short and cryptic, ending with More detail coming soon ... Now, you can install qpy36 ( http://qpy36.qpython.org/ ) to update QPython3's core. 来源: https://stackoverflow.com/questions/30875258/can-you-update-qpython3-version-of-python3

Accessing command history in QPython console for Android

落花浮王杯 提交于 2019-12-01 16:02:50
Is it possible to access previously entered commands in QPython's console/REPL? Up and down arrows just display escape sequences. I tried switching the Terminal type option between screen , linux , and vt100 , but this doesn't seem to help. A related question didn't specify it was referring to QPython's console, and got an answer that is not relevant. No, it' not possible. The feature hasn't been implemented. But if you can use Python3's syntax instead of Python 2.7, you can use QPython3 app instead where this feature has been implemented. This is the answers from QPython's support: From:

Accessing command history in QPython console for Android

ⅰ亾dé卋堺 提交于 2019-12-01 15:33:13
问题 Is it possible to access previously entered commands in QPython's console/REPL? Up and down arrows just display escape sequences. I tried switching the Terminal type option between screen , linux , and vt100 , but this doesn't seem to help. A related question didn't specify it was referring to QPython's console, and got an answer that is not relevant. 回答1: No, it' not possible. The feature hasn't been implemented. But if you can use Python3's syntax instead of Python 2.7, you can use QPython3

安装软件包的三种方法,rpm包介绍,rpm工具用法,yum工具用法,yum搭建本地仓库

谁都会走 提交于 2019-11-29 11:16:47
安装软件包的三种方法 三种方法分别是:rpm包,yum工具,源码包 rpm包类似windows的安装程序 但是有一个问题,有时候要安装rpm包 A 是需要一些依赖包才能安装的,比如rpm包 B 如果不先安装依赖包,rmp包B,是不能安装rpm包A的 所以比较繁琐 yum工具的好处是,使用yum工具安装rpm包A的时候 yum工具可以自动安装依赖包,rpm包 B 所以就很方便 源码包就是用编程语言写的程序文件 需要把程序文件用编译软件编译成二进制文件 才可以使用 rpm 包介绍 如图,点击虚拟机光盘图标,选择连接 如图,使用命令将 cdrom 设备文件挂载到 /mnt/ 目录下面 写保护是因为用户不能对cdrom进行写入操作 上图可以看到,进入/mnt/目录,看到的文件就是光驱里面的内容 cd Packages/ 进入 Packages 目录 使用ls命令 可以看到许多以 .rpm 结尾的文件,这些都是rpm包 第一个箭头是指包名称 第二个箭头是版本号,第三个箭头是次版本号,第四个箭头是再次的版本号 第五六个箭头是发布版本号 第七个箭头是平台位数,32或者64位,这里是64位的 64位系统可以安装32位的包,但是32位系统不能安装64位的包 rpm工具用法 参数 -ivh , i是install,v是可视化,h是人性化的显示 使用以上参数来安装 rpm 包

How do I install modules on qpython3 (Android port of python)

旧街凉风 提交于 2019-11-28 23:39:57
I found this great module on within and downloaded it as a zip file. Once I extracted the zip file, i put the two modules inside the file(setup and the main one) on the module folder including an extra read me file I needed to run. I tried installing the setup file but I couldn't install it because the console couldn't find it. So I did some research and I tried using pip to install it as well, but that didn't work. So I was wondering if any of you could give me the steps to install it manually and with pip (keep in mind that the setup.py file needs to be installed in order for the main module

How do I install modules on qpython3 (Android port of python)

一笑奈何 提交于 2019-11-27 14:51:56
问题 I found this great module on within and downloaded it as a zip file. Once I extracted the zip file, i put the two modules inside the file(setup and the main one) on the module folder including an extra read me file I needed to run. I tried installing the setup file but I couldn't install it because the console couldn't find it. So I did some research and I tried using pip to install it as well, but that didn't work. So I was wondering if any of you could give me the steps to install it