PostgreSQL database adapter for the Python programming language

psycopg2 Psycopg is the most popular PostgreSQL database adapter for the Python programming language. Its main features are the complete implementation of the Python DB API 2.0 specification and the thread safety (several threads can share the same connection). It was designed for heavily multi-threaded applications that create and destroy lots of cursors and make a large number of concurrent “INSERT”s or “UPDATE”s. Psycopg 2 is mostly implemented in C as a libpq wrapper, resulting in being both efficient and […]

Read more

A Python UIAutomation module for Windows

The uiautomation module This module is for UIAutomation on Windows(Windows XP with SP3, Windows Vista, Windows 7 and Windows 8/8.1/10). It supports UIAutomation for the applications which implmented UIAutomation Provider, such as MFC, Windows Form, WPF, Modern UI(Metro UI), Qt(Partly), Firefox(version=60), Chrome and Electron based apps(require –force-renderer-accessibility command line parameter). uiautomation1.x supports py2, py3 and doesn’t depend on any third package. uiautomation2.0+ only supports py3 and depends on comtypes and typing(Python3.5+ built-in).uiautomation2.0+ is not backward compatible with early versions. See […]

Read more

Blender addons to make the bridge between Blender and geographic data with python

Blender GIS GIS datafile import : Import in Blender most commons GIS data format : Shapefile vector, raster image, geotiff DEM, OpenStreetMap xml. There are a lot of possibilities to create a 3D terrain from geographic data with BlenderGIS. Flowchart Exemple : import vector contour lines, create faces by triangulation and put a topographic raster texture. Grab geodata directly from the web : display dynamics web maps inside Blender 3d view, requests for OpenStreetMap data (buildings, roads …), get true […]

Read more

A professional collaborative platform for embedded development for python

PlatformIO PlatformIO is a professional collaborative platform for embedded development A place where Developers and Teams have true Freedom! No more vendor lock-in! Open source, maximum permissive Apache 2.0 license Cross-platform IDE and Unified Debugger Static Code Analyzer and Remote Unit Testing Multi-platform and Multi-architecture Build System Firmware File Explorer and Memory Inspection. PlatformIO is a cross-platform, cross-architecture, multiple framework, professional tool for embedded systems engineers and for software developers who write applications for embedded products. Awards PlatformIO was nominated […]

Read more

An extensible open source load testing tool written in python

Yandex Tank Yandex.Tank is an extensible open source load testing tool for advanced linux users which is especially good as a part of an automated load testing suite. Main features different load generators supported: Evgeniy Mamchits’ phantom is a very fast (100 000+ RPS) shooter written in C++ (default) JMeter is an extendable and widely known one BFG is a Python-based generator that allows you to write your load scenarios in Python experimental Golang generator: pandora performance analytics backend service: […]

Read more

A parametric 3D modeler made primarily to design real-life objects of any size

FreeCAD This is the official source code of FreeCAD, a free and opensource multiplatform 3D parametric modeler. Freedom to build what you want FreeCAD is an open-source parametric 3D modeler made primarily to design real-life objects of any size. Parametric modeling allows you to easily modify your design by going back into your model history to change its parameters. Create 3D from 2D and back FreeCAD lets you to sketch geometry constrained 2D shapes and use them as a base […]

Read more

DRY Django forms with Python 3.6

django-crispy-forms The best way to have Django DRY forms. Build programmatic reusable layouts out of components, having full control of the rendered HTML without writing HTML in templates. All this without breaking the standard way of doing things in Django, so it plays nice with any other form application. django-crispy-forms supports Django 2.2, 3.1 and 3.2 with Python 3.6+. The application mainly provides: A filter named |crispy that will render elegant div based forms. Think of it as the built-in […]

Read more

PyTorch library for training Submanifold Sparse Convolutional Networks

SparseConvNet Submanifold Sparse Convolutional NetworksThis is the PyTorch library for training Submanifold Sparse Convolutional Networks. Spatial sparsity This library brings Spatially-sparse convolutional networks to PyTorch. Moreover, it introduces Submanifold Sparse Convolutions, that can be used to build computationally efficient sparse VGG/ResNet/DenseNet-style networks. With regular 3×3 convolutions, the set of active (non-zero) sites grows rapidly: With Submanifold Sparse Convolutions, the set of active sites is unchanged. Active sites look at their active neighbors (green); non-active sites (red) have no computational overhead: […]

Read more

A headless e-commerce platform built with Python and React

Saleor Commerce A headless, GraphQL-first e-commerce platform delivering ultra-fast, dynamic, personalized shopping experiences. Beautiful online stores, anywhere, on any device. What makes Saleor special? Saleor is a rapidly-growing open source e-commerce platform that has served high-volume companies from branches like publishing and apparel since 2012. Based on Python and Django, the latest major update introduces a modular front end powered by a GraphQL API and written with React and TypeScript. Features PWA: End users can shop offline for better sales […]

Read more

Web service which feeds Navitia with real-time disruptions

Chaos Chaos is the web service which can feed Navitia with real-time disruptions. It can work together with Kirin which can feed Navitia with real-time delays. Installation The hard way Clone the Chaos repository git clone [email protected]:CanalTP/Chaos.git cd Chaos Requirements PostgreSQL 9.6 sudo apt-get install postgresql-9.6 postgresql-server-dev-9.6 libpq-dev RabbitMQ Python Install Python2.7 sudo apt-get install python2.7 python2.7-dev or sudo apt install python2 python2-dev on recent linux release Install pip Install virtualenv virtualenv venv source venv/bin/activate pip install -r requirements.txt Install […]

Read more
1 604 605 606 607 608 921