All Projects → yasufumy → arrayfiles

yasufumy / arrayfiles

Licence: MIT license
Array-like File Access in Python

Programming Languages

python
139335 projects - #7 most used programming language
Makefile
30231 projects

Labels

Projects that are alternatives of or similar to arrayfiles

Replace In File
A simple utility to quickly replace contents in one or more files
Stars: ✭ 369 (+800%)
Mutual labels:  text, file
replace-in-files
Replace text in one or more files or globs.
Stars: ✭ 21 (-48.78%)
Mutual labels:  text, file
Turbo Editor
Simple and powerful File Editor for Android. All is licensed under the GPLv3 license.
Stars: ✭ 1,139 (+2678.05%)
Mutual labels:  text, file
ShareX-CDN
Basic image, text & file uploader CDN for ShareX
Stars: ✭ 22 (-46.34%)
Mutual labels:  text, file
Datash
Send and Receive files directly from your browser with end-to-end encryption
Stars: ✭ 178 (+334.15%)
Mutual labels:  text, file
cache
🥌 Deno cache library
Stars: ✭ 38 (-7.32%)
Mutual labels:  file
STTextView
📝 STTextView is a light-weight library that adds a placeholder to the UITextView.
Stars: ✭ 36 (-12.2%)
Mutual labels:  text
react-file-input-previews-base64
This package provides an easy to use, ready to go and customizable wrapper around file input, with option for image previews and returning file as base64 string.
Stars: ✭ 15 (-63.41%)
Mutual labels:  file
gh fsync
🔄 GitHub action to sync files across repos in GitHub
Stars: ✭ 17 (-58.54%)
Mutual labels:  file
strokeText.js
Simple, pixel-perfect text stroking for the web.
Stars: ✭ 30 (-26.83%)
Mutual labels:  text
cs paint
Vulkan rendering library for graphics and text
Stars: ✭ 79 (+92.68%)
Mutual labels:  text
opentab
开源的轻应用后端(Open Tiny App Backend),轻量,高效,易部署。
Stars: ✭ 27 (-34.15%)
Mutual labels:  file
content inspector
Fast inspection of binary buffers to guess/determine the type of content
Stars: ✭ 28 (-31.71%)
Mutual labels:  text
semicon
A collection of icons for the Semantic Web and Linked Open Data world.
Stars: ✭ 20 (-51.22%)
Mutual labels:  file
lfimg
Image preview support for lf (list files) using Überzug
Stars: ✭ 174 (+324.39%)
Mutual labels:  file
flysystem-sync
Filesystem sync using Flysystem project.
Stars: ✭ 26 (-36.59%)
Mutual labels:  file
ansiart2utf8
Processes legacy BBS-style ANSI art (ACiDDraw, PabloDraw, etc.) to UTF-8. Escape codes and line endings are processed for terminal friendliness.
Stars: ✭ 32 (-21.95%)
Mutual labels:  text
ZFileManager
Android 文件操作
Stars: ✭ 124 (+202.44%)
Mutual labels:  file
CheckableTextView
A simple and flexible Checked TextView or Checkable TextView
Stars: ✭ 108 (+163.41%)
Mutual labels:  text
react-edit-text
Simple 'click to edit' editable text component for React
Stars: ✭ 28 (-31.71%)
Mutual labels:  text

ArrayFiles: Array-like File Access in Python

Build Status Build Status Language grade: Python Codacy Badge Codacy Badge codecov

ArrayFiles allows you to access an arbitrary line of a text file.

If your interest is in using arrayfiles for Deep Learning, please check LineFlow.

Installation

To install arrayfiles:

pip install arrayfiles

Usage

import arrayfiles

data = arrayfiles.read_text('/path/to/text')

data[0] # Access the first line of your text
data[-1] # Access the last line of your text
data[10:100] # Access the 10th line to the 100 the line of your text
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].