Skip to main content

sample_annn_pkg description

Project description

  • author: laplaciannin102


Table of Contents


How to install

pip install sample_annn_pkg

Github repository

PyPI repository

TestPyPI

PyPI


Directory structure

sample_annn_pkg
├── .gitignore
├── LICENSE
├── MANIFEST.in
├── README.md
├── README.rst
├── sample_annn_pkg
│   ├── __init__.py
│   ├── sample_main_module.py
│   ├── sample_sub_module.py
│   └── datasets
│       ├── __init__.py
│       ├── load_datasets.py
│       └── sample_data
│           ├── sample_data.csv
│           └── sample_data.xlsx
├── tests
│   ├── __init__.py
│   └── test_main_moduleXXX.py
├── requirements.txt
└── setup.py

Easy installation sample

  • command

>> git clone https://github.com/laplaciannin102/sample_annn_pkg.git
>> cd sample_annn_pkg
>> python setup.py sdist upload -r testpypi
>> pip install --index-url https://test.pypi.org/simple/ sample_annn_pkg
  • python

>>> import sample_annn_pkg as sap
>>> sap.func02()
# success!!
# poyo
>>> df0 = sap.datasets.load_sample_data0() # load csv
# load sample data0
# file format: csv
# sample pandas.DataFrame:
#    col1  col2  col3
# 0     1     2     3
# 1     4     5     6
# 2     7     8     9
>>> df1 = sap.datasets.load_sample_data1() # load excel
# load sample data1
# file format: excel
# sample pandas.DataFrame:
#    col4  col5  col6
# 0  hoge    10    11
# 1  fuga    12    13
# 2  poyo    14    15
# 3  piyo    16    17

How to upload pypi package

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

sample_annn_pkg-0.0.28.tar.gz (64.6 kB view hashes)

Uploaded Source

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