Skip to main content

Home/ Python Programming/ Group items tagged platform

Rss Feed Group items tagged

reckoner reckoner

Cross platform way of finding number of processors on a machine? - comp.lang.python | G... - 0 views

  • > Is there a way to find the number of processors on a machine (on linux/ > windows/macos/cygwin) using python code (using the same code/cross > platform code)? From processing <http://cheeseshop.python.org/pypi/processing/0.34> : def cpuCount():     '''     Returns the number of CPUs in the system     '''     if sys.platform == 'win32':         try:             num = int(os.environ['NUMBER_OF_PROCESSORS'])         except (ValueError, KeyError):             pass     elif sys.platform == 'darwin':         try:             num = int(os.popen('sysctl -n hw.ncpu').read())         except ValueError:             pass     else:         try:             num = os.sysconf('SC_NPROCESSORS_ONLN')         except (ValueError, OSError, AttributeError):             pass     if num >= 1:         return num     else:         raise NotImplementedError --
jdr santos

Riverbank | Software | PyQt | What is PyQt? - 2 views

  •  
    "PyQt brings together the Qt C++ cross-platform application framework and the cross-platform interpreted language Python. "
steelkiwi

How to Build an On-Demand Platform Like Uber or Airbnb - 0 views

  •  
    "When we talk about building an on demand delivery app clone, we're often talking about building an app like Uber or Airbnb. Two major decacorns (companies worth $10 billion or more), Uber and Airbnb are worth billions of dollars. To be more precise, Uber was valued at $72 billion and Airbnb at $29.3 billion as of August 2018. Uber is available in more than 65 countries and over 600 cities. Every day, nearly two million people rent accommodation through Airbnb. What's so great about these two companies that makes so many people regularly use their applications and makes entrepreneurs want to copy them? We're in this article to talk about the philosophy behind an Uber- or Airbnb-like on-demand delivery service app."
steelkiwi

How to Build an Online Marketplace - 0 views

  •  
    "The amount of online marketplaces increases every day. Both consumers and suppliers increasingly turn to online interaction. Online marketplaces dominate over traditional offline platforms due to convenience and time efficiency. In such a manner, more and more entrepreneurs come to an idea to build an online marketplace platform and need to make many decisions before any work is done. What are they? In this article, we discuss five main aspects you should consider if you want to build an online marketplace"
reckoner reckoner

Winpdb - A Platform Independent Python Debugger » Documentation - 0 views

  • Winpdb is a platform independent GPL Python debugger with support for multiple threads, namespace modification, embedded debugging, encrypted communication and is up to 20 times faster than pdb.
gialloporpora

Ubiquity's Python Feed Plugin at Toolness - 0 views

  •  
    A few weeks ago I wrote about Ubiquity Feed Plugins, which are basically just a way of separating the user interface of subscribing to a new feature from the implementation of the feature itself. As I've written about before, one of the things I've missed about the Mozilla development environment is its support for the Python programming language. Aside from being humane and having a great community, it has functionality that could complement the Mozilla platform quite nicely. So we've whipped up a quick proof-of-concept Python Feed Plugin for Ubiquity to explore this possibility.
jdr santos

Boa Constructor home - 0 views

  •  
    Boa Constructor is a cross platform Python IDE and wxPython GUI Builder. It offers visual frame creation and manipulation, an object inspector, many views on the source like object browsers, inheritance hierarchies, doc string generated html documentation
reckoner reckoner

PyGUI - 0 views

  • This is a project to develop a cross-platform pythonic GUI API.  The goals of this project are:
reckoner reckoner

pyPortMidi - 0 views

  • pyPortMidi is a Python wrapper I wrote for PortMidi. PortMidi is a cross-platform C library for realtime MIDI control. Using pyPortMidi, you can send and receive MIDI data in realtime from Python.
reckoner reckoner

SVGMath - MathML to SVG Converter in Python - 0 views

  • SVGMath is written in pure Python, with neither extension modules nor external dependencies. It runs on any platform where a modern Python environment (version 2.4 or higher) is available. It can be used either as a command-line script for batch-mode file conversion, or as a component to process MathML data in other Python applications.
reckoner reckoner

PyInstaller - 0 views

  • PyInstaller is a program that converts (packages) Python programs into stand-alone executables, under Windows, Linux and Irix. Its main advantages over similar tools are that PyInstaller works with any version of Python since 1.5, it builds smaller executables thanks to transparent compression, it is multi-platform (so you can build one-file binaries also under Linux), and use the OS support to load the dynamic libraries, thus ensuring full compatibility. PyInstaller is an effort to rescue, maintain and further develop Gordon McMillan's Python Installer (now PyInstaller). Their official website is not longer available and the original package is not longer maintained. Believing that it is still far superior to py2exe, we have setup this site to continue its further development. Feel free to join us in the effort! Please consult our Roadmap to check our plans. Also usage reports are welcomed: let us know if PyInstaller works for you and how, or what problems you found in using it.
reckoner reckoner

pyPdf - 0 views

  • A Pure-Python library built as a PDF toolkit. It is capable of: extracting document information (title, author, ...), splitting documents page by page, merging documents page by page, cropping pages, merging multiple pages into a single page, encrypting and decrypting PDF files. By being Pure-Python, it should run on any Python platform without any dependencies on external libraries. It can also work entirely on StringIO objects rather than file streams, allowing for PDF manipulation in memory. It is therefore a useful tool for websites that manage or manipulate PDFs.
reckoner reckoner

rsync implemented in Python - 0 views

  • This script mimics rsync which is available for the unix platform and have been ported to win32 one. It is a sort of advanced version of xcopy. Its aim is to selectively synchronize folders. More precisely it copy selective parts of a folder to a destination folder and in addition can remove parts of the destination folder that do not correspond to parts of the original folder. I like its capability to avoid copying files through the .cvsignore mechanism or the pattern matching mechanism and its capability to delete files that are no longer relevant, not to mention that because it's a python script anyone can easily fix or improve it as he whish.
  •  
    rsync implemented in Python
reckoner reckoner

The Eric Python IDE - 0 views

  • Eric is a full featured Python and Ruby editor and IDE, written in python. It is based on the cross platform Qt gui toolkit, integrating the highly flexible Scintilla editor control. It is designed to be usable as everdays' quick and dirty editor as well as being usable as a professional project management tool integrating many advanced features Python offers the professional coder. Current stable version is eric4 based on Qt4. For Qt3 based systems eric3 is still available.
  •  
    more windows xp  friendly and all in python.
marytmoreno

How to Create a Website with Joomla in 2020? [Step by Step] | ArticleIFY - 0 views

  •  
    Anyone who wants to earn extra money may consider creating a website. There are several platforms to do this, but in this article, we will show how to create a website with Joomla.
jdr santos

Kivy: Crossplatform Framework for NUI - 0 views

  •  
    "Kivy - Open source Python library for rapid development of applications that make use of innovative user interfaces, such as multi-touch apps. "
1 - 16 of 16
Showing 20 items per page