This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Count file name appearances""" | |
import os | |
from collections import defaultdict | |
from glob import glob | |
# Path to the Desktop | |
desktop_path = os.path.expanduser("~/Desktop") | |
# Filenames | |
filenames = glob(os.path.join(desktop_path, "*.txt")) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+(/usr/local/bin/pyenv:23): enable -f /usr/local/bin/../libexec/pyenv-realpath.dylib realpath | |
+(/usr/local/bin/pyenv:30): '[' -z '' ']' | |
++(/usr/local/bin/pyenv:32): type -P greadlink readlink | |
++(/usr/local/bin/pyenv:32): head -1 | |
+(/usr/local/bin/pyenv:32): READLINK=/usr/local/bin/greadlink | |
+(/usr/local/bin/pyenv:33): '[' -n /usr/local/bin/greadlink ']' | |
+(/usr/local/bin/pyenv:58): '[' -z '' ']' | |
+(/usr/local/bin/pyenv:59): PYENV_ROOT=/Users/joeflack4/.pyenv | |
+(/usr/local/bin/pyenv:63): export PYENV_ROOT | |
+(/usr/local/bin/pyenv:65): '[' -z '' ']' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "oaklib" | |
version = "0.0.0" | |
description = "Ontology Access Kit: Python library for common ontology operations over a variety of backends" | |
authors = ["cmungall <[email protected]>"] | |
readme = "README.md" | |
[tool.poetry.dependencies] | |
python = ">=3.9,<4.0.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import auth0 from 'auth0-js'; | |
import Auth0Cordova from '@auth0/cordova'; | |
import React, { Component } from 'react'; | |
import {Tabbar, Tab} from 'react-onsenui'; | |
import DataEntryPage from './pages/DataEntryPage'; | |
import HomePage from './pages/HomePage'; | |
import PersonalPage from './pages/PersonalPage'; | |
export default class App extends Component { |