pais-accomplishments-tool


Namepais-accomplishments-tool JSON
Version 1.2.0 PyPI version JSON
download
home_pagehttps://github.com/CuberHuber/pais-accomplishments-tool
SummaryA small tool for generating and transformation accomplishments from BibTex format files
upload_time2024-04-28 20:28:59
maintainerNone
docs_urlNone
authorRoman Lupashko
requires_python<4.0,>=3.11
licenseCC-BY-NC-SA-4.0
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PAIS Accomplishments

## About
A small tool for generating and transformation accomplishments from BibTex format files.

## Homepage
PYPI: https://pypi.org/project/pais-accomplishments-tool/

## Quick start

### Table of Contents
- [Install](#install)
- [Simple usage](#simple-usage)
- [Accomplishments format](#accomplishments-format)
- [Config format](#config-file)

### Install

For install package run it.
```shell
pip install pais-accomplishments-tool
```

### Upgrade
For upgrade tools to latest version run it
```shell
pip install pais-accomplishments-tool --upgrade
```

### Add to PATH

#### On Mac + zsh
```shell
nano ~/.zshrc
```
And the following line to the `.zshrc` with the actual path of the [package_name] script
```shell
export PATH="/path/to/package:$PATH"
```
For Python 3.11.5 on MacOS 14
```shell
export PATH="/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pais-accomplishments-tool/paisAccTool.py:$PATH"
```

#### On Mac and Linux + bash
```shell
nano ~/.bash_profile
```
And the following line to the `.bash_profile` with the actual path of the [package_name] script
```shell
export PATH="/path/to/package:$PATH"
```
For Python 3.11.5 on MacOS 14
```shell
export PATH="/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pais-accomplishments-tool/paisAccTool.py:$PATH"
```

### Simple usage
#### Help
For watch help message run [paisAccTool.py](pais-accomplishments-tool/paisAccTool.py):
```shell
python3 paisAccTool.py -h
```

#### Sample
For watch to work run [paisAccTool.py](pais-accomplishments-tool/paisAccTool.py) for [sample accomplishments file](accomplishments_sample.bib) it
```shell
python3 paisAccTool.py accomplishments_sample.bib -c -en
```
Terminal output: 
```shell
Hello everyone!
This is the micro tools for contain and formating accomplishments from BibTex source
 [ ]  misc accomplishment: rand1        done
 [ ]  misc accomplishment: rand2        done
 [ ]  misc accomplishment: rand3        done
 [ ]  misc accomplishment: rand4        done
 [ ]  conf accomplishment: conf1        done
1. Наставник образовательной программы Звездный путь.Зима, разработка системы автоматизированного тестирования : Московского государственного университета : 15.02.2023
2. Наставник образовательной программы Тёмная материя.Весна, Разработка системы машинного обучения : Санкт-петербургского государственного университета : 2023-04-10 00:00:00
3. Победитель образовательной программы Космос.Лето, Разработка системы компьютерного зрения : Новосибирского государственного университета : 2023-06-20 00:00:00
4. Участник олимпиады искусственный интеллект.Осень, Разработка системы естественного языка : Томского государственного университета : 2023-09-15 00:00:00
5. Публикация "Система NLP для марсианского языка" : Екатерина Кузнецова : Студенческая конференция Масла и Камня, Банка Китая : 11.04.2023
```
#### Common usage format
```shell
python3 paisAccTool.py <source .bib file> [-d <destination>, -t "template string", -m "field" "for" "transformation", -c, -en]
```

- `--config` path to config file.
- `-c` mean that each new entry will start with a capital letter;
- `-en` mean that the list of accomplishments will be output with numbering.

```shell
usage: paisAccTool.py [-h] [-d DESTINATION] [--config CONFIG] [-c] [-en] source

The micro tools for contain and formating accomplishments from BibTex source

positional arguments:
  source                Path to source .bib file

options:
  -h, --help            show this help message and exit
  -d DESTINATION, --destination DESTINATION
                        Path to destination .bib file
  --config CONFIG       Path to config.yml file
  -c, --capitalize      Flag
  -en, --enumerate      Flag


```

#### Other usage sample
Command to output the list of accomplishments to a file
```shell
python3 paisAccTool.py accomplishments_sample.bib -c -en -d output.txt
```

Command with its own custom config. You can make a config file along the [sample](#config-file).
```shell
python3 paisAccTool.py accomplishments_sample.bib --config /path/to/config.yml
```

### Accomplishments format

Each accomplishment is stored in a .bib file in bibtex format.

**Below are the fields that are used to store misc achievements.**
```bibtex
@misc{identifier,
	prefix = {Твоя роль на мероприятии},
	title = {Название мероприятия},
	type = {Тип мероприятия},
	author = {ФИО},
	organization = {Организация, которая проводит мероприятие},
	section = {Секция на конференции или номинация на олимпиаде, и тп.},
	location = {Место проведения},
	url = {url подтверждения достижения},
	start = {дата начала},
	end = {дата окончания},
	year = {год},
	month = {месяц},
	certificate = {результат, документ подтверждающий результат или участие (диплом, ...)},
	order = {место в конкурсе или статус на мероприятии}
}
```
**Below are the fields that are used to store conf achievements.**
```bibtex
@conf{conf1,
	prefix = {публикация},
	title = {Студенческая конференция Масла и Камня},
	type = {конференция},
	author = {Екатерина Кузнецова},
	organization = {Банк Китая},
	topic = {Система NLP для марсианского языка},
	section = {},
	location = {Зотеро},
	url = {some url},
	start = {11.04.2023},
	end = {15.04.2023},
	year = {2023},
	month = {4},
	certificate = {сборник},
	order = {}
}
```
If you do not have a field to enter your specific information, you can add such a field:
```bibtex
    <key> = {value}
```
The Accomplishments.bib file can be stored locally on your pc or in a remote git repository, so every commit means a new achievement (very convenient).

### Config file
The Config file represent as a yaml file.
Its format:
```yaml
kinds:
  <entry_type>:
    template: 'template string'
    morphs:
      - <field 1>
      - <field 2>
```
For example, you can look on the default config:
```yaml
kinds:
  misc:
    template: '{prefix} {type} {title}, {section} : {organization} : {start}'
    morphs:
      - type
      - organization
  conf:
    template: '{prefix} "{topic}" : {author} : {title}, {organization} : {start}'
    morphs:
      - organization
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/CuberHuber/pais-accomplishments-tool",
    "name": "pais-accomplishments-tool",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.11",
    "maintainer_email": null,
    "keywords": null,
    "author": "Roman Lupashko",
    "author_email": "mossy0.civets@icloud.com",
    "download_url": "https://files.pythonhosted.org/packages/35/5e/e0eb19f61d0f1855023e509607fd28b0fa8ac675aae5a53c88bdb5ecf325/pais_accomplishments_tool-1.2.0.tar.gz",
    "platform": null,
    "description": "# PAIS Accomplishments\n\n## About\nA small tool for generating and transformation accomplishments from BibTex format files.\n\n## Homepage\nPYPI: https://pypi.org/project/pais-accomplishments-tool/\n\n## Quick start\n\n### Table of Contents\n- [Install](#install)\n- [Simple usage](#simple-usage)\n- [Accomplishments format](#accomplishments-format)\n- [Config format](#config-file)\n\n### Install\n\nFor install package run it.\n```shell\npip install pais-accomplishments-tool\n```\n\n### Upgrade\nFor upgrade tools to latest version run it\n```shell\npip install pais-accomplishments-tool --upgrade\n```\n\n### Add to PATH\n\n#### On Mac + zsh\n```shell\nnano ~/.zshrc\n```\nAnd the following line to the `.zshrc` with the actual path of the [package_name] script\n```shell\nexport PATH=\"/path/to/package:$PATH\"\n```\nFor Python 3.11.5 on MacOS 14\n```shell\nexport PATH=\"/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pais-accomplishments-tool/paisAccTool.py:$PATH\"\n```\n\n#### On Mac and Linux + bash\n```shell\nnano ~/.bash_profile\n```\nAnd the following line to the `.bash_profile` with the actual path of the [package_name] script\n```shell\nexport PATH=\"/path/to/package:$PATH\"\n```\nFor Python 3.11.5 on MacOS 14\n```shell\nexport PATH=\"/Library/Frameworks/Python.framework/Versions/3.11/lib/python3.11/site-packages/pais-accomplishments-tool/paisAccTool.py:$PATH\"\n```\n\n### Simple usage\n#### Help\nFor watch help message run [paisAccTool.py](pais-accomplishments-tool/paisAccTool.py):\n```shell\npython3 paisAccTool.py -h\n```\n\n#### Sample\nFor watch to work run [paisAccTool.py](pais-accomplishments-tool/paisAccTool.py) for [sample accomplishments file](accomplishments_sample.bib) it\n```shell\npython3 paisAccTool.py accomplishments_sample.bib -c -en\n```\nTerminal output: \n```shell\nHello everyone!\nThis is the micro tools for contain and formating accomplishments from BibTex source\n [ ]  misc accomplishment: rand1        done\n [ ]  misc accomplishment: rand2        done\n [ ]  misc accomplishment: rand3        done\n [ ]  misc accomplishment: rand4        done\n [ ]  conf accomplishment: conf1        done\n1. \u041d\u0430\u0441\u0442\u0430\u0432\u043d\u0438\u043a \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0417\u0432\u0435\u0437\u0434\u043d\u044b\u0439 \u043f\u0443\u0442\u044c.\u0417\u0438\u043c\u0430, \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f : \u041c\u043e\u0441\u043a\u043e\u0432\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 : 15.02.2023\n2. \u041d\u0430\u0441\u0442\u0430\u0432\u043d\u0438\u043a \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u0422\u0451\u043c\u043d\u0430\u044f \u043c\u0430\u0442\u0435\u0440\u0438\u044f.\u0412\u0435\u0441\u043d\u0430, \u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043c\u0430\u0448\u0438\u043d\u043d\u043e\u0433\u043e \u043e\u0431\u0443\u0447\u0435\u043d\u0438\u044f : \u0421\u0430\u043d\u043a\u0442-\u043f\u0435\u0442\u0435\u0440\u0431\u0443\u0440\u0433\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 : 2023-04-10 00:00:00\n3. \u041f\u043e\u0431\u0435\u0434\u0438\u0442\u0435\u043b\u044c \u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b \u041a\u043e\u0441\u043c\u043e\u0441.\u041b\u0435\u0442\u043e, \u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u043d\u043e\u0433\u043e \u0437\u0440\u0435\u043d\u0438\u044f : \u041d\u043e\u0432\u043e\u0441\u0438\u0431\u0438\u0440\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 : 2023-06-20 00:00:00\n4. \u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a \u043e\u043b\u0438\u043c\u043f\u0438\u0430\u0434\u044b \u0438\u0441\u043a\u0443\u0441\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442.\u041e\u0441\u0435\u043d\u044c, \u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u044b \u0435\u0441\u0442\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u044f\u0437\u044b\u043a\u0430 : \u0422\u043e\u043c\u0441\u043a\u043e\u0433\u043e \u0433\u043e\u0441\u0443\u0434\u0430\u0440\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0443\u043d\u0438\u0432\u0435\u0440\u0441\u0438\u0442\u0435\u0442\u0430 : 2023-09-15 00:00:00\n5. \u041f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u044f \"\u0421\u0438\u0441\u0442\u0435\u043c\u0430 NLP \u0434\u043b\u044f \u043c\u0430\u0440\u0441\u0438\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u044f\u0437\u044b\u043a\u0430\" : \u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0430 \u041a\u0443\u0437\u043d\u0435\u0446\u043e\u0432\u0430 : \u0421\u0442\u0443\u0434\u0435\u043d\u0447\u0435\u0441\u043a\u0430\u044f \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u044f \u041c\u0430\u0441\u043b\u0430 \u0438 \u041a\u0430\u043c\u043d\u044f, \u0411\u0430\u043d\u043a\u0430 \u041a\u0438\u0442\u0430\u044f : 11.04.2023\n```\n#### Common usage format\n```shell\npython3 paisAccTool.py <source .bib file> [-d <destination>, -t \"template string\", -m \"field\" \"for\" \"transformation\", -c, -en]\n```\n\n- `--config` path to config file.\n- `-c` mean that each new entry will start with a capital letter;\n- `-en` mean that the list of accomplishments will be output with numbering.\n\n```shell\nusage: paisAccTool.py [-h] [-d DESTINATION] [--config CONFIG] [-c] [-en] source\n\nThe micro tools for contain and formating accomplishments from BibTex source\n\npositional arguments:\n  source                Path to source .bib file\n\noptions:\n  -h, --help            show this help message and exit\n  -d DESTINATION, --destination DESTINATION\n                        Path to destination .bib file\n  --config CONFIG       Path to config.yml file\n  -c, --capitalize      Flag\n  -en, --enumerate      Flag\n\n\n```\n\n#### Other usage sample\nCommand to output the list of accomplishments to a file\n```shell\npython3 paisAccTool.py accomplishments_sample.bib -c -en -d output.txt\n```\n\nCommand with its own custom config. You can make a config file along the [sample](#config-file).\n```shell\npython3 paisAccTool.py accomplishments_sample.bib --config /path/to/config.yml\n```\n\n### Accomplishments format\n\nEach accomplishment is stored in a .bib file in bibtex format.\n\n**Below are the fields that are used to store misc achievements.**\n```bibtex\n@misc{identifier,\n\tprefix = {\u0422\u0432\u043e\u044f \u0440\u043e\u043b\u044c \u043d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438},\n\ttitle = {\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u044f},\n\ttype = {\u0422\u0438\u043f \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u044f},\n\tauthor = {\u0424\u0418\u041e},\n\torganization = {\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u043f\u0440\u043e\u0432\u043e\u0434\u0438\u0442 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0435},\n\tsection = {\u0421\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u0438 \u0438\u043b\u0438 \u043d\u043e\u043c\u0438\u043d\u0430\u0446\u0438\u044f \u043d\u0430 \u043e\u043b\u0438\u043c\u043f\u0438\u0430\u0434\u0435, \u0438 \u0442\u043f.},\n\tlocation = {\u041c\u0435\u0441\u0442\u043e \u043f\u0440\u043e\u0432\u0435\u0434\u0435\u043d\u0438\u044f},\n\turl = {url \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0438\u0436\u0435\u043d\u0438\u044f},\n\tstart = {\u0434\u0430\u0442\u0430 \u043d\u0430\u0447\u0430\u043b\u0430},\n\tend = {\u0434\u0430\u0442\u0430 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f},\n\tyear = {\u0433\u043e\u0434},\n\tmonth = {\u043c\u0435\u0441\u044f\u0446},\n\tcertificate = {\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442, \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0430\u044e\u0449\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u0438\u043b\u0438 \u0443\u0447\u0430\u0441\u0442\u0438\u0435 (\u0434\u0438\u043f\u043b\u043e\u043c, ...)},\n\torder = {\u043c\u0435\u0441\u0442\u043e \u0432 \u043a\u043e\u043d\u043a\u0443\u0440\u0441\u0435 \u0438\u043b\u0438 \u0441\u0442\u0430\u0442\u0443\u0441 \u043d\u0430 \u043c\u0435\u0440\u043e\u043f\u0440\u0438\u044f\u0442\u0438\u0438}\n}\n```\n**Below are the fields that are used to store conf achievements.**\n```bibtex\n@conf{conf1,\n\tprefix = {\u043f\u0443\u0431\u043b\u0438\u043a\u0430\u0446\u0438\u044f},\n\ttitle = {\u0421\u0442\u0443\u0434\u0435\u043d\u0447\u0435\u0441\u043a\u0430\u044f \u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u044f \u041c\u0430\u0441\u043b\u0430 \u0438 \u041a\u0430\u043c\u043d\u044f},\n\ttype = {\u043a\u043e\u043d\u0444\u0435\u0440\u0435\u043d\u0446\u0438\u044f},\n\tauthor = {\u0415\u043a\u0430\u0442\u0435\u0440\u0438\u043d\u0430 \u041a\u0443\u0437\u043d\u0435\u0446\u043e\u0432\u0430},\n\torganization = {\u0411\u0430\u043d\u043a \u041a\u0438\u0442\u0430\u044f},\n\ttopic = {\u0421\u0438\u0441\u0442\u0435\u043c\u0430 NLP \u0434\u043b\u044f \u043c\u0430\u0440\u0441\u0438\u0430\u043d\u0441\u043a\u043e\u0433\u043e \u044f\u0437\u044b\u043a\u0430},\n\tsection = {},\n\tlocation = {\u0417\u043e\u0442\u0435\u0440\u043e},\n\turl = {some url},\n\tstart = {11.04.2023},\n\tend = {15.04.2023},\n\tyear = {2023},\n\tmonth = {4},\n\tcertificate = {\u0441\u0431\u043e\u0440\u043d\u0438\u043a},\n\torder = {}\n}\n```\nIf you do not have a field to enter your specific information, you can add such a field:\n```bibtex\n    <key> = {value}\n```\nThe Accomplishments.bib file can be stored locally on your pc or in a remote git repository, so every commit means a new achievement (very convenient).\n\n### Config file\nThe Config file represent as a yaml file.\nIts format:\n```yaml\nkinds:\n  <entry_type>:\n    template: 'template string'\n    morphs:\n      - <field 1>\n      - <field 2>\n```\nFor example, you can look on the default config:\n```yaml\nkinds:\n  misc:\n    template: '{prefix} {type} {title}, {section} : {organization} : {start}'\n    morphs:\n      - type\n      - organization\n  conf:\n    template: '{prefix} \"{topic}\" : {author} : {title}, {organization} : {start}'\n    morphs:\n      - organization\n```\n",
    "bugtrack_url": null,
    "license": "CC-BY-NC-SA-4.0",
    "summary": "A small tool for generating and transformation accomplishments from BibTex format files",
    "version": "1.2.0",
    "project_urls": {
        "Homepage": "https://github.com/CuberHuber/pais-accomplishments-tool",
        "Repository": "https://github.com/CuberHuber/pais-accomplishments-tool"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2101125ac4bd1157da28c165cfc5364d4595edf2199a6fd0e3adb9476c407eae",
                "md5": "88f49ef52904059846b6df6baefef3ec",
                "sha256": "ac04a0397346d1e1de7b6ced14466dcbe86da0cca2565a81f7ae91b2d2c3e35e"
            },
            "downloads": -1,
            "filename": "pais_accomplishments_tool-1.2.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "88f49ef52904059846b6df6baefef3ec",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.11",
            "size": 12858,
            "upload_time": "2024-04-28T20:28:58",
            "upload_time_iso_8601": "2024-04-28T20:28:58.175381Z",
            "url": "https://files.pythonhosted.org/packages/21/01/125ac4bd1157da28c165cfc5364d4595edf2199a6fd0e3adb9476c407eae/pais_accomplishments_tool-1.2.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "355ee0eb19f61d0f1855023e509607fd28b0fa8ac675aae5a53c88bdb5ecf325",
                "md5": "a76c97faf08ce1bdd5ae8c988eed2857",
                "sha256": "f9d0c2215c2be2f9187b8d0a2f6bb793b131682774ebba998e7aee2644d57262"
            },
            "downloads": -1,
            "filename": "pais_accomplishments_tool-1.2.0.tar.gz",
            "has_sig": false,
            "md5_digest": "a76c97faf08ce1bdd5ae8c988eed2857",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.11",
            "size": 11819,
            "upload_time": "2024-04-28T20:28:59",
            "upload_time_iso_8601": "2024-04-28T20:28:59.338302Z",
            "url": "https://files.pythonhosted.org/packages/35/5e/e0eb19f61d0f1855023e509607fd28b0fa8ac675aae5a53c88bdb5ecf325/pais_accomplishments_tool-1.2.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-28 20:28:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "CuberHuber",
    "github_project": "pais-accomplishments-tool",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pais-accomplishments-tool"
}
        
Elapsed time: 0.37485s