The successor to Budou, the machine learning powered line break organizer tool

Standalone. Small. Language-neutral. BudouX is the successor to Budou, the machine learning powered line break organizer tool. It is standalone. It works with no dependency on third-party word segmenters such as Google cloud natural language API. It is small. It takes only around 15 KB including its machine learning model. It’s reasonable to use it even on the client-side. It is language-neutral. You can train a model for any language by feeding a dataset to BudouX’s training script. Last but […]

Read more

The ability to quickly add comments to Naver Cafe

네이버 카페 댓글을 빨리 다는 기능 네이버 카페 자동 출석 체크 기능 동작 방식 카페 댓글 기능 기본 동작은 주기적인 스케쥴 동작으로 해당 카페 ID 와 특정 API 주소로 대상이 새글을 작성했는지 체크. 해당 대상이 새글 등록 시 자동 댓글 등록 API 실행 ( 이때 등록되는 ID 는 ‘n_aut’, ‘n_ses’ 등록된 네이버 로그인 고유 세션키로 등록 ) 출석 체크 기능 등록된 카페 ID 의 URL 로 30분 주기 새로고침을 통해 자동 출석횟수 증가 ( 여기서도 증가시킬 회원정보는 ‘n_aut’, ‘n_ses’ 키의 […]

Read more

A distutils extension to create standalone Windows programs from Python code

py2exe is a distutils extension which allows to build standalone Windows executable programs (32-bit and 64-bit) from Python scripts. Python versions included in the official development cycle are supported (from 3.6 to 3.9 included). py2exe can build console executables and windows (GUI) executables. Building windows services, and DLL/EXE COM servers might work but it is not actively supported. Development of py2exeis hosted here: https://github.com/py2exe/py2exe. Changes Detailed changelog is published on GitHub. Version 0.10.2.0: New module finder with support for implicit […]

Read more

A tool to build Windows installers for your Python applications

Pynsist is a tool to build Windows installers for your Python applications. The installers bundle Python itself, so you can distribute your application to people who don’t have Python installed. Pynsist 2 requires Python 3.5 or above. You can use Pynsist 1.x on Python 2.7 and Python 3.3 or above. For more information, see the documentation and the examples. Quickstart Get the tools. Install NSIS, and then install pynsist from PyPI by running pip install pynsist. Write a config file […]

Read more

A Python setuptools command which will allow you to make standalone Mac OS X application bundles and plugins from Python scripts

py2app is a Python setuptools command which will allow you to make standalone Mac OS X application bundles and plugins from Python scripts. py2app is similar in purpose and design to py2exe for Windows. NOTE: py2app must be used on OSX to build applications, it cannot create Mac applications on other platforms. Project links GitHub https://github.com/ronaldoussoren/py2app    

Read more

Pythonic task management & command execution

Invoke is a Python (2.7 and 3.4+) library for managing shell-oriented subprocesses and organizing executable Python code into CLI-invokable tasks. It draws inspiration from various sources (make/rake, Fabric 1.x, etc) to arrive at a powerful & clean feature set. For a high level introduction, including example code, please see our main project website; or for detailed API docs, see the versioned API website. GitHub https://github.com/pyinvoke/invoke    

Read more

A modern Python application packaging and distribution tool

PyOxidizer is a utility for producing binaries that embed Python. The over-arching goal of PyOxidizer is to make complex packaging and distribution problems simple so application maintainers can focus on building applications instead of toiling with build systems and packaging tools. PyOxidizer is capable of producing a single file executable – with a copy of Python and all its dependencies statically linked and all resources (like .pyc files) embedded in the executable. You can copy a single executable file to […]

Read more

A python tool for creating installers from conda packages

Description Constructor is a tool which allows constructing an installer for a collection of conda packages. It solves needed packages using user-provided specifications, and bundles those packages. It can currently create 3 kinds of installers, which are best thought of as delivery vehicles for the bundled packages. There are shell installers, MacOS .pkg installers, and Windows .exe installers. Each of these will create an environment on the end user’s system that contains the specs you provided, along with any necessary […]

Read more

The blessed package to manage your versions by scm tags

setuptools_scm setuptools_scm handles managing your Python package versions in SCM metadata instead of declaring them as the version argument or in a SCM managed file. Additionally setuptools_scm provides setuptools with a list of files that are managed by the SCM (i.e. it automatically adds all of the SCM-managed files to the sdist). Unwanted files must be excluded by discarding them via MANIFEST.in. setuptools_scm support the following scm out of the box: pyproject.toml usage The preferred way to configure setuptools_scm is […]

Read more

The official binary distribution format for Python

This library is the reference implementation of the Python wheel packaging standard, as defined in PEP 427. It has two different roles: A setuptools extension for building wheels that provides the bdist_wheel setuptools command A command line tool for working with wheel files It should be noted that wheel is not intended to be used as a library, and as such there is no stable, public API. Documentation The documentation can be found on Read The Docs. Code of Conduct […]

Read more
1 385 386 387 388 389 976