Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
:Name: czml3 :Authors: Juan Luis Cano Rodríguez, Eleftheria Chatziargyriou
.. |codecov| image:: https://img.shields.io/codecov/c/github/poliastro/czml3.svg?style=flat-square :target: https://codecov.io/github/poliastro/czml3?branch=master
.. |license| image:: https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square :target: https://github.com/poliastro/czml3/raw/master/LICENSE
.. |matrix| image:: https://img.shields.io/matrix/poliastro-czml:matrix.org.svg?style=flat-square :alt: Join the chat at https://openastronomy.riot.im/#/room/#poliastro-czml:matrix.org :target: https://openastronomy.riot.im/#/room/#poliastro-czml:matrix.org
.. |pypi-downloads| image:: https://img.shields.io/pepy/dt/czml3?label=pypi%20downloads :alt: Pepy Total Downlods
.. |version| image:: https://img.shields.io/pypi/v/czml3 :alt: PyPI - Version
.. |workflow-status| image:: https://img.shields.io/github/actions/workflow/status/poliastro/czml3/workflow.yml?branch=main :alt: GitHub Actions Workflow Status
.. |conda-version| image:: https://img.shields.io/conda/vn/conda-forge/czml3?label=conda :alt: Conda Version
.. |conda-downloads| image:: https://img.shields.io/conda/dn/conda-forge/czml3?label=conda%20downloads :alt: Conda Downloads
|version| |conda-version| |workflow-status| |codecov| |pypi-downloads| |conda-downloads| |license| |matrix|
czml3 is a Python library to write CZML.
From the official
CZML Guide <https://github.com/AnalyticalGraphicsInc/czml-writer/wiki/CZML-Guide>
_:
CZML is a JSON format for describing a time-dynamic graphical scene, primarily for display in a web browser running Cesium. It describes lines, points, billboards, models, and other graphical primitives, and specifies how they change with time. While Cesium has a rich client-side API, CZML allows it to be data-driven so that a generic Cesium viewer can display a rich scene without the need for any custom code.
You can install czml3 using pip::
$ pip install czml3
or conda::
$ conda install czml3 --channel conda-forge
czml3 requires Python >= 3.10.
A CZML document is a list of packets, which have several properties. When using czml3 in an interactive interpreter, all objects show as nice CZML (JSON)::
from czml3 import Packet print(Packet()) { "id": "adae4d3a-7087-4fda-a70b-d18a262a890e" } packet0 = Packet(id="Facility/AGI", name="AGI") print(packet0) { "id": "Facility/AGI", "name": "AGI" } packet0.dumps() '{"id":"Facility/AGI","name":"AGI"}'
And there are more complex examples available::
from czml3.examples import simple print(simple) [ { "id": "document", "version": "1.0", "name": "simple", "clock": { "interval": "2012-03-15T10:00:00Z/2012-03-16T10:00:00Z", "currentTime": "2012-03-15T10:00:00Z", "multiplier": 60 } }, ...
You can easily display your CZML document using our interactive widget::
In [1]: from czml3.examples import simple
In [2]: from czml3.widget import CZMLWidget
In [3]: CZMLWidget(simple)
And this would be the result:
.. image:: https://raw.githubusercontent.com/poliastro/czml3/master/widget-screenshot.png
|matrix|
If you find any issue on czml3 or have questions,
please open an issue on our repository <https://github.com/poliastro/czml3/issues/new>
_
and join our chat
_!
.. _our chat
: https://openastronomy.riot.im/#/room/#poliastro-czml:matrix.org
You want to contribute? Awesome! There are lots of
CZML properties <https://github.com/AnalyticalGraphicsInc/czml-writer/wiki/Packet>
_
that we still did not implement. Also, it would be great to have
better validation, a Cesium widget in Jupyter notebook and JupyterLab...
Ideas welcome!
We recommend this GitHub workflow <https://www.asmeurer.com/git-workflow/>
_
to fork the repository. To run the tests,
use tox <https://tox.readthedocs.io/>
_::
$ tox
Before you send us a pull request, remember to reformat all the code::
$ tox -e reformat
This will apply ruff and lots of love ❤️
|license|
czml3 is released under the MIT license, hence allowing commercial
use of the library. Please refer to the :code:LICENSE
file.
FAQs
Python 3 library to write CZML
We found that czml3 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.