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.
a Python-based computational chemistry toolkit
cctk simplifies the computational modeling of organic reactions and small molecule structures by automating routine interactions with quantum chemistry software packages:
A quick-start guide is available. More documentation is here.
cctk is primarily designed for use with Gaussian 16. Some support is provided for other file formats (.xyz
, .mol2
, .pdb
, Schrodinger mae
, and Orca .inp
/.out
).
cctk is easy to install! It should work on any system where Python works.
With Python 3.6 or later, type:
pip install cctk
or
conda install -c conda-forge cctk
If you don't have pip or virtual environments available on your system, then we recommend installing Anaconda first:
Go to https://www.anaconda.com/distribution/. Download the Python 3 installer appropriate to your system and run it.
Create a virtual environment to use with cctk (with whatever version of Python you prefer):
conda create --name cctk python=3.8
conda activate cctk
To use cctk, you will need to place this command at the beginning of your Python scripts:
import cctk
The documentation contains many examples of how to write cctk scripts.
cctk is undergoing active development. To upgrade to the latest stable release:
pip install --upgrade cctk
To install the development version, which may be unstable, run:
$ pip install --upgrade git+git@github.com:ekwan/cctk.git@master
Alternatively, clone the repository. Then, from within the repository folder, run:
pip install --upgrade .
If you want to read the cctk documentation locally, you can build it by going to the docs
folder and typing:
make html
This command will require the sphinx
and sphinx-bootstrap-theme
packages to be installed first. Once generated, the documentation will be available locally at: docs/_build/html/index.html
.
cctk/
contains the Python modules for cctk and the accompanying static data files.docs/
contains the code needed to generate the documentation.scripts/
contains pre-defined scripts that use cctk to quickly analyze and manipulate one or many output files.test/
contains code to test cctk and accompanying files.tutorial/
contains detailed tutorials on how to use cctk on complex, real-world problems.cctk requires Python 3.7+, numpy
, and networkx
.
A full list of requirements can be found in env.yml
.
cctk depends on some external data (cctk/data/
):
cctk/data/isotopes.csv
.cctk/data/covalent_radii.csv
.
(When multiple atomic types were specified, the one with longer bond distances was adopted for simplicity).cctk/data/vdw_radii.csv
.cctk is an ongoing project led by Corin Wagen and Eugene Kwan.
There is a Slack workspace for cctk users and developers: please email cwagen@g.harvard.edu
or ekwan16@gmail.com
for access.
Wagen, C.C.; Kwan, E.E. cctk 2020, www.github.com/ekwan/cctk.
This project is licensed under the Apache License, Version 2.0. Please see LICENSE
for full terms and conditions.
Copyright 2020 by Corin Wagen and Eugene Kwan
FAQs
computational chemistry toolkit
We found that cctk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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.