You are here: Home

Modified items

All recently modified items, latest first.
RPMPackage python3-jupyter-lsp-2.2.0-1.lbn36.noarch
jupyter-lspMulti-[Language Server][language-server] WebSocket proxy for your Jupyter notebook or lab server. For Python 3.6+.> See the parent of this repository, > [jupyterlab-lsp]( for the > reference client implementation for [JupyterLab][]. Language Serversjupyter-lsp does not come with any Language Servers! Learn more about installing and configuring [language servers][language servers...
RPMPackage python3-jupyter-jaeger-1.0.4-1.lbn36.noarch
This adds support for using the Jaeger distributed tracing tool with Jupyter. It facilitates the use case of tracking some process that starts in a kernel and is continued in a mime renderer. We are using it to profile and debug ibis-vega-transform which goes back and forth between the kernel and the frontend to interactively render charts with Altair. Installing this adds two Jupyter server extensions that start up the jaeger-all-in-one and jaeger-browser processes when you launch Jupyter. So to use it you must first instrument code in your kernel and/or in the frontend to record traces. It also provis a NPM Typescript plugin you can use to access the client from inside a JupyterLab extension.
RPMPackage python3-jupyter-events-0.10.0-1.lbn36.noarch
Jupyter Events An event system for Jupyter Applications and extensions. Jupyter Events enables Jupyter Python Applications (e.g. Jupyter Server, JupyterLab Server, JupyterHub, etc.) to emit events—structured data describing things happening inside the application. Other software (e.g. client applications like JupyterLab) can listen and respond to these events. Install Install Jupyter Events directly from PyPI: pip install jupyter_events or conda-forge: conda install -c conda-forge jupyter_events Documentation Documentation is available at jupyter-events.readthedocs.io. About the Jupyter Development Team The Jupyter Development Team is the set of all contributors to the Jupyter project. This includes all of the Jupyter subprojects. The core team that coordinates development on GitHub can be found here: https:/github.com/jupyter/. Our Copyright Policy Jupyter uses a shared copyright model. Each contributor maintains copyright over their contributions to Jupyter. But, it is important
RPMPackage python3-jupyter-cache-0.5.0-1.lbn36.noarch
jupyter-cache[![Github-CI][github-ci]][github-link] [![Coverage Status][codecov-badge]][codecov-link] [![Documentation Status][rtd-badge]][rtd- link] [![Code style: black][black-badge]][black-link] [![PyPI][pypi- badge]][pypi-link]A defined interface for working with a cache of jupyter notebooks. Why use jupyter-cache?If you have a number of notebooks whose execution outputs you want to...
RPMPackage python3-jupyter-c-kernel-1.2.2-14.fc36.noarch
Minimalistic C kernel for Jupyter
RPMPackage python3-ydb-dbapi-0.1.11-1.lbn36.noarch
YDB Python DBAPI Introduction Python DBAPI to YDB, which provides both sync and async drivers and complies with PEP249. Installation pip install ydb-dbapi Usage To establish a new DBAPI connection you should provide host, port and database: import ydb_dbapi connection = ydb_dbapi.connect( host="localhost", port="2136", database="/local" ) # sync connection async_connection = await ydb_dbapi.async_connect( host="localhost", port="2136", database="/local" ) # async connection Usage of connection: with connection.cursor() as cursor: cursor.execute("SELECT id, val FROM table") row = cursor.fetchone() rows = cursor.fetchmany(size=5) rows = cursor.fetchall() Usage of async connection: async with async_connection.cursor() as cursor: await cursor.execute("SELECT id, val FROM table") row = await cursor.fetchone() rows = await cursor.fetchmany(size=5) rows = await cursor.fetchall()
RPMPackage python3-ydb-3.21.0-1.lbn36.noarch
ydb
RPMPackage python3-pyxlsb-1.0.10-1.lbn36.noarch
|PyPI|pyxlsb is an Excel 2007-2010 Binary Workbook (xlsb) parser for Python. The library is currently extremely limited, but functional enough for basic data extraction.Install .. code:: sh pip install pyxlsbUsage The module exposes an open_workbook(name) method (similar to Xlrd and OpenPyXl) for opening XLSB files. The Workbook object representing the file is returned... code:: python from...
RPMPackage python3-trio-websocket-0.12.2-2.lbn36.noarch
This library implements both server and client aspects of the the WebSocket protocol, striving for safety, correctness, and ergonomics. It is based on the wsproto project, which is a Sans-IO state machine that implements the majority of the WebSocket protocol, including framing, codecs, and events. This library handles I/O using the Trio framework. This library passes the Autobahn Test Suite.
RPMPackage python3-trio-0.30.0-2.lbn36.noarch
The Trio project's goal is to produce a production-quality, permissively licensed, async/await-native I/O library for Python. Like all async libraries, its main purpose is to help you write programs that do multiple things at the same time with parallelized I/O. A web spider that wants to fetch lots of pages in parallel, a web server that needs to juggle lots of downloads and websocket connections at the same time, a process supervisor monitoring multiple subprocesses... that sort of thing. Compared to other libraries, Trio attempts to distinguish itself with an obsessive focus on usability and correctness. Concurrency is complicated; we try to make it easy to get things right.
RPMPackage python3-sqlparse-0.5.3-1.lbn36.noarch
sqlparse is a tool for parsing SQL strings. It can generate pretty-printed renderings of SQL in various formats. It is a python module, together with a command-line tool.
RPMPackage python3-sqlmodel-slim-0.0.22-1.lbn36.noarch
SQLModel is a library for interacting with SQL databases from Python code, with Python objects. It is designed to be intuitive, easy to use, highly compatible, and robust. SQLModel is based on Python type annotations, and powered by Pydantic and SQLAlchemy. The key features are: • Intuitive to write: Great editor support. Completion everywhere. Less time debugging. Designed to be easy to use and learn. Less time reading docs. • Easy to use: It has sensible defaults and does a lot of work underneath to simplify the code you write. • Compatible: It is designed to be compatible with FastAPI, Pydantic, and SQLAlchemy. • Extensible: You have all the power of SQLAlchemy and Pydantic underneath. • Short: Minimize code duplication. A single type annotation does a lot of work. No need to duplicate models in SQLAlchemy and Pydantic.
RPMPackage python3-sqlmodel-0.0.22-1.lbn36.noarch
SQLModel is a library for interacting with SQL databases from Python code, with Python objects. It is designed to be intuitive, easy to use, highly compatible, and robust. SQLModel is based on Python type annotations, and powered by Pydantic and SQLAlchemy. The key features are: • Intuitive to write: Great editor support. Completion everywhere. Less time debugging. Designed to be easy to use and learn. Less time reading docs. • Easy to use: It has sensible defaults and does a lot of work underneath to simplify the code you write. • Compatible: It is designed to be compatible with FastAPI, Pydantic, and SQLAlchemy. • Extensible: You have all the power of SQLAlchemy and Pydantic underneath. • Short: Minimize code duplication. A single type annotation does a lot of work. No need to duplicate models in SQLAlchemy and Pydantic.
RPMPackage python3-sqlglotrs-0.1.3-1.lbn36.x86_64
None
RPMPackage python3-sqlglot-27.0.0-1.lbn36.noarch
![SQLGlot logo](sqlglot.svg)SQLGlot is a no-dependency SQL parser, transpiler, optimizer, and engine. It can be used to format SQL or translate between [21 different dialects]( like [DuckDB]( [Presto]( / [Trino]( [Spark]( / [Databricks]( [Snowflake]( and [BigQuery]( It aims to read a wide variety of SQL inputs and output syntactically and semantically correct SQL in the targeted dialects.
RPMPackage python3-selenium-4.34.2-1.lbn36.noarch
The selenium package is used automate web browser interaction from Python. Several browsers/drivers are supported (Firefox, Chrome, Internet Explorer, PhantomJS), as well as the Remote protocol.
RPMPackage python3-outcome-1.3.0.post0-2.lbn36.noarch
Outcome provides a function for capturing the outcome of a Python function call, so that it can be passed around.
RPMPackage python3-scrapbook+s3-0.5.0-1.lbn36.noarch
This is a metapackage bringing in s3 extras requires for python3-scrapbook. It makes sure the dependencies are installed.
RPMPackage python3-scrapbook+gcs-0.5.0-1.lbn36.noarch
This is a metapackage bringing in gcs extras requires for python3-scrapbook. It makes sure the dependencies are installed.
RPMPackage python3-scrapbook+azure-0.5.0-1.lbn36.noarch
This is a metapackage bringing in azure extras requires for python3-scrapbook. It makes sure the dependencies are installed.