Skip to main content

A data mocking library for CCNU ACM

Project description

CCNUACM DataMocker

Description

This project is a data mocker for CCNUACM. It is written in Python. Source code is available on our Github repo:CCNUACM_DataMocker.

Installation

To install the necessary dependencies, run the following command:

pip3 install ccnuacm-datamocker -U

Usage

Following is a basic example of how to use the data mocker. More examples are avaliable here.

import ccnuacm_datamocker as dm
from ccnuacm_datamocker.data_model import *
import os

dm.set_seed(0)
dm.set_work_dir(".")
dm.set_compiler("D:/mingw/bin/g++.exe")

os.makedirs("./std", exist_ok=True)

open("./std/APlusB.cpp", "w").write(
    """
#include <iostream>

int32_t main() {
  int64_t T;
  std::cin >> T;
  while (T--) {
    int64_t a, b;
    std::cin >> a >> b;
    std::cout << a + b << '\\n';
  }
  return 0;
}
"""
)

ds = DataSet(name="APlusB", std_path="./std/APlusB.cpp")

ds.add(
    RandomInt(low=1, high=100)
    .repeat(times=2, sep=" ")
    .repeat(times=10, sep="\n", show_times=True, h_sep="\n"),
    reputation=2,
)

ds.show()

ds.run()

Contributing

Contributions are welcome. Please submit a pull request or create an issue to discuss the changes you want to make.

License

This project is licensed under the MIT License.

Contact

If you have any questions, please feel free to post an issue.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ccnuacm_datamocker-0.0.6.tar.gz (2.9 kB view details)

Uploaded Source

Built Distribution

ccnuacm_datamocker-0.0.6-py3-none-any.whl (3.3 kB view details)

Uploaded Python 3

File details

Details for the file ccnuacm_datamocker-0.0.6.tar.gz.

File metadata

  • Download URL: ccnuacm_datamocker-0.0.6.tar.gz
  • Upload date:
  • Size: 2.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for ccnuacm_datamocker-0.0.6.tar.gz
Algorithm Hash digest
SHA256 534bc46ec456b46aec4a32f979b4ca1245ba9d7f7bb6c1d8d54798c88b5208fc
MD5 b48ba60a515d9a107cbc565527f30a1b
BLAKE2b-256 a2274fe6958a7986038f96e88dc9b1098e5aed2cd3ec5d4a375dfc6efcc572b3

See more details on using hashes here.

File details

Details for the file ccnuacm_datamocker-0.0.6-py3-none-any.whl.

File metadata

File hashes

Hashes for ccnuacm_datamocker-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 8929feeb8301cc0ef621ebadefc5ab7e8b57f52b058a6e90fba8714243073395
MD5 b0ce5bd953e4bb40709aeb50b1e1b4be
BLAKE2b-256 bbd491f469be8eacf706f11349ea959e4519ffc1561e57e72a1e3eb504ed4d02

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page